/* ==========================================================================
   More Trade - Prosta zaślepka (Placeholder)
   Biała kolorystyka na bazie moreinteractive.pl
   ========================================================================== */

:root {
    --color-blue: #2176FF;
    --color-cyan: #70CAF0;
    --color-orange: #F79824;
    --color-navy: #173456;
    --color-navy-dark: #0f2238;
    
    /* Jasne tła w stylu moreinteractive.pl */
    --bg-page: #F7FAFD;
    --bg-card: #FFFFFF;
    --card-border: rgba(23, 52, 86, 0.08);
    
    /* Typografia */
    --text-heading: #173456;
    --text-body: #475a72;
    --text-muted: #788d04;
    --text-subtle: #8295ac;

    --font: 'Raleway', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
    height: 100%;
}

body {
    font-family: var(--font);
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   Subtelne efekty tła (delikatne pastelowe łuny)
   -------------------------------------------------------------------------- */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(150px);
    z-index: 0;
}

.glow-top {
    top: -15%;
    right: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(33, 118, 255, 0.12) 0%, rgba(33, 118, 255, 0) 70%);
}

.glow-bottom {
    bottom: -15%;
    left: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(247, 152, 36, 0.12) 0%, rgba(247, 152, 36, 0) 70%);
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(23, 52, 86, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 52, 86, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

/* --------------------------------------------------------------------------
   Główny kontener strony
   -------------------------------------------------------------------------- */
.wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 36px 20px 24px;
}

@media (min-width: 768px) {
    .wrapper {
        padding: 48px 32px 32px;
    }
}

/* --------------------------------------------------------------------------
   Header / Logo More Interactive
   -------------------------------------------------------------------------- */
.site-header {
    width: 100%;
    max-width: 860px;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.logo-link {
    display: inline-block;
    transition: transform var(--transition);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-svg {
    display: block;
    height: auto;
    max-width: 200px;
}

/* --------------------------------------------------------------------------
   Karta zaślepki (Biała w stylistyce MORE)
   -------------------------------------------------------------------------- */
.card {
    width: 100%;
    max-width: 860px;
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 44px 28px;
    box-shadow: 
        0 24px 64px rgba(23, 52, 86, 0.07),
        0 4px 16px rgba(23, 52, 86, 0.03);
    margin: auto 0;
}

@media (min-width: 768px) {
    .card {
        padding: 56px 56px;
    }
}

/* --------------------------------------------------------------------------
   Badge / Tag w stylu moreinteractive.pl (Pomarańczowy #F79824)
   -------------------------------------------------------------------------- */
.tag-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1px solid var(--color-orange);
    color: #d97706;
    background: rgba(247, 152, 36, 0.1);
    font-size: 13px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
    cursor: default;
    user-select: none;
}

.title {
    font-size: clamp(1.85rem, 4.2vw, 2.9rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--text-heading);
    margin-bottom: 20px;
}

.title .highlight {
    color: var(--color-blue);
    display: inline-block;
}

.brand-stripes {
    margin-bottom: 28px;
}

.brand-stripes svg {
    max-width: 100%;
    height: auto;
}

.description {
    font-size: clamp(1.05rem, 1.8vw, 1.22rem);
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 24px;
}

.description strong {
    color: var(--text-heading);
    font-weight: 700;
}

.callout {
    font-size: clamp(1rem, 1.7vw, 1.15rem);
    color: var(--text-heading);
    line-height: 1.65;
    margin-bottom: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(23, 52, 86, 0.08);
}

.callout span {
    color: var(--color-blue);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Akcje / Przyciski w stylu moreinteractive.pl (Pomarańczowy button, płaski bez glow)
   -------------------------------------------------------------------------- */
.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.btn {
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    line-height: 17px;
    letter-spacing: 0.6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 30px;
    border-radius: 128px;
    color: #FFFFFF;
    border: 1px solid var(--color-orange);
    background-color: var(--color-orange);
    box-shadow: none;
    position: relative;
    z-index: 1;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.btn svg {
    margin-left: 12px;
    transition: transform 0.25s ease-in-out;
}

.btn:hover {
    color: #FFFFFF;
    background-color: #e28312;
    border-color: #e28312;
    box-shadow: none;
}

.btn:hover svg {
    transform: translateX(4px);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-heading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}

.contact-email:hover {
    color: var(--color-blue);
}

/* --------------------------------------------------------------------------
   Stopka
   -------------------------------------------------------------------------- */
.site-footer {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: var(--text-subtle);
}

.site-footer a {
    color: var(--text-heading);
    font-weight: 600;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--color-blue);
}

/* --------------------------------------------------------------------------
   Mobile RWD (<600px)
   -------------------------------------------------------------------------- */
@media (max-width: 599px) {
    .actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .contact-email {
        justify-content: center;
    }
}
