/* ══════════════════════════════════════════
   GameCycle Trade-In Plugin Styles v1.1
   All classes prefixed with gc-
   ══════════════════════════════════════════ */

:root {
    --gc-primary: #0F8127;
    --gc-primary-hover: #0C6E21;
    --gc-primary-light: #E9F5EC;
    --gc-title: #111111;
    --gc-text: #333333;
    --gc-muted: #666666;
    --gc-light: #999999;
    --gc-border: #E5E5E5;
    --gc-white: #FFFFFF;
    --gc-bg-light: #FAFAFA;
    --gc-orange: #FF6B2C;
    --gc-radius: 8px;
    --gc-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --gc-shadow-md: 0 4px 20px rgba(0,0,0,0.08);
}

/* ── BASE ── */
.gc-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: var(--wd-text-font, 'Outfit', sans-serif);
    color: var(--gc-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.gc-section { padding: 100px 0; }
.gc-section-light { background: var(--gc-bg-light); padding: 100px 0; width: 100vw; margin-left: calc(-50vw + 50%); }
.gc-section-label { text-align: center; color: var(--gc-primary); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.gc-section-title { text-align: center; font-size: 50px; font-weight: 700; color: var(--gc-title); margin-bottom: 50px; line-height: 1.3; text-transform: uppercase; }
.gc-section-subtitle { text-align: center; font-size: 15px; color: var(--gc-muted); max-width: 600px; margin: 0 auto 50px; }
.gc-divider { width: 60px; height: 3px; background: var(--gc-primary); margin: 0 auto 20px; border-radius: 2px; }
.gc-orange { color: var(--gc-orange) !important; }
.green-text { color: var(--gc-primary); }

/* ═══════════════════════════════════════
   [gc_hero] — HERO BANNER
   ═══════════════════════════════════════ */
.gc-hero {
    background: var(--gc-primary);
    padding: 60px 0;
    color: #fff;
}
.gc-hero-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}
.gc-hero-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.gc-hero-badge {
    display: inline-block;
    background: var(--gc-orange);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 6px;
    margin-bottom: 16px;
}
.gc-hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 500px;
}
.gc-btn-hero {
    background: #fff;
    color: var(--gc-primary);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
}
.gc-btn-hero:hover {
    background: #f0f0f0;
    color: var(--gc-primary);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.gc-hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.gc-hero-feature {
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}
.gc-hero-feature:hover {
    background: rgba(255,255,255,0.2);
}
.gc-hero-feature i {
    font-size: 28px;
    color: #fff;
}
.gc-hero-feature span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

/* ── BUTTONS ── */
.gc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--gc-radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
}

/* ── ICON SHAPES ── */
.gc-icon-circle {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--gc-primary-light);
    color: var(--gc-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin: 0 auto 18px;
    transition: all 0.25s;
}
.gc-icon-square {
    width: 50px; height: 50px;
    border-radius: 10px;
    background: var(--gc-primary-light);
    color: var(--gc-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    transition: all 0.25s;
}


/* ═══════════════════════════════════════
   [gc_steps] — 3 SCHRITTE
   ═══════════════════════════════════════ */
.gc-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.gc-step-box {
    background: var(--gc-white);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 40px 28px 36px;
    text-align: center;
    transition: all 0.25s;
    position: relative;
}
.gc-step-box:hover {
    border-color: var(--gc-border);
}
.gc-step-number {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 28px;
    background: var(--gc-primary); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; line-height: 1;
}
.gc-step-box h3 { font-size: 18px; font-weight: 700; color: var(--gc-title); margin-bottom: 8px; text-transform: uppercase; }
.gc-step-box p { font-size: 14px; color: var(--gc-muted); line-height: 1.65; }


/* ═══════════════════════════════════════
   [gc_payout] — AUSZAHLUNGSOPTIONEN
   ═══════════════════════════════════════ */
.gc-payout-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.gc-payout-card {
    background: var(--gc-white);
    border: 2px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 36px 30px;
    position: relative;
    transition: all 0.25s;
}
.gc-payout-card:hover { border-color: var(--gc-border); }
.gc-payout-card.gc-recommended { border-color: var(--gc-primary); }
.gc-rec-badge {
    position: absolute; top: 0; right: 24px;
    background: var(--gc-orange); color: #fff;
    font-size: 10px; font-weight: 800;
    padding: 4px 12px; border-radius: 0 0 6px 6px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.gc-payout-card h3 { font-size: 20px; font-weight: 700; color: var(--gc-title); margin-bottom: 8px; text-transform: uppercase; }
.gc-pc-desc { font-size: 14px; color: var(--gc-muted); line-height: 1.65; margin-bottom: 20px; }
.gc-pc-value { font-size: 22px; font-weight: 800; color: var(--gc-title); }
.gc-pc-bonus {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gc-orange); color: #fff;
    padding: 6px 14px; border-radius: 6px;
    font-size: 15px; font-weight: 800;
}
.gc-pc-note { font-size: 13px; color: var(--gc-light); margin-top: 10px; display: flex; align-items: center; gap: 6px; }


/* ═══════════════════════════════════════
   [gc_calculator] — BEISPIELRECHNUNG
   ═══════════════════════════════════════ */
.gc-calc-wrapper {
    max-width: 600px; margin: 0 auto;
    background: var(--gc-white);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    overflow: hidden;
    box-shadow: var(--gc-shadow-sm);
}
.gc-calc-header {
    background: var(--gc-primary); color: #fff;
    padding: 20px 28px; font-size: 17px; font-weight: 700;
    text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.gc-calc-body { padding: 28px; }
.gc-calc-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; border-bottom: 1px solid var(--gc-border); font-size: 15px;
}
.gc-calc-row:last-child { border-bottom: none; }
.gc-calc-row .gc-label { color: var(--gc-muted); }
.gc-calc-row .gc-value { font-weight: 700; color: var(--gc-title); }
.gc-calc-row .gc-value.gc-orange { color: var(--gc-orange); }
.gc-calc-total {
    border-top: 2px solid var(--gc-primary) !important;
    border-bottom: none !important;
    margin-top: 4px; padding-top: 18px !important;
}
.gc-calc-total .gc-label { font-weight: 700 !important; color: var(--gc-title) !important; }
.gc-calc-total .gc-value { font-size: 24px; color: var(--gc-primary) !important; }
.gc-bonus-inline-badge {
    background: var(--gc-orange); color: #fff;
    padding: 2px 8px; border-radius: 4px;
    font-size: 11px; font-weight: 700;
    margin-left: 6px; vertical-align: middle;
}


/* ═══════════════════════════════════════
   [gc_brands] — MARKEN (Original-Design)
   Große Karten mit farbigen Hintergründen
   ═══════════════════════════════════════ */
.gc-brands-title {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    color: var(--gc-title);
    margin-bottom: 40px;
    line-height: 1.3;
}
.gc-brands-title strong {
    font-weight: 800;
    text-transform: uppercase;
}
.gc-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.gc-brand-card {
    background: var(--gc-white);
    border: 1px solid var(--gc-border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all 0.25s;
    overflow: hidden;
}
.gc-brand-card:hover {
    box-shadow: var(--gc-shadow-md);
    transform: translateY(-3px);
}
.gc-brand-badge {
    display: inline-block;
    background: var(--gc-title);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.gc-brand-badge-red {
    background: #E60012;
}
.gc-brand-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gc-brand-logo svg {
    width: 60px;
    height: 60px;
}
.gc-brand-xbox { color: #107C10; }
.gc-brand-xbox svg { fill: #107C10; }
.gc-brand-ps { color: #003791; }
.gc-brand-ps svg { fill: #003791; }
.gc-brand-nintendo { color: #E60012; }
.gc-brand-nintendo svg { fill: #E60012; }
.gc-brand-asus { color: var(--gc-title); }
.gc-brand-asus svg { fill: var(--gc-title); }

.gc-btn-brands {
    background: var(--gc-primary);
    color: #fff;
}
.gc-btn-brands:hover {
    background: var(--gc-primary-hover);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(15,129,39,0.25);
}


/* ═══════════════════════════════════════
   [gc_trust] — TRUST FEATURES
   ═══════════════════════════════════════ */
.gc-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gc-trust-item { text-align: center; padding: 24px 16px; }
.gc-trust-item .gc-icon-circle { width: 56px; height: 56px; font-size: 20px; }
.gc-trust-item h4 { font-size: 14px; font-weight: 700; color: var(--gc-title); margin-bottom: 6px; }
.gc-trust-item p { font-size: 13px; color: var(--gc-muted); line-height: 1.55; }


/* ═══════════════════════════════════════
   [gc_cta] — CALL TO ACTION
   ═══════════════════════════════════════ */
.gc-cta-section { background: var(--gc-primary); padding: 70px 0; text-align: center; color: #fff; }
.gc-cta-section h2 {
    font-size: 36px; font-weight: 700; margin-bottom: 12px; color: #fff; text-transform: uppercase;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.gc-cta-section p { font-size: 16px; opacity: 0.9; margin-bottom: 30px; color: #fff; }
.gc-btn-cta { background: #fff; color: var(--gc-primary); font-size: 16px; padding: 16px 40px; }
.gc-btn-cta:hover { background: #f0f0f0; color: var(--gc-primary); text-decoration: none; }
.gc-cta-highlight { color: rgba(255,255,255,0.7); }


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 960px) {
    .gc-hero-row { grid-template-columns: 1fr; text-align: center; }
    .gc-hero-desc { margin-left: auto; margin-right: auto; }
    .gc-hero-features { max-width: 320px; margin: 0 auto; }
    .gc-hero-title { font-size: 30px; }
    .gc-steps-row { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .gc-payout-row { grid-template-columns: 1fr; }
    .gc-trust-row { grid-template-columns: repeat(2, 1fr); }
    .gc-brands-grid { grid-template-columns: repeat(2, 1fr); }
    .gc-cta-section h2 { flex-direction: column; }
}
@media (max-width: 600px) {
    .gc-hero { padding: 40px 0; }
    .gc-hero-title { font-size: 26px; }
    .gc-section-title { font-size: 35px; }
    .gc-trust-row { grid-template-columns: 1fr; }
    .gc-brands-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .gc-brands-title { font-size: 22px; }
    .gc-section, .gc-section-light { padding: 50px 0; }
}
