:root {
    --navy: #1b2a4a;
    --teal: #1a6b5a;
    --teal-light: #e6f2ef;
    --lime: #c8d535;
    --ink: #2c3040;
    --ink-light: #6b7280;
    --white: #fff;
    --off-white: #fafafa;
    --rule: #e5e7eb;
    --bg: #0D1B2E;
    --border: rgba(134, 149, 165, 0.2);
    --border-focus: rgba(200, 213, 53, 0.55);
    --accent: #C8D535;
    --text-muted: #8695A5;
    --text-label: #B0BEC5;
    --input-bg: rgba(255, 255, 255, 0.04);
    --radius-sm: 6px;
    --radius-md: 10px;
    --red: #c0392b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 600;
    color: var(--navy);
}

a {
    color: var(--teal);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    display: block;
    max-width: 100%;
}

/* Nav */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.ni {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nl img {
    height: 50px;
}

.nr {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nk {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-light);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nk:hover {
    color: var(--navy);
    text-decoration: none;
}

.btn-nav {
    display: inline-block;
    background: var(--navy);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.btn-nav:hover {
    background: var(--teal);
    transform: translateY(-1px);
    text-decoration: none;
}

/* Hero */
.hero {
    padding: 80px 24px 48px;
    text-align: center;
}

.hero-logo {
    margin: 0 auto 28px;
    max-width: 280px;
}

.hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--ink-light);
    max-width: 520px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.hd {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hdi {
    font-size: 14px;
    color: var(--ink);
    font-weight: 600;
}

.hdi span {
    color: var(--ink-light);
    font-weight: 400;
    margin-right: 4px;
}

/* SEB Banner */
.seb-banner {
    background: var(--lime);
    color: var(--navy);
    text-align: center;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
}

/* Pricing */
.pricing {
    padding: 56px 24px;
}

.pricing-inner {
    max-width: 960px;
    margin: 0 auto;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 36px;
}

.pricing-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.price-card {
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: var(--radius-md);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.2s;
}

.price-card:hover {
    box-shadow: 0 8px 24px rgba(27, 42, 74, 0.08);
}

.red-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 4px;
    white-space: nowrap;
}

.card-type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: 4px;
}

.price-card h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.card-strap {
    font-size: 13px;
    color: var(--ink-light);
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.5;
}

.seb-price {
    font-family: 'Source Serif 4', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.seb-vat {
    font-size: 13px;
    color: var(--ink-light);
    font-weight: 400;
}

.seb-note {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    margin: 4px 0 2px;
}

.list-price {
    font-size: 13px;
    color: var(--ink-light);
    margin-bottom: 6px;
}

.list-price .strike {
    text-decoration: line-through;
}

.saving-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 4px;
    margin-bottom: 20px;
}

.features {
    flex: 1;
}

.feature-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--ink);
    line-height: 1.5;
}

.feature-item a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.check::after {
    content: '\2713';
    font-size: 10px;
    color: var(--teal);
    font-weight: 700;
}

.ft {
    flex: 1;
}

/* Qualifier */
.qualifier {
    background: var(--off-white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 40px 24px;
}

.qualifier-inner {
    max-width: 720px;
    margin: 0 auto;
}

.qualifier-inner h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.qualifier-inner p {
    color: var(--ink-light);
    font-size: 15px;
}

.qualifier-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.qualifier-tag {
    font-size: 13px;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-weight: 500;
}

/* Form section (dark) */
.form-section {
    background: var(--bg);
    padding: 64px 24px;
}

.form-inner {
    max-width: 580px;
    margin: 0 auto;
}

.form-inner>h2 {
    font-size: 1.8rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 8px;
}

.form-intro {
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Gateway */
.gateway {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.gateway-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.55;
    margin-bottom: 14px;
}

.gateway-label .req {
    color: var(--accent);
}

.radio-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    padding: 10px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    transition: 0.2s;
}

.radio-option:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.radio-option.active {
    border-color: var(--accent);
    background: rgba(200, 213, 53, 0.06);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    transform: scale(0);
    transition: 0.15s;
}

.radio-option.active .radio-custom::after {
    transform: scale(1);
}

.radio-label {
    font-size: 13px;
    color: #fff;
}

/* Conditional sections */
.cond {
    margin-top: 16px;
}

.cond.hidden {
    display: none;
}

/* Rate message - always visible when parent section shows */
.rate-msg {
    margin-bottom: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

/* Confirm box */
.confirm-box {
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(200, 213, 53, 0.08);
    border: 1px solid rgba(200, 213, 53, 0.25);
    border-radius: 6px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

.confirm-box.hidden {
    display: none;
}

/* Recategorisation */
.recat {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* Form fields */
.fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-label);
}

.field label .req {
    color: var(--accent);
}

.field label a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 12px 15px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(134, 149, 165, 0.45);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--border-focus);
    background: rgba(200, 213, 53, 0.03);
    box-shadow: 0 0 0 3px rgba(200, 213, 53, 0.09);
}

.field textarea {
    resize: vertical;
    min-height: 80px;
}

.field select {
    cursor: pointer;
    padding-right: 38px;
    color: #fff;
}

.field select option {
    background: #1a2d45;
    color: #fff;
}

.select-wrap {
    position: relative;
}

.select-wrap select {
    width: 100%;
}

.select-wrap::after {
    content: '';
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-muted);
    pointer-events: none;
}

/* Ticket cards in form */
.ticket-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.ticket-options.single-col {
    grid-template-columns: 1fr;
    max-width: 300px;
}

.ticket-opt {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}

.ticket-opt:hover {
    border-color: rgba(200, 213, 53, 0.35);
    background: rgba(200, 213, 53, 0.02);
}

.ticket-opt.sel {
    border-color: var(--accent);
    background: rgba(200, 213, 53, 0.05);
    box-shadow: 0 0 0 3px rgba(200, 213, 53, 0.12);
}

.ticket-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.to-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.to-check::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    transform: scale(0);
    transition: transform 0.15s;
}

.ticket-opt.sel .to-check {
    border-color: var(--accent);
}

.ticket-opt.sel .to-check::after {
    transform: scale(1);
}

.to-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 2px;
}

.to-name {
    font-family: 'Source Serif 4', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.to-price {
    font-family: 'Source Serif 4', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.to-vat {
    font-size: 11px;
    color: var(--text-muted);
}

.to-list {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.to-list .strike {
    text-decoration: line-through;
}

.to-save {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    background: rgba(26, 107, 90, 0.2);
    color: #6ee7b7;
    border-radius: 3px;
    margin-top: 6px;
}

.to-features {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.to-feat {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 4px;
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.to-feat::before {
    content: '\2713';
    color: var(--accent);
    font-weight: 700;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}

.to-feat a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 8px 0;
}

.submit-btn {
    display: block;
    width: 100%;
    background: transparent;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
    border: 1.5px solid #fff;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.form-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

.form-note a {
    color: var(--accent);
}

/* Footer */
.foot-logos {
    padding: 40px 24px;
    border-top: 1px solid var(--rule);
    text-align: center;
}

.foot-logos .fl-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.foot-logos img {
    height: 36px;
    margin: 0 auto;
    opacity: 0.7;
}

footer {
    padding: 20px 24px;
    text-align: center;
    border-top: 1px solid var(--rule);
    font-size: 13px;
    color: var(--ink-light);
}

footer a {
    color: var(--ink-light);
}

.sponsors {
    background: var(--off-white);
    padding: 36px 24px;
    border-top: 1px solid var(--rule);
}
.spb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.sp-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sp-logo {
    height: 38px;
    width: auto;
}
.sp-it {
    max-width: 130px;
    height: auto;
}
.sp-lbl {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-light);
    white-space: nowrap;
}
.sp-div {
    width: 1px;
    height: 28px;
    background: var(--rule);
}
footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}
footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}
footer {
    background: var(--navy);
    padding: 20px 24px;
    text-align: center;
}

.back-container {
    background-color: #F9F8F8;
    position: fixed;
    width: 100%;
    z-index: 9;
}

.back-container .back-inner {
    max-width: 960px;
    padding: 12px 24px;
    margin: 0 auto;
}

.back-container a {
    font-size: 13px;
    color: var(--navy);
    font-weight: 500;
    text-decoration: none;
}

.back-container a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .ticket-options {
        grid-template-columns: 1fr;
    }

    .row-2 {
        grid-template-columns: 1fr;
    }

    .hd {
        flex-direction: column;
        gap: 8px;
    }

    .radio-options {
        flex-direction: column;
    }
}