:root {
    --ink: #0f172a;
    --muted: #475569;
    --accent: #2563eb;
    --accent-strong: #1e3a8a;
    --border: #e2e8f0;
    --bg: rgba(255,255,255,0.9);
    --card: #ffffff;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ink);
    min-height: 100vh;
    padding: 40px 16px 64px;
    position: relative;
    background: url('../images/megaIMG/WE_Got_you.png') center 8% / cover fixed no-repeat;
    background-color: #f5f7fa;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    z-index: 0;
}
.wrapper {
    max-width: 1080px;
    margin: 12px auto 0;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
header {
    background: var(--accent);
    color: #fff;
    padding: 26px 32px 24px;
}
header h1 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 0.3px;
}
main {
    padding: 26px 30px 14px;
}
section + section {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
h2 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--ink);
}
h3 {
    margin: 16px 0 6px;
    font-size: 15px;
    color: var(--ink);
    font-weight: 600;
}
p {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.6;
}
section.intro p {
    font-size: 15px;
    color: var(--ink);
}
section.intro p:first-child {
    font-size: 16px;
}
ul {
    margin: 6px 0 12px 20px;
    color: var(--muted);
    line-height: 1.55;
}
.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 14px 0 6px;
    color: #dbeafe;
    font-size: 13px;
}
.cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    border-top: 1px solid var(--border);
    background: #f8fafc;
}
.cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    letter-spacing: 0.2px;
}
.cta .outline {
    color: var(--accent);
    border: 1px solid var(--accent);
    background: #fff;
}
.cta .solid {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}
.cta a:hover { transform: translateY(-1px); filter: brightness(1.04); }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 20px;
    background: #e0f2fe;
    color: #0c4a6e;
    font-size: 12px;
    font-weight: 600;
}
@media (max-width: 640px) {
    body { padding: 20px 12px; }
    header, main { padding: 18px 16px; }
    .cta { flex-direction: column; align-items: stretch; }
    .cta a { width: 100%; justify-content: center; }
}

/* Embedded mode styles (when loaded in iframe) */
body.embedded,
body.embedded * {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

body.embedded::-webkit-scrollbar,
body.embedded *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

body.embedded {
    padding: 0;
    background: #fff;
    min-height: auto;
    overflow-y: auto;
}

body.embedded::before {
    display: none;
}

body.embedded .wrapper {
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    overflow: visible;
}

body.embedded .wrapper::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body.embedded header {
    display: none;
}

body.embedded main {
    padding: 24px 28px 20px;
}

body.embedded .cta {
    display: none;
}

body.embedded section:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

body.embedded h2 {
    font-size: 16px;
    color: #1e3a5f;
    font-weight: 600;
}

body.embedded p {
    font-size: 14px;
    line-height: 1.65;
}

body.embedded ul {
    font-size: 14px;
}

body.embedded section + section {
    margin-top: 16px;
    padding-top: 16px;
}