/* ============================================
   ATELIER FLOWRIDER - MAIN STYLESHEET
   Consolidated from static site: styles.css + index.html inline + contact.html inline
   ============================================ */

/* ============================================
   SELF-HOSTED FONTS
   ============================================ */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/poppins-v22-latin_latin-ext-300.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/poppins-v22-latin_latin-ext-regular.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/poppins-v22-latin_latin-ext-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/poppins-v22-latin_latin-ext-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/poppins-v22-latin_latin-ext-700.woff2') format('woff2'); }
@font-face { font-family: 'Righteous'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/righteous-v17-latin_latin-ext-regular.woff2') format('woff2'); }

/* ============================================
   CSS RESET & VARIABLES
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-primary: #06060c;
    --bg-secondary: #0d0d18;
    --bg-card: #111122;
    --bg-card-hover: #161633;
    --text-primary: #f0f0f8;
    --text-secondary: #9a9ab8;
    --text-muted: #64648a;
    --gradient-start: #7c3aed;
    --gradient-mid: #6366f1;
    --gradient-end: #06b6d4;
    --border-color: rgba(124, 58, 237, 0.15);
    --border-hover: rgba(124, 58, 237, 0.35);
    --font-heading: 'Righteous', cursive;
    --font-body: 'Poppins', sans-serif;
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-secondary { background: var(--bg-secondary); }
.text-center { text-align: center; }

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 999;
    padding: 12px 24px;
    background: var(--gradient-start);
    color: #fff;
    font-weight: 600;
}
.skip-link:focus {
    top: 0;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: var(--bg-card);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: var(--text-primary);
    display: block;
    font-size: 0.875rem;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary, .btn-outline {
    text-decoration: none;
    line-height: 1.2;
    box-sizing: border-box;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
    border-radius: 50px;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4); }
.btn-primary:focus-visible { outline: 2px solid var(--gradient-end); outline-offset: 3px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(124, 58, 237, 0.4);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--gradient-start);
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-2px);
}
.btn-outline:focus-visible { outline: 2px solid var(--gradient-end); outline-offset: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: var(--max-width);
    z-index: 100;
    background: rgba(6, 6, 12, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px 24px;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(6, 6, 12, 0.92);
    border-color: var(--border-hover);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar-logo svg { width: 36px; height: 36px; }
.navbar-logo-img { height: 44px; width: auto; }
.navbar-logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 1px;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.navbar-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    cursor: pointer;
}
.navbar-links a:hover { color: var(--text-primary); }
.navbar-links a.active { color: var(--text-primary); }
.navbar-cta {
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
    color: #fff !important;
}

/* Dropdown navigation */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    padding: 0;
}
.nav-dropdown-toggle svg { transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle.active { color: var(--text-primary); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 230px;
    background: rgba(13, 13, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover {
    background: rgba(124, 58, 237, 0.15);
    color: var(--text-primary);
}
.nav-dropdown-menu a.active {
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Language switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    margin-left: 16px;
}
.language-switcher-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 6px;
    transition: var(--transition);
}
.language-switcher-link:hover { color: var(--text-primary); }
.language-switcher-active { color: var(--text-primary); background: rgba(124, 58, 237, 0.15); }

/* ============================================
   HOMEPAGE HERO (Video)
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6,6,12,0.7) 0%, rgba(6,6,12,0.4) 40%, rgba(6,6,12,0.75) 100%),
        linear-gradient(90deg, rgba(6,6,12,0.85) 0%, rgba(6,6,12,0.2) 60%, transparent 100%);
    z-index: 1;
}
.hero-video-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end), transparent);
}
.speed-lines {
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    height: 200px;
    transform: translateY(-50%);
    overflow: hidden;
    opacity: 0.18;
    z-index: 2;
}
.speed-lines span {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), var(--gradient-end), transparent);
    animation: speedLine 3s linear infinite;
}
.speed-lines span:nth-child(1) { top: 20%; width: 60%; animation-delay: 0s; }
.speed-lines span:nth-child(2) { top: 40%; width: 80%; animation-delay: 0.5s; }
.speed-lines span:nth-child(3) { top: 55%; width: 50%; animation-delay: 1s; }
.speed-lines span:nth-child(4) { top: 70%; width: 70%; animation-delay: 1.5s; }
.speed-lines span:nth-child(5) { top: 85%; width: 40%; animation-delay: 2s; }
@keyframes speedLine {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(200%); opacity: 0; }
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gradient-end);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gradient-end);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}
.hero-brands {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}
.hero-brands-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}
.hero-brands-list {
    display: flex;
    align-items: flex-end;
    gap: 28px;
}
.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: var(--transition);
}
.brand-item:hover { opacity: 1; }
.brand-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
.brand-item:hover .brand-name { color: var(--text-secondary); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SPLIT HERO (text left, image right) - Inner pages
   ============================================ */
.split-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}
.split-hero .container { position: relative; z-index: 1; }
.split-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.split-hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.split-hero-brand-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.split-hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--text-primary);
}
.split-hero-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
}
.split-hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.split-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.split-hero-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-width: 540px;
    margin: 0 auto;
}
.split-hero-img::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    background-size: 300% 300%;
    border-radius: 24px 24px 80px 24px;
    opacity: 0.85;
    animation: borderGlow 6s ease-in-out infinite;
}
@keyframes borderGlow {
    0%   { background-position: 0% 50%; opacity: 0.7; }
    50%  { background-position: 100% 50%; opacity: 1; }
    100% { background-position: 0% 50%; opacity: 0.7; }
}
.split-hero-img::after {
    content: '';
    position: absolute;
    inset: -24px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.15));
    border-radius: 24px 24px 80px 24px;
    filter: blur(30px);
    z-index: -1;
}
.split-hero-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 76px 20px;
    z-index: 1;
}
.split-hero-dots {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--gradient-start) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.3;
    z-index: 0;
}
.split-hero-bg-accent {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse at 70% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   PAGE HERO (simple, centered)
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
}
.page-hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.page-hero-breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
    cursor: pointer;
}
.page-hero-breadcrumb a:hover { color: var(--text-secondary); }
.page-hero-breadcrumb svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
}
.page-hero-breadcrumb .current { color: var(--gradient-end); }
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 20px;
}
.page-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
}
.page-hero-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end), transparent);
    margin-top: 48px;
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}
.section-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gradient-end);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.7;
}
.section-header { margin-bottom: 48px; }

/* ============================================
   WHY CARDS (shared across pages)
   ============================================ */
.why-section { background: var(--bg-secondary); }
.why-header { text-align: center; margin-bottom: 64px; }
.why-header .section-desc { margin: 0 auto; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity var(--transition);
}
.why-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.why-card:hover::before { opacity: 1; }
.why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.why-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gradient-end);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.why-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   HOMEPAGE SERVICES GRID
   ============================================ */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.08);
}
.service-card-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.service-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gradient-end);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 12px;
    line-height: 1.3;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    flex: 1;
}
.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.service-tag {
    padding: 4px 12px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 20px;
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   HOMEPAGE STATS
   ============================================ */
.stats-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gradient-start), var(--gradient-end), transparent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item {
    padding: 32px 16px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-color);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 8px;
}
.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}
.stat-sub {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 4px;
}

/* ============================================
   HOMEPAGE TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
}
.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro { background: var(--bg-secondary); }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-intro-content .section-desc { margin-bottom: 32px; }
.about-highlight-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.about-highlight-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}
.about-highlight-box blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--gradient-start);
}
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.about-stat { text-align: center; padding: 16px 8px; }
.about-stat-number { font-family: var(--font-heading); font-size: 2rem; }
.about-stat-label { font-size: 0.8rem; color: var(--text-secondary); margin-top: 4px; }

/* Split layout (used in intro sections) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.highlight-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.highlight-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}
.highlight-box blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 24px;
    border-left: 3px solid var(--gradient-start);
}

/* Vision/Mission cards */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}
.vm-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.08);
}
.vm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity var(--transition);
}
.vm-card:hover::before { opacity: 1; }
.vm-card-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.1));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
}
.vm-card-icon svg { width: 28px; height: 28px; stroke: var(--gradient-end); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vm-card h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 16px; }
.vm-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }

/* Values */
.values-section { background: var(--bg-secondary); }
.values-header { text-align: center; margin-bottom: 56px; }
.values-header .section-desc { margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}
.value-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-4px); }
.value-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.08));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.value-card-icon svg { width: 24px; height: 24px; stroke: var(--gradient-end); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-card h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 10px; }
.value-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; }

/* ============================================
   PERFORMANCE PAGES (stages, brands)
   ============================================ */
.stage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.stage-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stage-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.08);
}
.stage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity var(--transition);
}
.stage-card:hover::before { opacity: 1; }
.stage-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stage-badge.stage-1 { background: rgba(249, 115, 22, 0.15); color: #f97316; border: 1px solid rgba(249, 115, 22, 0.3); }
.stage-badge.stage-2 { background: rgba(34, 197, 94, 0.15); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }
.stage-badge.stage-3 { background: rgba(59, 130, 246, 0.15); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.3); }
.stage-badge.stage-4 { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; border: 1px solid rgba(139, 92, 246, 0.3); }
.stage-badge.stage-4plus { background: rgba(168, 85, 47, 0.15); color: #c87533; border: 1px solid rgba(168, 85, 47, 0.3); }
.stage-badge.stage-5 { background: rgba(255, 255, 255, 0.1); color: #e2e8f0; border: 1px solid rgba(255, 255, 255, 0.2); }
.stage-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 12px; }
.stage-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }
.stage-mods { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-color); }
.stage-mods li {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.6;
    padding: 4px 0 4px 20px;
    position: relative;
    list-style: none;
}
.stage-mods li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gradient-end);
}
.stage-punch {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}
.stage-note {
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.7;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.brand-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    transition: var(--transition);
}
.brand-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.brand-card h4, .brand-card h3 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 10px; color: var(--text-primary); }
.brand-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; }

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.service-detail-content .section-desc { margin-bottom: 24px; }
.rebuild-benefits { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.rebuild-benefit { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 0.95rem; }
.rebuild-benefit svg { flex-shrink: 0; }
.service-features { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.service-feature-item { display: flex; gap: 14px; align-items: flex-start; }
.service-feature-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.08));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.service-feature-icon svg { width: 16px; height: 16px; stroke: var(--gradient-end); fill: none; stroke-width: 2; }
.service-feature-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.service-feature-text p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content-inner {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content-inner h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--text-primary);
}
.legal-content-inner h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--text-primary);
}
.legal-content-inner p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.legal-content-inner ul,
.legal-content-inner ol {
    color: var(--text-secondary);
    margin: 0 0 16px 24px;
    font-size: 0.95rem;
    line-height: 1.8;
}
.legal-content-inner a {
    color: var(--gradient-end);
    text-decoration: underline;
}

/* ============================================
   SERVICE SHOWCASE
   ============================================ */
.service-showcase {
    padding: 80px 0;
}
.service-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}
.service-showcase-row:first-child {
    padding-top: 0;
}
.service-showcase-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.service-showcase-row--reversed {
    direction: rtl;
}
.service-showcase-row--reversed > * {
    direction: ltr;
}
.service-showcase-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.service-showcase-visual img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}
.service-showcase-dots {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--gradient-start) 1.2px, transparent 1.2px);
    background-size: 10px 10px;
    opacity: 0.25;
    pointer-events: none;
}
.service-showcase-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.service-showcase-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.service-showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.service-showcase-content .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   PIECES PAGE
   ============================================ */
.pieces-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.piece-cat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}
.piece-cat-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-4px); }
.piece-cat-card-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.1));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.piece-cat-card-icon svg { width: 26px; height: 26px; stroke: var(--gradient-end); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.piece-cat-card h3 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 12px; }
.piece-cat-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }
.piece-cat-card .btn-outline { margin-top: 20px; padding: 10px 24px; font-size: 0.82rem; }

/* ============================================
   VETEMENTS / PRODUCTS
   ============================================ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    transition: var(--transition);
    cursor: default;
}
.product-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-4px); }
.product-card-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.08));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.product-card-icon svg { width: 24px; height: 24px; stroke: var(--gradient-end); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.product-card h3 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 10px; }
.product-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; }

/* ============================================
   EVENEMENTIEL
   ============================================ */
.event-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-content { max-width: 800px; margin: 0 auto; text-align: center; }
.community-content .section-desc { max-width: 100%; margin: 0 auto 20px; }
.community-content .section-desc:last-of-type { margin-bottom: 40px; }
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.community-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}
.community-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.community-card-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.08));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.community-card-icon svg { width: 28px; height: 28px; color: var(--gradient-end); }
.community-card h3 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 12px; color: var(--text-primary); }
.community-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.community-cta { text-align: center; margin-top: 48px; }
.community-tagline { color: var(--text-secondary); font-size: 1.05rem; font-style: italic; margin-bottom: 24px; }

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section { position: relative; overflow: hidden; text-align: center; }
.cta-section .section-desc { margin: 0 auto; }
.cta-section .cta-actions { margin-top: 24px; }
.cta-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 50%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box .section-title { margin-bottom: 16px; }
.cta-box .section-desc { margin: 0 auto 36px; max-width: 600px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.cta-actions .btn-primary,
.cta-actions .btn-outline { display: inline-flex; align-items: center; justify-content: center; text-decoration: none !important; }

/* ============================================
   GALLERY CAROUSEL
   ============================================ */
.gallery-carousel {
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
}
.gallery-carousel::before,
.gallery-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.gallery-carousel::before { left: 0; background: linear-gradient(to right, var(--bg-primary), transparent); }
.gallery-carousel::after { right: 0; background: linear-gradient(to left, var(--bg-primary), transparent); }
.gallery-track {
    display: flex;
    gap: 20px;
    animation: gallery-scroll 52s linear infinite;
    width: max-content;
}
.gallery-track:hover { animation-play-state: paused; }
.gallery-slide {
    flex-shrink: 0;
    width: 320px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-slide:hover img { transform: scale(1.05); }
@keyframes gallery-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .gallery-slide { width: 260px; height: 195px; }
    .gallery-carousel { padding: 40px 0; }
}

/* ============================================
   CONTACT PAGE - BENTO GRID
   ============================================ */
.contact-hero-section { padding: 0 0 80px; }
.contact-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}
.contact-bento-map {
    grid-row: 1 / 3;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    min-height: 520px;
    background: var(--bg-card);
    position: relative;
}
.contact-bento-map iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    filter: brightness(0.85) contrast(1.1) saturate(0.3) hue-rotate(180deg) invert(1);
}
.contact-bento-map-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 28px;
    background: linear-gradient(to top, rgba(6,6,12,0.95) 0%, rgba(6,6,12,0.6) 60%, transparent 100%);
}
.contact-bento-map-overlay h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 4px; }
.contact-bento-map-overlay p { color: var(--text-secondary); font-size: 0.88rem; }
.contact-bento-info { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.contact-bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity var(--transition);
}
.contact-bento-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-4px); }
.contact-bento-card:hover::before { opacity: 1; }
.contact-bento-card-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.1));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.contact-bento-card-icon svg { width: 22px; height: 22px; stroke: var(--gradient-end); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-bento-card h4 { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 6px; color: var(--text-primary); }
.contact-bento-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.5; }
.contact-bento-social {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-bento-social h4 { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 16px; }
.contact-social-links { display: flex; gap: 12px; }
.contact-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}
.contact-social-btn:hover { border-color: var(--border-hover); color: var(--text-primary); background: var(--bg-card-hover); transform: translateY(-2px); }
.contact-social-btn svg { width: 18px; height: 18px; fill: var(--text-secondary); flex-shrink: 0; }
.contact-social-btn:hover svg { fill: var(--text-primary); }

/* Contact form */
.contact-form-section { margin-top: 20px; }
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.contact-form-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.contact-form-wrapper > * { position: relative; z-index: 1; }
.contact-form-header { margin-bottom: 36px; }
.contact-form-header h2 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 8px; }
.contact-form-header p { color: var(--text-secondary); font-size: 0.92rem; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form-grid .form-group.full-width { grid-column: 1 / -1; }

/* Contact / Map compact section */
.contact-map-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; margin-top: 48px; }
.contact-map-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-map-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.contact-map-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateX(4px); }
.contact-map-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.1));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-map-card-icon svg { width: 20px; height: 20px; stroke: var(--gradient-end); }
.contact-map-card-body h4 { font-family: var(--font-heading); font-size: 0.9rem; margin-bottom: 2px; color: var(--text-primary); }
.contact-map-card-body p { color: var(--text-secondary); font-size: 0.85rem; }
.contact-map-embed {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    min-height: 340px;
    background: var(--bg-card);
}
.contact-map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    display: block;
    filter: brightness(0.85) contrast(1.1) saturate(0.3) hue-rotate(180deg) invert(1);
}

/* Forms (shared) */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='2,4 6,8 10,4' fill='none' stroke='%239a9ab8' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-actions { margin-top: 28px; display: flex; align-items: center; gap: 20px; }
.contact-form-note { color: var(--text-muted); font-size: 0.8rem; }

/* Step 2 confirmation */
.contact-step2 {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 48px 24px;
}
.contact-step2 h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-primary); }
.contact-step2 p { color: var(--text-secondary); max-width: 500px; line-height: 1.7; }
.contact-step2-note {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 24px;
}
.contact-step2-icon { margin-bottom: 8px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 72px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 300px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social-link {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}
.footer-social-link:hover { background: rgba(124, 58, 237, 0.15); border-color: var(--gradient-start); transform: translateY(-2px); }
.footer-social-link svg { width: 18px; height: 18px; fill: var(--text-secondary); }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 20px; }
.footer-col ul,
.footer-col .menu { display: flex; flex-direction: column; gap: 12px; }
.footer-col a,
.footer-col .menu-item a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: color var(--transition);
    cursor: pointer;
}
.footer-col a:hover,
.footer-col .menu-item a:hover { color: var(--text-primary); }
/* Remove default WP menu list styles */
.footer-col .menu { list-style: none; padding: 0; margin: 0; }
.footer-col .menu-item { list-style: none; }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.88rem;
}
.footer-contact-item svg {
    width: 16px; height: 16px;
    stroke: var(--gradient-end);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.8rem; transition: color var(--transition); cursor: pointer; }
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.entry-content { max-width: var(--max-width); }
.entry-content > * { max-width: 100%; }

/* WP alignment classes */
.alignwide { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
.aligncenter { text-align: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content { max-width: 100%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .vm-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .pieces-categories { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .event-features { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-map-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .split-layout { grid-template-columns: 1fr; gap: 32px; }
    .contact-bento { grid-template-columns: 1fr; }
    .contact-bento-map { grid-row: auto; min-height: 350px; }
    .contact-bento-map iframe { min-height: 350px; }
    .service-showcase-row { grid-template-columns: 1fr; gap: 32px; }
    .service-showcase-row--reversed { direction: ltr; }
    .service-showcase-visual img { height: 280px; }
}

@media (max-width: 768px) {
    .navbar-links { display: none; }
    .mobile-toggle { display: flex; }
    .navbar-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(6, 6, 12, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        margin-top: 12px;
        padding: 20px;
        gap: 12px;
    }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(124, 58, 237, 0.06);
        backdrop-filter: none;
        border: none;
        padding: 4px 0 4px 12px;
        min-width: auto;
        border-radius: 8px;
        display: none;
    }
    .nav-dropdown.open .nav-dropdown-menu { display: flex; }
    .nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
    .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: none; }

    .hero { padding-top: 100px; min-height: auto; padding-bottom: 80px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-brands { flex-direction: column; align-items: flex-start; gap: 16px; }
    .split-hero { padding: 130px 0 60px; }
    .split-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .split-hero-text { align-items: center; }
    .split-hero-text p { max-width: 100%; }
    .split-hero-cta { justify-content: center; }
    .split-hero-img { max-width: 320px; }
    .split-hero-dots { display: none; }
    .page-hero { padding: 120px 0 60px; }
    .section { padding: 64px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item::after { display: none !important; }
    .values-grid { grid-template-columns: 1fr; }
    .about-stats-row { grid-template-columns: 1fr; gap: 16px; }
    .stage-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: 1fr; }
    .pieces-categories { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .event-features { grid-template-columns: 1fr; }
    .community-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .cta-box { padding: 48px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-bento-info { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px 20px; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-form-actions { flex-direction: column; align-items: flex-start; }
    .contact-social-links { flex-direction: column; }
    .contact-info-items { flex-direction: column; gap: 20px; align-items: center; }
    .language-switcher { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .split-hero-img::before { animation: none; }
}
