:root {
    --color-primary: #E87B3E;
    --color-primary-dark: #D16931;
    --color-dark: #1F2937;
    --color-darker: #111827;
    --color-light: #F9FAFB;
    --color-gray: #6B7280;
    --color-gray-light: #E5E7EB;

    --font-display: 'Oswald', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.logo img {
    height: 30px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-link {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-dark);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--color-primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(232, 123, 62, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(31, 41, 55, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: heroFadeIn 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-darker);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.title-line {
    display: block;
    animation: titleSlide 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: heroFadeIn 1s ease-out 0.6s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeIn 1s ease-out 0.8s backwards;
}

.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(232, 123, 62, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 123, 62, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: white;
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.hero-scroll span {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gray);
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
}

/* Section Styling */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(232, 123, 62, 0.1);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-darker);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Services Section */
/* ====================================================================================
   SERVICES SECTION - STADIUM LINEUP
   ==================================================================================== */

.stadium-lineup {
    position: relative;
    padding: 8rem 0;
    background: #0a1612;
    overflow: hidden;
}

/* Stadium Atmosphere */
.stadium-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.stadium-lights {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 400px at 50% -100px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(ellipse 600px 300px at 20% 50%, rgba(232, 123, 62, 0.08), transparent),
        radial-gradient(ellipse 600px 300px at 80% 50%, rgba(232, 123, 62, 0.08), transparent);
}

.crowd-blur {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(10, 22, 18, 0.8), transparent);
    backdrop-filter: blur(20px);
}

/* Field Container */
.field-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 1;
}

/* Lineup Header */
.lineup-header {
    text-align: center;
    margin-bottom: 4rem;
}

.formation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(232, 123, 62, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.formation-badge svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.lineup-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow:
        0 0 40px rgba(232, 123, 62, 0.5),
        0 0 80px rgba(232, 123, 62, 0.3),
        4px 4px 0 rgba(0, 0, 0, 0.3);
}

.lineup-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Field Grass */
.field-grass {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(34, 139, 34, 0.3) 0px,
            rgba(34, 139, 34, 0.3) 60px,
            rgba(46, 125, 50, 0.3) 60px,
            rgba(46, 125, 50, 0.3) 120px
        );
    opacity: 0.3;
    z-index: 0;
}

.field-lines {
    position: relative;
    width: 100%;
    height: 100%;
}

.center-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%);
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Formation Grid */
.formation-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    z-index: 1;
}

.formation-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.front-line {
    margin-bottom: 2rem;
}

.back-line {
    margin-top: 2rem;
}

/* Player Cards */
.player-card {
    position: relative;
    width: 320px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(232, 123, 62, 0.2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: playerEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    overflow: hidden;
}

@keyframes playerEnter {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.player-card[data-number="10"] { animation-delay: 0.1s; }
.player-card[data-number="23"] { animation-delay: 0.25s; }
.player-card[data-number="7"] { animation-delay: 0.4s; }
.player-card[data-number="99"] { animation-delay: 0.55s; }

.player-card:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: var(--color-primary);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(232, 123, 62, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-primary), transparent, var(--color-primary));
    border-radius: 16px;
    opacity: 0;
    filter: blur(20px);
    z-index: -1;
    transition: opacity 0.4s ease;
}

.player-card:hover .card-glow {
    opacity: 0.6;
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.player-card:hover .card-shine {
    left: 100%;
}

/* Jersey Number */
.jersey-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    border: 4px solid #0a1612;
    box-shadow:
        0 8px 24px rgba(232, 123, 62, 0.5),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.player-card:hover .jersey-number {
    transform: rotate(360deg) scale(1.15);
}

/* Position Label */
.position-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(232, 123, 62, 0.2);
    border: 1px solid rgba(232, 123, 62, 0.4);
    border-radius: 6px;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Player Content */
.player-content {
    position: relative;
    z-index: 1;
}

.player-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Stats Bars */
.player-stats {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-bar {
    position: relative;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-fill {
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 10px;
    width: 0;
    box-shadow: 0 0 10px rgba(232, 123, 62, 0.5);
    transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.stat-fill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 10px;
}

.player-card:hover .stat-fill {
    width: var(--stat-value);
}

.player-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Tactics Note */
.tactics-note {
    margin-top: 6rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(232, 123, 62, 0.3);
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.note-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: ballBounce 2s ease-in-out infinite;
}

@keyframes ballBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tactics-note p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.tactics-note strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .stadium-lineup {
        padding: 5rem 0;
    }

    .lineup-title {
        font-size: 2.5rem;
    }

    .formation-grid {
        gap: 3rem;
    }

    .formation-row {
        gap: 2rem;
    }

    .player-card {
        width: 100%;
        max-width: 320px;
    }

    .tactics-note {
        padding: 1.5rem 2rem;
        margin-top: 4rem;
    }

    .tactics-note p {
        font-size: 1rem;
    }
}

/* Products Section */
/* MODERN PRODUCTS SECTION - Diagonal Magazine Style */
.products-modern {
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
}

/* Diagonal Background */
.diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, var(--color-darker) 0%, #1a1a1a 100%);
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: 0;
}

/* Product Hero Section */
.product-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hero-product-img {
    width: 55%;
    height: auto;
    max-width: 450px;
    object-fit: contain;
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(232, 123, 62, 0.15), transparent 70%);
    pointer-events: none;
}

.hero-image-wrapper .hero-gradient {
    display: none;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    padding: 4rem 6rem 4rem 3rem;
    background: linear-gradient(135deg, var(--color-darker) 0%, #1a1a1a 100%);
}

.hero-text {
    max-width: 550px;
}

.product-hero .hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.product-hero .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 0.9;
    color: white;
    margin-bottom: 2rem;
}

.product-hero .hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.product-hero .hero-specs-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-hero .spec-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.product-hero .spec-icon {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: bold;
}

.product-hero .hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(232, 123, 62, 0.4);
}

.product-hero .hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 123, 62, 0.5);
    background: var(--color-primary-dark);
}

.product-hero .hero-cta-button svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.product-hero .hero-cta-button:hover svg {
    transform: translateX(5px);
}

/* Product Carousel Section */
.product-carousel-section {
    padding: 6rem 0;
    background: #F9FAFB;
}

.carousel-header {
    text-align: center;
    margin-bottom: 4rem;
}

.carousel-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-darker);
    margin-bottom: 0.75rem;
}

.carousel-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    font-weight: 500;
}

/* Horizontal Scroll Carousel */
.product-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem 6rem;
    -webkit-overflow-scrolling: touch;
}

.product-carousel::-webkit-scrollbar {
    height: 8px;
}

.product-carousel::-webkit-scrollbar-track {
    background: #E5E7EB;
    border-radius: 10px;
}

.product-carousel::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

/* Carousel Cards */
.carousel-card {
    position: relative;
    flex: 0 0 400px;
    height: 580px;
    scroll-snap-align: start;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, transparent 60%, var(--color-primary) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.carousel-card:hover .card-diagonal {
    opacity: 0.95;
}

.card-image {
    width: 100%;
    height: 65%;
    overflow: visible;
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
}

.card-image img {
    width: 95%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card:hover .card-image img {
    transform: scale(1.1) rotate(3deg);
}

.card-content {
    padding: 1.5rem 2rem 2rem;
    position: relative;
    z-index: 3;
}

.card-category {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-darker);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.carousel-card:hover .card-title {
    color: black;
}

.card-spec {
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.carousel-card:hover .card-spec {
    color: rgba(0, 0, 0, 0.8);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.carousel-card:hover .card-link {
    color: black;
    transform: translateX(10px);
}

/* Diagonal CTA Section */
.diagonal-cta-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.diagonal-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-darker) 0%, #000000 100%);
    transform: skewY(3deg);
    transform-origin: top left;
}

.diagonal-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 2rem;
}

.diagonal-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 0.9;
    color: white;
    margin-bottom: 1.5rem;
}

.diagonal-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 500;
}

.diagonal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 4rem;
    background: white;
    color: var(--color-darker);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.2);
}

.diagonal-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
    background: var(--color-primary);
    color: white;
}

.diagonal-cta-btn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.diagonal-cta-btn:hover svg {
    transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-hero {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        order: 2;
        min-height: 50vh;
    }

    .hero-content-wrapper {
        order: 1;
        padding: 4rem 3rem;
    }

    .product-carousel {
        padding: 2rem 3rem;
    }

    .carousel-card {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .diagonal-bg {
        height: 50%;
        transform: skewY(-5deg);
    }

    .hero-content-wrapper {
        padding: 3rem 2rem;
    }

    .product-hero .hero-title {
        font-size: 3rem;
    }

    .product-hero .hero-specs-inline {
        gap: 1rem;
    }

    .product-carousel {
        padding: 2rem 1.5rem;
    }

    .carousel-card {
        flex: 0 0 300px;
        height: 450px;
    }

    .card-title {
        font-size: 1.75rem;
    }

    .diagonal-cta-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .product-hero .hero-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .carousel-card {
        flex: 0 0 280px;
        height: 420px;
    }

    .card-content {
        padding: 2rem 1.5rem;
    }

    .diagonal-cta-btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
    }
}

/* ============================================
   SCATTERED GALLERY - DESIGNER'S DESK STYLE
   ============================================ */

.scattered-gallery-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 50%, #F9FAFB 100%);
    position: relative;
}

.scattered-gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(232, 123, 62, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

/* Header */
.scattered-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.scattered-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    background: var(--color-primary);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(232, 123, 62, 0.35);
    position: relative;
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.scattered-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-darker);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.scattered-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.scattered-subtitle strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Gallery Container */
.scattered-gallery {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem 2rem;
    position: relative;
    z-index: 1;
}

/* Scattered Product Card */
.scattered-card {
    position: relative;
    transform: rotate(var(--rotate, 0deg));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: scatteredFadeIn 0.8s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes scatteredFadeIn {
    from {
        opacity: 0;
        transform: rotate(var(--rotate, 0deg)) translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(var(--rotate, 0deg)) translateY(0) scale(1);
    }
}

.scattered-card:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.05);
    z-index: 10;
}

/* Card Shadow */
.card-shadow {
    position: absolute;
    inset: 8px;
    background: rgba(0, 0, 0, 0.15);
    filter: blur(16px);
    border-radius: 12px;
    z-index: -1;
    transition: all 0.5s ease;
}

.scattered-card:hover .card-shadow {
    inset: 12px;
    filter: blur(24px);
    background: rgba(232, 123, 62, 0.25);
}

/* Card Inner */
.card-inner {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.scattered-card:hover .card-inner {
    border-color: var(--color-primary);
    box-shadow:
        0 8px 32px rgba(232, 123, 62, 0.2),
        0 0 0 3px rgba(232, 123, 62, 0.1);
}

/* Card Photo */
.card-photo {
    width: 100%;
    aspect-ratio: 5/6;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem 1rem 0;
    position: relative;
    overflow: hidden;
}

.card-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 123, 62, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.scattered-card:hover .card-photo::before {
    opacity: 1;
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scattered-card:hover .card-photo img {
    transform: scale(1.15) rotate(3deg);
}

/* Card Label */
.card-label {
    padding: 1.5rem 1.75rem;
    background: white;
}

.label-category {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.card-label h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-darker);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.card-label p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.5;
}

/* Sticky Note CTA */
.sticky-note {
    position: relative;
    transform: rotate(var(--rotate, 0deg));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: scatteredFadeIn 0.8s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

.sticky-note:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.05);
    z-index: 10;
}

/* Sticky Tape Effect */
.sticky-tape {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
}

/* Sticky Content */
.sticky-content {
    background: linear-gradient(135deg, #FFE57F 0%, #FFD54F 100%);
    border-radius: 8px;
    padding: 4rem 2rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
}

.sticky-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 24px,
        rgba(255, 255, 255, 0.3) 24px,
        rgba(255, 255, 255, 0.3) 25px
    );
    border-radius: 8px;
    pointer-events: none;
}

.sticky-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: #F57C00;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -2px;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

.sticky-icon {
    width: 48px;
    height: 48px;
    color: #F57C00;
    margin: 0 auto 1rem;
}

.sticky-text {
    font-family: 'Indie Flower', cursive, var(--font-body);
    font-size: 1.25rem;
    color: #5D4037;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 500;
}

.sticky-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F57C00;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sticky-link:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.sticky-note-chat .sticky-content {
    background: linear-gradient(135deg, #B2DFDB 0%, #80CBC4 100%);
}

.sticky-note-chat .sticky-icon {
    color: #00695C;
}

.sticky-note-chat .sticky-text {
    color: #004D40;
}

.sticky-note-chat .sticky-link {
    color: #00695C;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .scattered-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .scattered-gallery-section {
        padding: 4rem 0;
    }

    .scattered-header {
        margin-bottom: 3rem;
        padding: 0 1.5rem;
    }

    .scattered-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
        padding: 0 1.5rem;
    }

    .scattered-card,
    .sticky-note {
        transform: rotate(0deg) !important;
    }

    .card-label h4 {
        font-size: 1.25rem;
    }

    .sticky-number {
        font-size: 3rem;
    }

    .sticky-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .scattered-gallery {
        grid-template-columns: 1fr;
    }

    .card-photo {
        padding: 1.5rem;
    }

    .sticky-content {
        padding: 3rem 1.5rem;
        min-height: 280px;
    }
}

.products {
    position: relative;
    background: var(--color-darker);
    color: white;
    padding: 6rem 0 8rem;
}

.products-bg {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 100px);
    pointer-events: none;
}

.products .section-label {
    background: rgba(232, 123, 62, 0.2);
}

.products .section-title {
    color: white;
}

.products .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1rem auto 0;
    text-align: center;
}

/* Product Showcase - Bento Box Grid */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

/* Product Card */
.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: productFadeIn 0.6s ease-out backwards;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }

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

/* Featured and Wide Cards */
.product-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.product-card.wide {
    grid-column: span 2;
}

/* Product Visual */
.product-visual {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.product-card.featured .product-visual,
.product-card.wide .product-visual {
    aspect-ratio: 16/9;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Product Specs */
.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.spec-value {
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

/* Product CTA */
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.product-cta:hover {
    background: var(--color-primary-dark);
    transform: translateX(5px);
}

.product-cta svg {
    width: 16px;
    height: 16px;
}

/* Product Info */
.product-info {
    padding: 1.5rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-personalize {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
}

.tag-premium {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.tag-material,
.tag-sport {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag-eco {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.2;
}

.product-card.featured .product-name {
    font-size: 2rem;
}

.product-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Product Card Hover Effects */
.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 123, 62, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Products Footer CTA */
.products-footer {
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.products-cta-box {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(232, 123, 62, 0.1), rgba(232, 123, 62, 0.05));
    border: 2px solid rgba(232, 123, 62, 0.3);
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.products-cta-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: white;
}

.products-cta-box p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-large svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card.featured,
    .product-card.wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .product-visual {
        aspect-ratio: 4/3;
    }

    .product-card.featured .product-visual,
    .product-card.wide .product-visual {
        aspect-ratio: 4/3;
    }

    .product-overlay {
        padding: 1.5rem;
    }

    .product-info {
        padding: 1rem;
    }

    .product-name {
        font-size: 1.25rem;
    }

    .product-card.featured .product-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-showcase {
        grid-template-columns: 1fr;
    }

    .product-card.featured,
    .product-card.wide {
        grid-column: span 1;
    }

    .products-cta-box {
        padding: 3rem 1.5rem;
    }

    .products-cta-box h3 {
        font-size: 2rem;
    }
}

/* ====================================================================================
   PROCESS SECTION - THE PLAYBOOK
   ==================================================================================== */

.playbook-section {
    position: relative;
    padding: 8rem 0 10rem;
    background: #2d3e2f;
    overflow: hidden;
}

/* Chalkboard Background */
.playbook-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.015) 0%, transparent 40%);
}

.chalk-texture {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.015) 2px, rgba(255, 255, 255, 0.015) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.015) 2px, rgba(255, 255, 255, 0.015) 4px);
    opacity: 0.3;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255, 255, 255, 0.06) 49px, rgba(255, 255, 255, 0.06) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255, 255, 255, 0.06) 49px, rgba(255, 255, 255, 0.06) 50px);
}

/* Header */
.playbook-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
    position: relative;
    z-index: 1;
}

.coach-whistle {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: whistleSwing 3s ease-in-out infinite;
}

@keyframes whistleSwing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.coach-whistle svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.8);
}

.playbook-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    position: relative;
}

.playbook-label::before,
.playbook-label::after {
    content: '//';
    position: absolute;
    color: var(--color-primary);
    font-weight: 700;
}

.playbook-label::before {
    left: -2rem;
}

.playbook-label::after {
    right: -2rem;
}

.playbook-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow:
        3px 3px 0 rgba(0, 0, 0, 0.3),
        0 0 30px rgba(232, 123, 62, 0.3);
}

.playbook-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

/* Playbook Grid */
.playbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Play Cards */
.play-card {
    position: relative;
    background: #fef9ed;
    background-image:
        linear-gradient(rgba(232, 123, 62, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 123, 62, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform-origin: center;
    opacity: 0;
    animation: cardFlipIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardFlipIn {
    from {
        opacity: 0;
        transform: rotateY(-90deg) translateY(40px);
    }
    to {
        opacity: 1;
        transform: rotateY(0) translateY(0);
    }
}

.play-card[data-play="1"] { animation-delay: 0.1s; }
.play-card[data-play="2"] { animation-delay: 0.25s; }
.play-card[data-play="3"] { animation-delay: 0.4s; }
.play-card[data-play="4"] { animation-delay: 0.55s; }
.play-card[data-play="5"] { animation-delay: 0.7s; }

.play-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Tape Effect */
.play-tape {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 80px;
    height: 25px;
    background: rgba(255, 255, 255, 0.4);
    border-left: 2px dashed rgba(0, 0, 0, 0.1);
    border-right: 2px dashed rgba(0, 0, 0, 0.1);
    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Corner Fold */
.play-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent #2d3e2f transparent transparent;
    filter: drop-shadow(-2px 2px 3px rgba(0, 0, 0, 0.3));
}

/* Play Number */
.play-number {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.number-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    box-shadow:
        0 8px 20px rgba(232, 123, 62, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transition: transform 0.4s ease;
}

.play-card:hover .number-circle {
    transform: scale(1.1) rotate(10deg);
}

/* X's and O's Marks */
.play-marks {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.x-mark,
.o-mark {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.7;
}

.x-mark {
    position: relative;
}

.x-mark::before {
    content: '✕';
}

.o-mark {
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0.7;
}

/* Route Diagram */
.play-route {
    margin: 1.5rem 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-svg {
    width: 100%;
    max-width: 120px;
    height: 80px;
    opacity: 0.8;
}

.route-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawRoute 2s ease-out forwards;
}

.play-card:hover .route-path {
    animation: drawRoute 1s ease-out forwards;
}

@keyframes drawRoute {
    to {
        stroke-dashoffset: 0;
    }
}

/* Play Content */
.play-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-darker);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.play-content p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* Victory Card */
.play-victory {
    background: linear-gradient(135deg, #fef9ed 0%, #fff5e1 100%);
    border: 3px solid var(--color-primary);
    position: relative;
    overflow: hidden;
}

.play-victory::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 123, 62, 0.1) 0%, transparent 70%);
    animation: victoryGlow 3s ease-in-out infinite;
}

@keyframes victoryGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.victory-star {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    animation: starRotate 4s linear infinite;
}

@keyframes starRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.number-final {
    background: linear-gradient(135deg, #10B981, #059669);
}

.trophy-icon {
    width: 50px;
    height: 50px;
    color: var(--color-primary);
}

.victory-badge {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(232, 123, 62, 0.4);
    animation: victoryPulse 2s ease-in-out infinite;
}

@keyframes victoryPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Coach's Note CTA */
.coach-note {
    max-width: 700px;
    margin: 6rem auto 0;
    padding: 0 2rem;
    position: relative;
}

.note-pin {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #dc2626 40%, #991b1b 100%);
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow:
        0 4px 12px rgba(220, 38, 38, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.note-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #7f1d1d, #450a0a);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.note-content {
    background: #fef9ed;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(232, 123, 62, 0.1) 31px, rgba(232, 123, 62, 0.1) 32px);
    border-radius: 12px;
    padding: 4rem 3rem 3rem;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    text-align: center;
    position: relative;
    transform: rotate(-1deg);
    transition: transform 0.4s ease;
}

.note-content:hover {
    transform: rotate(0deg) translateY(-8px);
}

.note-content::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: var(--color-primary);
    opacity: 0.3;
}

.note-content h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-darker);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.note-content p {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.coach-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(232, 123, 62, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.coach-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(232, 123, 62, 0.6);
}

.coach-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.coach-button:hover svg {
    transform: translateX(6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .playbook-section {
        padding: 5rem 0 7rem;
    }

    .playbook-header {
        margin-bottom: 4rem;
    }

    .playbook-title {
        font-size: 2.5rem;
    }

    .playbook-label::before,
    .playbook-label::after {
        display: none;
    }

    .playbook-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .play-card {
        padding: 2rem;
    }

    .number-circle {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .play-content h3 {
        font-size: 1.5rem;
    }

    .play-route {
        height: 60px;
    }

    .route-svg {
        max-width: 100px;
        height: 60px;
    }

    .note-content {
        padding: 3rem 2rem 2.5rem;
    }

    .note-content h3 {
        font-size: 2rem;
    }

    .coach-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .victory-star {
        width: 40px;
        height: 40px;
    }

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

/* ====================================================================================
   CUSTOMIZATION STUDIO SECTION
   ==================================================================================== */

.customization-studio {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #fef9f3 0%, #fff 50%, #f8f9fa 100%);
    overflow: hidden;
}

/* Studio Atmosphere */
.studio-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
}

.fabric-texture {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(232, 123, 62, 0.02) 2px, rgba(232, 123, 62, 0.02) 4px);
}

.thread-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(232, 123, 62, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(31, 41, 55, 0.02) 0%, transparent 50%);
}

/* Studio Header */
.studio-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.craft-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid rgba(232, 123, 62, 0.2);
    border-radius: 50px;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(232, 123, 62, 0.1);
}

.craft-badge svg {
    width: 18px;
    height: 18px;
}

.studio-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--color-darker);
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.studio-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* Technique Showcase */
.technique-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Technique Cards */
.technique-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    opacity: 0;
    animation: cardRiseIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

@keyframes cardRiseIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.print-card {
    animation-delay: 0.1s;
    border-color: rgba(232, 123, 62, 0.1);
}

.embroidery-card {
    animation-delay: 0.3s;
    border-color: rgba(31, 41, 55, 0.1);
}

.technique-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.print-card:hover {
    border-color: var(--color-primary);
}

.embroidery-card:hover {
    border-color: var(--color-darker);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.technique-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.print-card .technique-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    box-shadow: 0 8px 24px rgba(232, 123, 62, 0.3);
}

.embroidery-card .technique-icon {
    background: linear-gradient(135deg, var(--color-darker), #1a1a1a);
    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.3);
}

.technique-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.technique-label h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-darker);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.label-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
}

.print-card .label-tag {
    background: rgba(232, 123, 62, 0.1);
    color: var(--color-primary);
}

.embroidery-card .label-tag {
    background: rgba(31, 41, 55, 0.1);
    color: var(--color-darker);
}

/* Ink Drops - Static */
.ink-drops {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    height: 50px;
    align-items: center;
}

.ink-drop {
    width: 32px;
    height: 40px;
    background: var(--color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.ink-drop::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 5px;
    width: 8px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

/* Thread Spools */
.thread-spools {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    height: 60px;
}

.spool {
    width: 50px;
    height: 50px;
    background: var(--spool-color);
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, 0.1);
    position: relative;
    animation: spoolSpin 3s linear infinite;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.spool::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.spool:nth-child(1) { animation-delay: 0s; }
.spool:nth-child(2) { animation-delay: 0.3s; }
.spool:nth-child(3) { animation-delay: 0.6s; }
.spool:nth-child(4) { animation-delay: 0.9s; }

@keyframes spoolSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Technique Content */
.technique-content {
    margin-top: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.print-card .feature-item svg {
    color: var(--color-primary);
}

.embroidery-card .feature-item svg {
    color: var(--color-darker);
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Compatibility */
.compatibility {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed rgba(0, 0, 0, 0.1);
}

.compatibility h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-darker);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.print-card .tag {
    background: rgba(232, 123, 62, 0.1);
    color: var(--color-primary);
}

.embroidery-card .tag {
    background: rgba(31, 41, 55, 0.1);
    color: var(--color-darker);
}

/* Limitation Note */
.limitation-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 8px;
}

.limitation-note svg {
    width: 20px;
    height: 20px;
    color: #dc2626;
    flex-shrink: 0;
}

.limitation-note span {
    font-size: 0.875rem;
    color: #991b1b;
    font-weight: 500;
}

/* Technique Demo */
.technique-demo {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px dashed rgba(0, 0, 0, 0.1);
    text-align: center;
}

.demo-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gray);
    margin-top: 1rem;
}

/* Print Demo Layers */
.demo-layers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    height: 60px;
    position: relative;
}

.layer {
    width: 50px;
    height: 50px;
    background: var(--layer-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: layerStack 2s ease-in-out infinite;
}

.layer:nth-child(1) { animation-delay: 0s; z-index: 1; }
.layer:nth-child(2) { animation-delay: 0.2s; z-index: 2; }
.layer:nth-child(3) { animation-delay: 0.4s; z-index: 3; }
.layer:nth-child(4) { animation-delay: 0.6s; z-index: 4; }

@keyframes layerStack {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Embroidery Stitch Pattern */
.stitch-pattern {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    height: 60px;
    align-items: center;
}

.stitch {
    width: 4px;
    height: 30px;
    background: var(--color-primary);
    border-radius: 2px;
    position: relative;
    animation: stitchSew 1.5s ease-in-out infinite;
}

.stitch:nth-child(1) { animation-delay: 0s; }
.stitch:nth-child(2) { animation-delay: 0.15s; }
.stitch:nth-child(3) { animation-delay: 0.3s; }
.stitch:nth-child(4) { animation-delay: 0.45s; }
.stitch:nth-child(5) { animation-delay: 0.6s; }

@keyframes stitchSew {
    0%, 100% {
        height: 30px;
        opacity: 0.6;
    }
    50% {
        height: 45px;
        opacity: 1;
    }
}

/* Studio Footer */
.studio-footer {
    max-width: 700px;
    margin: 6rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(232, 123, 62, 0.05), rgba(232, 123, 62, 0.02));
    border: 2px solid rgba(232, 123, 62, 0.2);
    border-radius: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.studio-footer p {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.consult-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(232, 123, 62, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.consult-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(232, 123, 62, 0.6);
}

.consult-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.consult-button:hover svg {
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 768px) {
    .customization-studio {
        padding: 5rem 0;
    }

    .studio-header {
        margin-bottom: 3rem;
    }

    .studio-title {
        font-size: 2.5rem;
    }

    .technique-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .technique-card {
        padding: 2rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .technique-icon {
        width: 60px;
        height: 60px;
    }

    .technique-icon svg {
        width: 30px;
        height: 30px;
    }

    .technique-label h3 {
        font-size: 1.5rem;
    }

    .ink-drops,
    .thread-spools {
        gap: 1rem;
    }

    .ink-drop {
        width: 30px;
        height: 30px;
    }

    .spool {
        width: 40px;
        height: 40px;
    }

    .studio-footer {
        padding: 2rem;
        margin-top: 4rem;
    }

    .studio-footer p {
        font-size: 1rem;
    }

    .consult-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact {
    position: relative;
    background: var(--color-light);
}

.contact-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(232, 123, 62, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(31, 41, 55, 0.03) 0%, transparent 50%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info .section-label,
.contact-info .section-title {
    text-align: left;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-feature svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-feature span {
    font-weight: 600;
    color: var(--color-dark);
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-gray-light);
    border-radius: 4px;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(232, 123, 62, 0.1);
}

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

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 170px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        align-items: flex-start;
    }

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

    .hamburger {
        display: flex;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 640px) {
    .hero {
        padding: 6rem 1.5rem 4rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */

/* Legal Hero Section */
.legal-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    overflow: hidden;
}

.legal-hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, #E87B3E 2px, #E87B3E 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, #E87B3E 2px, #E87B3E 3px);
    background-size: 40px 40px;
    pointer-events: none;
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.legal-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(232, 123, 62, 0.15);
    border: 1px solid rgba(232, 123, 62, 0.3);
    border-radius: 50px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.legal-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.legal-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.6;
}

/* Legal Content Layout */
.legal-content {
    padding: 5rem 0;
    background: #FAFAFA;
}

.legal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Sidebar */
.legal-sidebar {
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-nav-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-nav-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.legal-nav-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-nav-card a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--color-gray);
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.legal-nav-card a:hover {
    background: rgba(232, 123, 62, 0.05);
    color: var(--color-primary);
    border-color: rgba(232, 123, 62, 0.2);
    transform: translateX(4px);
}

.legal-nav-card a.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(232, 123, 62, 0.3);
}

.legal-contact-card {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.legal-contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 123, 62, 0.2);
    border-radius: 14px;
    border: 2px solid rgba(232, 123, 62, 0.3);
}

.legal-contact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.legal-contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.legal-contact-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.legal-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(232, 123, 62, 0.3);
}

.legal-contact-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 123, 62, 0.4);
}

/* Main Content */
.legal-main {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.legal-article {
    padding: 4rem;
}

/* Legal Sections */
.legal-section {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.legal-section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(232, 123, 62, 0.2) 10%,
        rgba(232, 123, 62, 0.2) 90%,
        transparent 100%
    );
}

.legal-section-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    opacity: 0.2;
    position: sticky;
    top: 7rem;
    height: fit-content;
}

.legal-section-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.legal-section-content h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.25px;
}

.legal-section-content h4 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.25rem;
}

.legal-text strong {
    color: var(--color-dark);
    font-weight: 600;
}

.legal-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(232, 123, 62, 0.3);
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-primary-dark);
}

/* Legal Info Grid */
.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(232, 123, 62, 0.03), rgba(232, 123, 62, 0.01));
    border-radius: 12px;
    border: 1px solid rgba(232, 123, 62, 0.1);
}

.legal-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-info-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.legal-info-value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* Highlight Box */
.legal-highlight-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(232, 123, 62, 0.08), rgba(232, 123, 62, 0.03));
    border-left: 4px solid var(--color-primary);
    border-radius: 12px;
    margin: 2rem 0;
}

.legal-highlight-box svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.legal-highlight-box h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.25px;
}

.legal-highlight-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

/* Legal List */
.legal-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.legal-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 0.875rem;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Rights Grid (Datenschutz) */
.legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.legal-right-card {
    padding: 1.75rem;
    background: linear-gradient(135deg, #F9FAFB, #FFFFFF);
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    transition: var(--transition);
}

.legal-right-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(232, 123, 62, 0.12);
    transform: translateY(-4px);
}

.legal-right-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 123, 62, 0.1);
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.legal-right-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.legal-right-card h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.25px;
}

.legal-right-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin: 0;
}

/* Payment Methods (AGB) */
.legal-payment-methods {
    margin: 2rem 0;
}

.legal-payment-methods h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 0.25px;
}

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

.legal-payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    padding: 1.5rem 1rem;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    transition: var(--transition);
}

.legal-payment-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(232, 123, 62, 0.1);
    transform: translateY(-2px);
}

.legal-payment-card svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.legal-payment-card span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
}

/* Last Updated */
.legal-updated {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.5rem 2rem;
    background: #F9FAFB;
    border-radius: 12px;
    margin-top: 3rem;
    border: 1px solid #E5E7EB;
}

.legal-updated svg {
    width: 20px;
    height: 20px;
    color: var(--color-gray);
    flex-shrink: 0;
}

.legal-updated span {
    font-size: 0.9375rem;
    color: var(--color-gray);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .legal-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .legal-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .legal-section {
        grid-template-columns: 60px 1fr;
        gap: 2rem;
    }

    .legal-section-number {
        font-size: 2.5rem;
    }

    .legal-info-grid,
    .legal-rights-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .legal-hero {
        padding: 8rem 0 4rem;
    }

    .legal-title {
        font-size: 2.5rem;
    }

    .legal-subtitle {
        font-size: 1.125rem;
    }

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

    .legal-sidebar {
        grid-template-columns: 1fr;
    }

    .legal-article {
        padding: 2.5rem 1.5rem;
    }

    .legal-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .legal-section-number {
        position: static;
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .legal-section-content h2 {
        font-size: 1.625rem;
    }

    .legal-highlight-box {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-payment-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero */
.contact-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    overflow: hidden;
}

.contact-hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.contact-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(232, 123, 62, 0.1) 60px, rgba(232, 123, 62, 0.1) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(232, 123, 62, 0.1) 60px, rgba(232, 123, 62, 0.1) 61px);
    background-size: 60px 60px;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(232, 123, 62, 0.15);
    border: 2px solid rgba(232, 123, 62, 0.3);
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(232, 123, 62, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(232, 123, 62, 0);
    }
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.contact-hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--color-primary), #D16931);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

.contact-quick-stats {
    display: flex;
    gap: 3rem;
}

.quick-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

/* Contact Main Section */
.contact-main {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: start;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.form-header p {
    font-size: 1.0625rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Inquiry Type Selector */
.inquiry-type-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.inquiry-type-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
}

.inquiry-type-btn svg {
    width: 24px;
    height: 24px;
    color: var(--color-gray);
    transition: var(--transition);
}

.inquiry-type-btn:hover {
    border-color: var(--color-primary);
    background: rgba(232, 123, 62, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(232, 123, 62, 0.1);
}

.inquiry-type-btn.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-color: var(--color-primary);
    color: white;
    box-shadow: 0 6px 24px rgba(232, 123, 62, 0.3);
}

.inquiry-type-btn.active svg {
    color: white;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-dark);
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(232, 123, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.conditional-fields {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Actions */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(232, 123, 62, 0.3);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 123, 62, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-note {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-style: italic;
}

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    animation: successAppear 0.5s ease-out;
}

@keyframes successAppear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 3;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.form-success p {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn-reset {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-reset:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(232, 123, 62, 0.3);
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 6rem;
}

.contact-info-header {
    margin-bottom: 0.5rem;
}

.contact-info-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.25px;
}

.contact-info-header p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Contact Method Cards */
.contact-method-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-method-card:hover {
    border-color: var(--color-primary);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(232, 123, 62, 0.15);
}

.contact-method-card.contact-info-card {
    cursor: default;
}

.contact-method-card.contact-info-card:hover {
    transform: none;
    border-color: #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.method-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}

.phone-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
}

.phone-icon svg {
    width: 26px;
    height: 26px;
    color: #10B981;
}

.hours-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
}

.hours-icon svg {
    width: 26px;
    height: 26px;
    color: #8B5CF6;
}

.email-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
}

.email-icon svg {
    width: 26px;
    height: 26px;
    color: #3B82F6;
}

.configurator-icon {
    background: linear-gradient(135deg, rgba(232, 123, 62, 0.15), rgba(209, 105, 49, 0.05));
}

.configurator-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-primary);
}

.method-content {
    flex: 1;
}

.method-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    margin-bottom: 0.25rem;
}

.method-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.25px;
}

.method-hint {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.method-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.method-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.contact-method-card:hover .method-arrow {
    opacity: 1;
}

.contact-method-card.contact-info-card:hover .method-arrow {
    opacity: 0;
}

.contact-method-card.highlight-card {
    background: linear-gradient(135deg, rgba(232, 123, 62, 0.08), rgba(232, 123, 62, 0.03));
    border-color: rgba(232, 123, 62, 0.3);
}

.contact-method-card.highlight-card:hover {
    background: linear-gradient(135deg, rgba(232, 123, 62, 0.12), rgba(232, 123, 62, 0.05));
    border-color: var(--color-primary);
}

/* Address Card */
.address-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    border-radius: 14px;
    color: white;
}

.address-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 123, 62, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
}

.address-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.address-content h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.25px;
}

.address-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

/* Info Box */
.contact-info-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(232, 123, 62, 0.05);
    border: 2px solid rgba(232, 123, 62, 0.15);
    border-radius: 12px;
}

.info-box-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 123, 62, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

.info-box-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.info-box-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.25px;
}

.info-box-content p {
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-section {
        position: static;
    }

    .contact-quick-stats {
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 0 4rem;
    }

    .contact-hero-title {
        font-size: 2.75rem;
    }

    .contact-hero-subtitle {
        font-size: 1.125rem;
    }

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

    .contact-main {
        padding: 3rem 0;
    }

    .contact-form-section {
        padding: 2rem 1.5rem;
    }

    .form-header h2 {
        font-size: 1.875rem;
    }

    .inquiry-type-selector {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-submit {
        justify-content: center;
        width: 100%;
    }

    .form-note {
        text-align: center;
    }

    .contact-method-card {
        flex-wrap: wrap;
    }

    .method-arrow {
        display: none;
    }
}

/* Loading Spinner Animation for Forms */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
