/* ===========================
   LogoDemand — Main Stylesheet
   =========================== */

:root {
    --blue-dark:    #0d2154;
    --blue-mid:     #1a3a8f;
    --blue-bright:  #1e6ef4;
    --blue-light:   #3b82f6;
    --blue-pale:    #eff4ff;
    --blue-grad:    linear-gradient(135deg, #1a3a8f 0%, #1e6ef4 100%);

    --text-primary:   #0f172a;
    --text-secondary: #475569;
    --text-muted:     #94a3b8;

    --surface:        #ffffff;
    --surface-2:      #f8fafc;
    --surface-3:      #f1f5f9;
    --border:         #e2e8f0;
    --border-strong:  #cbd5e1;

    --green:   #10b981;
    --orange:  #f59e0b;
    --red:     #ef4444;

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --radius-full: 9999px;

    --shadow-sm:  0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
    --shadow-md:  0 4px 16px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.04);
    --shadow-lg:  0 12px 40px rgba(15,23,42,.10), 0 4px 12px rgba(15,23,42,.05);
    --shadow-xl:  0 20px 60px rgba(15,23,42,.12);

    --font-sans:   'Plus Jakarta Sans', sans-serif;
    --font-serif:  'Instrument Serif', serif;

    --max-width: 1200px;
    --header-h:  96px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--surface);
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 4px 10px; border-radius: var(--radius-full);
}
.tag-blue   { background: var(--blue-pale); color: var(--blue-mid); }
.tag-green  { background: #ecfdf5; color: #065f46; }
.tag-orange { background: #fffbeb; color: #92400e; }
.tag-gray   { background: var(--surface-3); color: var(--text-secondary); }

.badge-featured { background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 2px 8px; border-radius: var(--radius-full); }

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--blue-grad);
    color: #fff; font-family: var(--font-sans); font-size: 14px; font-weight: 600;
    padding: 10px 22px; border-radius: var(--radius-full);
    border: none; cursor: pointer;
    transition: opacity .18s, transform .18s, box-shadow .18s;
    box-shadow: 0 4px 14px rgba(30,110,244,.30);
    white-space: nowrap;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,110,244,.38); }

.btn-primary-lg {
    font-size: 16px; padding: 14px 32px; border-radius: var(--radius-full);
}

.btn-outline {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; color: var(--blue-bright);
    font-family: var(--font-sans); font-size: 14px; font-weight: 600;
    padding: 10px 22px; border-radius: var(--radius-full);
    border: 1.5px solid var(--blue-bright); cursor: pointer;
    transition: background .18s, color .18s;
}
.btn-outline:hover { background: var(--blue-pale); }

.btn-ghost {
    display: inline-flex; align-items: center;
    font-size: 14px; font-weight: 600; color: var(--text-secondary);
    padding: 10px 16px; border-radius: var(--radius-full);
    transition: color .15s, background .15s;
}
.btn-ghost:hover { color: var(--text-primary); background: var(--surface-3); }

.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--blue-dark);
    font-family: var(--font-sans); font-size: 15px; font-weight: 700;
    padding: 13px 28px; border-radius: var(--radius-full);
    border: none; cursor: pointer;
    transition: transform .18s, box-shadow .18s;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.20); }

/* ---- HEADER ---- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--blue-bright);
    height: var(--header-h);
}
.header-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
    height: 100%; display: flex; align-items: center; gap: 32px;
}
.logo-link { flex-shrink: 0; }
.site-logo { height: 72px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-right: auto; }
.nav-link {
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    padding: 7px 13px; border-radius: var(--radius-full);
    transition: color .15s, background .15s;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: var(--surface-3); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.phone-number {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--text-secondary);
}
.mobile-menu-btn { display: none; }

.mobile-nav {
    display: none; flex-direction: column; gap: 2px;
    background: var(--surface); border-top: 1px solid var(--border);
    padding: 16px 24px 20px;
}
.mobile-nav a { font-size: 15px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-primary); }
.mobile-nav a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-nav.open { display: flex; }

/* ---- HERO ---- */
.hero {
    background: linear-gradient(160deg, #0d2154 0%, #1a3a8f 45%, #1e55c8 100%);
    color: #fff;
    padding: 80px 0 90px;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
    position: relative; z-index: 1;
    max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.6); margin-bottom: 16px;
}
.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400; line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: #93c5fd; }
.hero-sub {
    font-size: 17px; color: rgba(255,255,255,.80); line-height: 1.65; margin-bottom: 32px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 16px; }

.hero-stats {
    display: flex; gap: 32px; margin-top: 36px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num { font-size: 26px; font-weight: 800; line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }

.hero-visual {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.hero-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 20px;
    backdrop-filter: blur(8px);
}
.hero-card-logo {
    height: 64px; border-radius: var(--radius-sm);
    background: var(--surface-3);
    margin-bottom: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: var(--text-primary);
    letter-spacing: -1px;
}
.hero-card-name { font-size: 13px; font-weight: 600; }
.hero-card-meta { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 3px; }
.hero-card.featured { grid-column: span 2; display: flex; gap: 16px; align-items: center; }
.hero-card.featured .hero-card-logo { height: 52px; min-width: 120px; flex: none; }

/* ---- TRUST BAR ---- */
.trust-bar {
    background: var(--surface-2); border-bottom: 1px solid var(--border); padding: 16px 0;
}
.trust-bar-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.trust-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-logos span { font-size: 15px; font-weight: 700; color: var(--text-muted); font-style: italic; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 40px); font-weight: 400;
    margin-bottom: 12px; line-height: 1.2;
}
.section-header p { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }

/* ---- HOW IT WORKS ---- */
.how-it-works { background: var(--surface-2); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: box-shadow .2s, transform .2s;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.step-number {
    width: 40px; height: 40px; border-radius: var(--radius-full);
    background: var(--blue-grad); color: #fff;
    font-size: 16px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.step-icon {
    width: 52px; height: 52px; border-radius: var(--radius-md);
    background: var(--blue-pale); color: var(--blue-bright);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ---- CONTEST CARDS ---- */
.contests-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.contest-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    display: flex; flex-direction: column;
}
.contest-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.contest-card-thumb {
    height: 140px; background: var(--surface-3);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 900; color: var(--text-muted);
    letter-spacing: -2px; position: relative;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}
.contest-card-thumb .featured-badge {
    position: absolute; top: 12px; right: 12px;
}

.contest-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.contest-card-industry { font-size: 11px; font-weight: 700; color: var(--blue-bright); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.contest-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.contest-card-meta {
    display: flex; gap: 16px; margin-top: auto;
    padding-top: 14px; border-top: 1px solid var(--border);
}
.contest-meta-item { display: flex; flex-direction: column; gap: 2px; }
.contest-meta-item .label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); }
.contest-meta-item .value { font-size: 14px; font-weight: 700; color: var(--text-primary); }

.contest-status {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 600;
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-active     { color: var(--green); }
.status-selection  { color: var(--orange); }
.status-completed  { color: var(--text-muted); }

/* ---- BENEFITS ---- */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefit-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 24px; background: var(--surface-2);
    border: 1px solid var(--border); border-radius: var(--radius-md);
    transition: box-shadow .2s;
}
.benefit-item:hover { box-shadow: var(--shadow-md); }
.benefit-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--blue-pale); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-bright);
}
.benefit-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.benefit-item p  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.testimonial-logo {
    height: 52px; display: flex; align-items: center;
    margin-bottom: 16px;
}
.testimonial-logo img { max-height: 100%; max-width: 120px; object-fit: contain; }
.testimonial-logo-placeholder {
    font-size: 16px; font-weight: 900; color: var(--text-primary);
    letter-spacing: -1px;
}
.testimonial-text  { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--blue-pale); color: var(--blue-bright);
    font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 700; }
.testimonial-loc  { font-size: 11px; color: var(--text-muted); }

/* ---- CTA BAND ---- */
.cta-band {
    background: var(--blue-grad);
    color: #fff; text-align: center;
    padding: 72px 24px;
}
.cta-band h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 44px); font-weight: 400;
    margin-bottom: 14px;
}
.cta-band p  { font-size: 17px; color: rgba(255,255,255,.80); margin-bottom: 32px; }
.cta-band .price-note { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 14px; }

/* ---- CONTESTS PAGE ---- */
.page-banner {
    background: var(--surface-2); border-bottom: 1px solid var(--border);
    padding: 36px 0;
}
.page-banner h1 { font-size: 32px; font-weight: 800; }
.page-banner p   { color: var(--text-secondary); margin-top: 6px; }

.filters-bar {
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 16px 0; position: sticky; top: var(--header-h); z-index: 50;
}
.filters-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.filter-pill {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 7px 16px; border-radius: var(--radius-full);
    border: 1.5px solid var(--border); background: var(--surface);
    font-size: 13px; font-weight: 500; color: var(--text-secondary);
    cursor: pointer; transition: all .15s;
}
.filter-pill:hover, .filter-pill.active {
    border-color: var(--blue-bright); color: var(--blue-bright); background: var(--blue-pale);
}
.filter-select {
    padding: 7px 14px; border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    font-size: 13px; font-family: var(--font-sans);
    color: var(--text-secondary); background: var(--surface);
    cursor: pointer; outline: none;
    transition: border-color .15s;
}
.filter-select:focus { border-color: var(--blue-bright); }

/* ---- CONTEST DETAIL ---- */
.contest-detail-header {
    background: var(--surface-2); border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--blue-bright); }
.breadcrumb a:hover { text-decoration: underline; }

.contest-detail-grid {
    display: grid; grid-template-columns: 1fr 320px; gap: 48px;
    align-items: start; padding-top: 48px;
}
.contest-brief { flex: 1; }
.contest-sidebar {
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px; position: sticky; top: calc(var(--header-h) + 20px);
}

.brief-section { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.brief-section:last-child { border-bottom: none; }
.brief-section h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 12px; }
.brief-section p  { font-size: 15px; color: var(--text-primary); line-height: 1.7; }

.progress-bar {
    height: 6px; background: var(--border); border-radius: var(--radius-full); overflow: hidden; margin: 8px 0 4px;
}
.progress-fill { height: 100%; border-radius: var(--radius-full); background: var(--blue-grad); transition: width .4s; }

.entries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 24px; }
.entry-thumb {
    aspect-ratio: 1; border-radius: var(--radius-sm);
    background: var(--surface-3); overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; color: var(--text-muted);
    cursor: pointer; border: 2px solid transparent;
    transition: border-color .15s, transform .15s;
}
.entry-thumb:hover { border-color: var(--blue-bright); transform: scale(1.04); }

/* ---- CREATE FLOW ---- */
.create-layout {
    display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - var(--header-h));
}
.create-sidebar {
    background: var(--surface-2); border-right: 1px solid var(--border);
    padding: 32px 0;
    position: sticky; top: var(--header-h); height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.create-sidebar-label {
    font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-muted); padding: 0 24px; margin-bottom: 12px;
}
.create-step-item {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 24px; font-size: 14px; font-weight: 500; color: var(--text-secondary);
    cursor: pointer; transition: background .15s, color .15s;
    position: relative;
}
.create-step-item:hover { background: var(--surface-3); }
.create-step-item.current { background: var(--blue-pale); color: var(--blue-mid); font-weight: 600; }
.create-step-item.current::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--blue-bright); border-radius: 0 2px 2px 0;
}
.create-step-item.done { color: var(--green); }
.step-check {
    width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-size: 11px; font-weight: 700;
}
.create-step-item.current .step-check { border-color: var(--blue-bright); color: var(--blue-bright); }
.create-step-item.done   .step-check { border-color: var(--green); background: var(--green); color: #fff; }

.create-main { padding: 48px; max-width: 720px; }
.create-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 8px;
}
.create-main h1 { font-size: 32px; font-weight: 800; margin-bottom: 36px; }
.create-section  { margin-bottom: 40px; }
.create-section h2 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.form-label .optional { font-weight: 400; color: var(--text-muted); font-size: 12px; }

.form-input, .form-textarea, .form-select {
    width: 100%; padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 15px; font-family: var(--font-sans); color: var(--text-primary);
    background: var(--surface);
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--blue-bright);
    box-shadow: 0 0 0 3px rgba(30,110,244,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* Style sliders */
.style-slider-row {
    display: grid; grid-template-columns: 130px 1fr 130px;
    align-items: center; gap: 16px; margin-bottom: 24px;
}
.style-slider-label { font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.style-slider-label.right { text-align: right; }
.style-slider {
    width: 100%; -webkit-appearance: none; appearance: none;
    height: 4px; background: var(--border); border-radius: 2px; cursor: pointer; outline: none;
}
.style-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
    background: var(--blue-grad);
    border: 3px solid #fff; box-shadow: 0 2px 8px rgba(30,110,244,.40);
    cursor: pointer;
}

/* Color association tiles */
.color-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.color-tile {
    border-radius: var(--radius-md); padding: 20px 16px;
    cursor: pointer; border: 2px solid transparent;
    transition: border-color .15s, transform .15s;
    color: #fff; user-select: none;
}
.color-tile:hover { transform: scale(1.03); }
.color-tile.selected { border-color: rgba(255,255,255,.8); box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
.color-tile h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.color-tile-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.color-tile-tag {
    font-size: 11px; background: rgba(0,0,0,.25); padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* Prize packages */
.prize-packages { display: flex; flex-direction: column; gap: 12px; }
.prize-card {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 22px;
    border: 2px solid var(--border); border-radius: var(--radius-lg);
    cursor: pointer; transition: all .15s;
}
.prize-card:hover { border-color: var(--blue-bright); background: var(--blue-pale); }
.prize-card.selected { border-color: var(--blue-bright); background: var(--blue-pale); }
.prize-card input[type="radio"] { accent-color: var(--blue-bright); width: 18px; height: 18px; flex-shrink: 0; }
.prize-card-name { font-weight: 700; font-size: 16px; }
.prize-card-desc { font-size: 13px; color: var(--text-secondary); }
.prize-card-note { font-size: 11px; color: var(--orange); margin-top: 2px; }
.prize-card-price { font-size: 22px; font-weight: 800; margin-left: auto; flex-shrink: 0; }
.prize-card.popular { border-color: var(--blue-bright); }
.prize-popular-badge {
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    background: var(--blue-bright); color: #fff; padding: 2px 8px; border-radius: var(--radius-full);
    margin-left: 8px;
}

/* Upgrade cards */
.upgrade-cards { display: flex; flex-direction: column; gap: 12px; }
.upgrade-card {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 22px;
    border: 2px solid var(--border); border-radius: var(--radius-lg);
    cursor: pointer; transition: all .15s;
}
.upgrade-card:hover { border-color: var(--blue-bright); }
.upgrade-card.selected { border-color: var(--blue-bright); background: var(--blue-pale); }
.upgrade-card input[type="checkbox"] { accent-color: var(--blue-bright); width: 18px; height: 18px; flex-shrink: 0; }
.upgrade-card-name { font-weight: 700; }
.upgrade-card-desc { font-size: 13px; color: var(--text-secondary); }
.upgrade-card-price { font-size: 18px; font-weight: 800; margin-left: auto; flex-shrink: 0; }

/* Payment */
.payment-card {
    background: #1e2535; color: #fff;
    border-radius: var(--radius-lg); padding: 28px;
    margin-bottom: 8px;
}
.payment-label { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 8px; font-weight: 500; }
.payment-input {
    width: 100%; background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm);
    padding: 11px 16px; font-size: 15px; color: #fff; font-family: var(--font-sans);
    outline: none; transition: border-color .15s;
}
.payment-input:focus { border-color: rgba(255,255,255,.5); }
.payment-input::placeholder { color: rgba(255,255,255,.35); }
.payment-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 16px; }

.payment-method-tabs { display: flex; gap: 12px; margin-bottom: 24px; }
.payment-method-tab {
    flex: 1; padding: 14px; border: 2px solid var(--border); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    cursor: pointer; transition: all .15s;
}
.payment-method-tab.active { border-color: var(--blue-bright); background: var(--blue-pale); }

.guarantee-box {
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 20px 24px;
    display: flex; gap: 14px; align-items: flex-start;
}
.guarantee-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* Upload area */
.upload-area {
    border: 2px dashed var(--border); border-radius: var(--radius-lg);
    padding: 32px; text-align: center; cursor: pointer;
    transition: border-color .15s, background .15s;
}
.upload-area:hover { border-color: var(--blue-bright); background: var(--blue-pale); }
.upload-icon { color: var(--text-muted); margin: 0 auto 12px; }

/* Inspiration grid */
.inspiration-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 16px; }
.inspiration-item {
    aspect-ratio: 16/10; border-radius: var(--radius-sm);
    border: 2px solid var(--border); cursor: pointer;
    overflow: hidden; background: var(--surface-3);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: var(--text-muted);
    transition: border-color .15s;
}
.inspiration-item:hover { border-color: var(--blue-bright); }
.inspiration-item.selected { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(30,110,244,.20); }

/* Nav actions row */
.create-actions { display: flex; align-items: center; gap: 16px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.create-back { font-size: 14px; color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; gap: 6px; }
.create-back:hover { color: var(--text-primary); }

/* ---- FOOTER ---- */
.site-footer { background: var(--text-primary); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 240px 1fr; gap: 64px; padding-bottom: 48px; }
.footer-logo { height: 48px; filter: brightness(0) invert(1); opacity: .85; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 10px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, color .15s;
}
.footer-social a:hover { background: rgba(255,255,255,.18); color: #fff; }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0; font-size: 12px; color: rgba(255,255,255,.35);
}

/* ---- DESIGNERS ---- */
.designers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.designer-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 24px; text-align: center;
    transition: box-shadow .2s, transform .2s;
}
.designer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.designer-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 800; color: #fff;
}
.designer-name { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.designer-location { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.designer-stats { display: flex; justify-content: center; gap: 20px; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 12px; }
.designer-stat-num   { font-size: 18px; font-weight: 800; }
.designer-stat-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.star-rating { color: var(--orange); font-size: 13px; margin-bottom: 10px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-inner        { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual       { grid-template-columns: repeat(4, 1fr); }
    .hero-card.featured { grid-column: span 2; }
    .contests-grid     { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top        { grid-template-columns: 1fr; gap: 40px; }
    .footer-links      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .main-nav, .header-actions .phone-number, .header-actions .btn-ghost, .header-actions .btn-primary { display: none; }
    .mobile-menu-btn {
        display: flex; flex-direction: column; gap: 5px; margin-left: auto;
        background: none; border: none; cursor: pointer; padding: 8px;
    }
    .mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; }
    .steps-grid   { grid-template-columns: 1fr; }
    .contests-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .create-layout { grid-template-columns: 1fr; }
    .create-sidebar { display: none; }
    .create-main { padding: 24px; }
    .style-slider-row { grid-template-columns: 80px 1fr 80px; gap: 8px; }
    .style-slider-label { font-size: 12px; }
    .color-tiles { grid-template-columns: repeat(2, 1fr); }
    .entries-grid { grid-template-columns: repeat(3, 1fr); }
    .designers-grid { grid-template-columns: repeat(2, 1fr); }
    .contest-detail-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .section { padding: 52px 0; }
}
@media (max-width: 480px) {
    .hero-stats { gap: 20px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
}