/* ================================
   Stitched - Premium Custom Apparel
   ================================ */

:root {
    --black: #000000;
    --white: #fcfcfc;
    --accent: #7c3aed;
    --accent-light: #8b5cf6;
    --accent-bg: #f5f3ff;
    --gray-100: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================
   Typography
   ================================ */
em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

/* ================================
   Floating Particles
   ================================ */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float var(--duration, 6s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -15px) scale(1.1); }
    50% { transform: translate(-5px, 10px) scale(0.9); }
    75% { transform: translate(15px, 5px) scale(1.05); }
}

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--black);
}

.logo-full {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 40px;
    margin-left: auto;
    margin-right: 24px;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-links a {
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.7; }

.nav-actions {
    display: none;
    align-items: center;
    gap: 16px;
}

@media (min-width: 1024px) {
    .nav-actions { display: flex; }
}

.btn-nav {
    padding: 12px 28px;
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    border: 1px solid var(--gray-700);
    transition: all 0.3s var(--ease);
}

.btn-nav:hover {
    background: var(--gray-800);
    border-color: var(--gray-500);
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 101;
}

@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s var(--ease);
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu-links a {
    font-size: 24px;
    font-weight: 600;
}

.mobile-cta {
    margin-top: 16px;
    padding: 14px 28px;
    background: var(--accent);
    border-radius: 8px;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    min-height: min(100vh, 900px);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s var(--ease) forwards;
}

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

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

#typing-text {
    color: var(--accent);
}

.cursor {
    color: var(--accent);
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.6s var(--ease) 0.5s forwards;
    max-width: 500px;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.6s var(--ease) 0.7s forwards;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s var(--ease);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: var(--accent-bg);
    border: 1px solid var(--gray-400);
    color: var(--black);
}

.btn-secondary:hover {
    background: var(--gray-400);
    border-color: var(--black);
}

.btn-large {
    padding: 18px 36px;
    font-size: 15px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s var(--ease) 0.4s forwards;
}

.hero-logo {
    position: relative;
}

.x-logo {
    width: 250px;
    height: 250px;
}

@media (min-width: 768px) {
    .x-logo {
        width: 300px;
        height: 300px;
    }
}

@media (min-width: 1024px) {
    .x-logo {
        width: 350px;
        height: 350px;
    }
}

/* ================================
   Section Styles
   ================================ */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    padding: 8px 16px;
    border: 1px solid var(--accent);
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 16px;
    color: var(--gray-400);
    margin-top: 12px;
    max-width: 600px;
    line-height: 1.7;
}

/* ================================
   Philosophy Section
   ================================ */
.philosophy {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: var(--accent-bg);
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .philosophy-layout {
        grid-template-columns: 1fr 1.5fr;
        gap: 80px;
    }
}

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

.philosophy-lead {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.philosophy-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 16px;
}

/* ================================
   Pillars Section
   ================================ */
.pillars {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-card {
    padding: 32px 24px;
    border-bottom: 1px solid var(--gray-400);
    transition: all 0.3s var(--ease);
}

@media (min-width: 768px) {
    .pillar-card { border-right: 1px solid var(--gray-400); border-bottom: none; }
    .pillar-card:last-child { border-right: none; }
}

.pillar-card:hover { background: var(--accent-bg); }

.pillar-number {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    font-family: monospace;
    margin-bottom: 12px;
}

.pillar-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pillar-description {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ================================
   Brands Section
   ================================ */
.brands {
    padding: 80px 0;
    background: var(--accent-bg);
    position: relative;
    z-index: 1;
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
}

.brand-card {
    background: var(--white);
    border: 1px solid var(--gray-400);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.4s var(--ease);
    display: block;
    position: relative;
    overflow: hidden;
}

.brand-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s var(--ease);
    pointer-events: none;
    z-index: 10;
}

.brand-logo-member-threads {
    transform: scale(1.15);
}

.brand-card:hover .brand-logo-member-threads {
    transform: scale(1.25);
}

.brand-card:hover .brand-logo {
    opacity: 1;
    transform: scale(1);
}

.brand-card:hover .brand-card-content {
    opacity: 0;
}

.brand-card-content {
    transition: opacity 0.3s var(--ease);
}

.brand-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.brand-card-cta {
    background: var(--accent);
    border-color: var(--accent);
}

.brand-card-cta .brand-name,
.brand-card-cta .brand-tagline,
.brand-card-cta .brand-cta {
    color: var(--white);
}

.brand-card-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.brand-tagline {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

.brand-cta {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
}

/* ================================
   Process Section
   ================================ */
.process {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 640px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    letter-spacing: -0.03em;
}

.step-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.step-description {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ================================
   Differentiators Section
   ================================ */
.differentiators {
    padding: 80px 0;
    background: var(--accent-bg);
    position: relative;
    z-index: 1;
}

.diff-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .diff-layout {
        grid-template-columns: 1fr 1.5fr;
        gap: 80px;
        align-items: start;
    }
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.diff-icon {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    width: 24px;
    flex-shrink: 0;
}

.diff-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.cta-email {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 20px;
}

.cta-email a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ================================
   Footer
   ================================ */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--gray-400);
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-top { grid-template-columns: 1fr 2fr; }
}

.footer-tagline {
    font-style: italic;
    color: var(--gray-500);
    margin-top: 12px;
    font-size: 14px;
}

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

.footer-column h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-column a:hover { color: var(--accent); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-400);
    font-size: 12px;
    color: var(--gray-500);
}

/* ================================
   Scrollbar
   ================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 4px; }
::selection { background: var(--accent); color: var(--white); }

/* ================================
   Page Hero (Interior Pages)
   ================================ */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================
   Story Section (About Page)
   ================================ */
.story-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.story-layout {
    max-width: 800px;
    margin: 0 auto;
}

.story-lead {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.story-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* ================================
   Values Section (About Page)
   ================================ */
.values-section {
    padding: 100px 0;
    background: var(--accent-bg);
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
}

.value-number {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    font-family: monospace;
    margin-bottom: 16px;
    display: block;
}

.value-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-description {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ================================
   Stats Section (About Page)
   ================================ */
.stats-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 8px;
    display: block;
}

/* ================================
   Process Detail Section (Process Page)
   ================================ */
.process-detail-section {
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}

.process-steps-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.process-step-detailed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
    .process-step-detailed {
        grid-template-columns: 300px 1fr;
        gap: 60px;
    }
}

.process-step-detailed:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-number-large {
    font-size: 64px;
    font-weight: 200;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.step-meta {}

.step-title-large {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-timeline {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-content {}

.step-intro {
    font-size: 18px;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 32px;
}

.step-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .step-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.step-details-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.step-details-col ul {
    list-style: none;
}

.step-details-col li {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.step-details-col li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ================================
   FAQ Section (Process Page)
   ================================ */
.faq-section {
    padding: 100px 0;
    background: var(--accent-bg);
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 640px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.faq-item {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.faq-answer {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ================================
   Contact Section (Contact Page)
   ================================ */
.contact-section {
    padding: 60px 0 120px;
    position: relative;
    z-index: 1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1.5fr 1fr;
        gap: 80px;
    }
}

.contact-form-wrapper {}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-sans);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    background: var(--white);
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    cursor: pointer;
    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%3Cpath fill='%23737373' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.btn.full-width {
    width: 100%;
}

.form-note {
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
}

/* Contact Info Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--accent-bg);
    padding: 28px;
    border-radius: 12px;
}

.info-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
}

.info-value {
    font-size: 15px;
    color: var(--black);
}

a.info-value:hover {
    color: var(--accent);
}

/* Quick FAQ in Contact */
.quick-faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-faq-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.quick-faq-item p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ================================
   Brands Page Section
   ================================ */
.brands-page-section {
    padding: 60px 0 120px;
    position: relative;
    z-index: 1;
}

.brands-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .brands-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brands-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brand-page-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
}

.brand-page-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.brand-page-card-cta {
    background: var(--accent);
    border-color: var(--accent);
}

.brand-page-card-cta .brand-category,
.brand-page-card-cta .brand-page-name,
.brand-page-card-cta .brand-page-tagline,
.brand-page-card-cta .brand-page-description,
.brand-page-card-cta .brand-page-cta {
    color: var(--white);
}

.brand-page-card-cta:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.brand-page-header {
    margin-bottom: 16px;
}

.brand-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.brand-page-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.brand-page-tagline {
    font-size: 14px;
    color: var(--gray-500);
    font-style: italic;
}

.brand-page-description {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.brand-page-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.brand-price,
.brand-minimum {
    font-size: 13px;
    color: var(--gray-500);
}

.brand-price {
    font-weight: 600;
    color: var(--black);
}

.brand-page-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

/* ================================
   Individual Brand Page Styles
   ================================ */
.brand-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.back-link {
    display: inline-block;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--accent);
}

.brand-hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.brand-hero-tagline {
    font-size: 20px;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 24px;
}

.brand-hero-description {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.brand-hero-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.meta-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.meta-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

/* Perfect For Section */
.brand-perfect-for {
    padding: 100px 0;
    background: var(--accent-bg);
    position: relative;
    z-index: 1;
}

.perfect-for-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 640px) {
    .perfect-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .perfect-for-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.perfect-for-item {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
}

.perfect-for-item h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.perfect-for-item p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Approach Section */
.brand-approach {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.approach-layout {
    max-width: 800px;
    margin: 0 auto;
}

.approach-lead {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.approach-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.approach-features {
    list-style: none;
}

.approach-features li {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.approach-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--accent-bg);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-100);
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
}

.testimonial-text::before {
    content: """;
    font-size: 48px;
    font-family: var(--font-serif);
    color: var(--accent);
    line-height: 0;
    display: block;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.author-event {
    font-size: 13px;
    color: var(--gray-500);
}

/* ================================
   Trust Stats Section
   ================================ */
.trust-stats {
    padding: 60px 0;
    background: var(--accent-bg);
    position: relative;
    z-index: 1;
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .trust-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

.trust-stat {
    text-align: center;
}

.trust-number {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
    letter-spacing: -0.02em;
}

.trust-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 8px;
    display: block;
}

/* ================================
   Newsletter Section
   ================================ */
.newsletter-section {
    padding: 100px 0;
    background: var(--accent-bg);
    position: relative;
    z-index: 1;
}

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

.newsletter-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.newsletter-description {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 240px;
    padding: 14px 20px;
    font-size: 15px;
    font-family: var(--font-sans);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    background: var(--white);
    transition: all 0.2s;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--gray-400);
}

.newsletter-note {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 16px;
}

/* ================================
   Hero Gallery (Phase 2)
   ================================ */
.hero-gallery {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 1s var(--ease) 0.6s forwards;
}

@media (min-width: 1024px) {
    .hero-gallery {
        display: grid;
    }
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-bg) 0%, #e9e3ff 100%);
    border: 1px solid var(--gray-100);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
}

.gallery-item-large .gallery-placeholder {
    min-height: 300px;
}

.placeholder-icon {
    font-size: 48px;
    line-height: 1;
}

.gallery-item-large .placeholder-icon {
    font-size: 64px;
}

.placeholder-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

/* ================================
   Sticky Header Enhancement (Phase 2)
   ================================ */
.navbar {
    background: rgba(252, 252, 252, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s var(--ease);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

/* ================================
   Testimonial Avatars (Phase 2)
   ================================ */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ================================
   Portfolio Section (Phase 2)
   ================================ */
.portfolio-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent-bg) 0%, #e9e3ff 100%);
    border: 1px solid var(--gray-100);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.portfolio-brand {
    display: inline-block;
    background: var(--accent);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.portfolio-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    min-height: 250px;
}

.portfolio-placeholder-icon {
    font-size: 48px;
    line-height: 1;
}

.portfolio-placeholder-text {
    font-size: 14px;
    color: var(--gray-500);
    text-align: center;
}

/* ================================
   Homepage FAQ Section (Phase 2)
   ================================ */
.faq-home-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.faq-home-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .faq-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-home-item {
    padding: 24px;
    background: var(--accent-bg);
    border-radius: 12px;
    border: 1px solid var(--gray-100);
}

.faq-home-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.faq-home-item p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ================================
   Brand Card Placeholder Logo (Phase 2)
   ================================ */
.brand-card-placeholder-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s var(--ease);
    pointer-events: none;
    z-index: 10;
}

.brand-card:hover .brand-card-placeholder-logo {
    opacity: 1;
    transform: scale(1);
}
