/* =========================================================================
   ordepoint.org — Ortel Mobile top-up
   Style blend: editorial-zine (dominant) + sticker-collage (accents)
   Palette shifted per seed 4O2A0JWXIU from #c8141e / #ffffff / #004570
   Class prefix: .opt-
   ========================================================================= */

/* ------ Fonts ------ */
/* Serif display (editorial magazine headline) + neutral sans body + marker */
:root {
    --ff-d: "Playfair Display", "PT Serif", Georgia, serif;
    --ff-b: "Inter", "Helvetica Neue", Arial, sans-serif;
    --ff-m: "Kalam", "Caveat", "Segoe Script", cursive;

    /* Palette (shifted) */
    --p:      #d21e2a;
    --p-2:    #ad1620;
    --p-3:    #fce9ea;
    --blue:   #0a4a83;
    --blue-2: #083863;
    --ink:    #0f1a2b;
    --ink-2:  #384658;
    --ink-3:  #6a7385;
    --paper:  #faf7f2;
    --paper-2:#f0eae0;
    --paper-3:#e6dfd2;
    --line:   rgba(15, 26, 43, .14);
    --mist:   #f5f7fa;
    --danger: #b41a12;
    --danger-bg:#fde5e2;
    --ok:     #17734a;
    --ok-bg:  #dff2e6;

    --maxw: 1180px;
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 18px;
}

/* ------ Reset ------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
    margin: 0;
    font-family: var(--ff-b);
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
body.opt-lock { overflow: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--p); }
p { margin: 0 0 1em; }
h1, h2, h3, h4 {
    font-family: var(--ff-d);
    color: var(--ink);
    line-height: 1.1;
    margin: 0 0 .5em;
    font-weight: 800;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; font-family: var(--ff-b); font-weight: 700; }

.opt-sr {
    position: absolute !important; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.opt-skip {
    position: absolute; top: -60px; left: 12px; z-index: 999;
    background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-md);
    transition: top .2s;
}
.opt-skip:focus { top: 12px; color: #fff; }
:focus-visible { outline: 3px solid var(--p); outline-offset: 3px; border-radius: 3px; }

.opt-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ------ Announcement bar ------ */
.opt-annc {
    background: var(--ink);
    color: var(--paper);
    text-align: center;
    font-size: .85rem;
    padding: 10px 16px;
    letter-spacing: .02em;
}
.opt-annc a { color: var(--paper); text-decoration: underline; }
.opt-annc strong { color: var(--p-3); }

/* ------ Header (classic left logo) ------ */
.opt-hdr {
    background: transparent;
    padding: 22px 0;
    position: relative;
    z-index: 20;
}
.opt-hdr .opt-wrap { display: flex; align-items: center; gap: 24px; }
.opt-brand {
    display: inline-flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--ink);
}
.opt-brand .opt-mk {
    width: 42px; height: 42px; flex: none;
}
.opt-brand .opt-wm {
    font-family: var(--ff-d);
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: -.01em;
    line-height: 1;
}
.opt-brand .opt-wm-sub {
    display: block;
    font-family: var(--ff-b);
    font-weight: 500;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-top: 3px;
}
.opt-nav {
    display: flex; align-items: center; gap: 26px;
    margin-inline-start: auto;
    font-size: .95rem;
    font-weight: 500;
}
.opt-nav a { color: var(--ink); text-decoration: none; padding: 6px 0; position: relative; }
.opt-nav a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
    height: 2px; background: var(--p); transition: right .18s ease;
}
.opt-nav a:hover::after, .opt-nav a[aria-current="page"]::after { right: 0; }
.opt-hact { display: flex; align-items: center; gap: 10px; }
.opt-burger {
    display: none;
    background: transparent; border: 1.5px solid var(--ink); color: var(--ink);
    width: 42px; height: 42px; border-radius: var(--r-md); cursor: pointer;
    align-items: center; justify-content: center;
}
.opt-burger svg { width: 22px; height: 22px; }

/* ------ Buttons (rounded per profile facet, medium size, ripple effect via active) ------ */
.opt-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px;
    font-family: var(--ff-b); font-weight: 600; font-size: .98rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
    line-height: 1; user-select: none; white-space: nowrap;
    position: relative; overflow: hidden;
}
.opt-btn svg { width: 18px; height: 18px; flex: none; }
.opt-btn.-primary { background: var(--p); color: #fff; }
.opt-btn.-primary:hover { background: var(--p-2); color: #fff; }
.opt-btn.-ink { background: var(--ink); color: #fff; }
.opt-btn.-ink:hover { background: var(--blue); color: #fff; }
.opt-btn.-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.opt-btn.-ghost:hover { background: var(--ink); color: #fff; }
.opt-btn.-outline { background: transparent; border-color: var(--p); color: var(--p); }
.opt-btn.-outline:hover { background: var(--p); color: #fff; }
.opt-btn.-lg { padding: 16px 30px; font-size: 1.05rem; }
.opt-btn.-block { display: flex; width: 100%; justify-content: center; }
.opt-btn:active { transform: translateY(1px); }

/* ------ Drawer (CSS-driven, ESC-close, backdrop click, mobile-only) ------ */
.opt-dr {
    position: fixed; inset: 0; z-index: 100;
    visibility: hidden; opacity: 0;
    transition: opacity .28s ease, visibility 0s linear .28s;
}
.opt-dr.is-on { visibility: visible; opacity: 1; transition: opacity .28s ease; }
.opt-dr .bd {
    position: absolute; inset: 0; background: rgba(15,26,43,.55);
}
.opt-dr .pn {
    position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 92vw);
    background: var(--paper); padding: 26px 22px 26px;
    display: flex; flex-direction: column; gap: 18px;
    transform: translateX(20px); transition: transform .28s ease;
    overflow-y: auto;
    border-inline-start: 4px solid var(--p);
}
.opt-dr.is-on .pn { transform: translateX(0); }
.opt-dr .top { display: flex; align-items: center; justify-content: space-between; }
.opt-dr .cl {
    background: transparent; border: 0; padding: 8px; border-radius: 50%;
    color: var(--ink); cursor: pointer;
}
.opt-dr .cl svg { width: 22px; height: 22px; }
.opt-dr nav { display: flex; flex-direction: column; gap: 4px; }
.opt-dr nav a {
    padding: 12px 4px; color: var(--ink); text-decoration: none;
    border-block-end: 1px solid var(--line);
    font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center;
}
.opt-dr nav a::after { content: "→"; opacity: .35; font-size: .9em; }
.opt-dr .fo { margin-block-start: auto; display: grid; gap: 12px; }
.opt-dr .lg { display: flex; gap: 10px; justify-content: center; font-size: .9rem; }
.opt-dr .lg a { color: var(--ink-3); text-decoration: none; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; }
.opt-dr .lg a.is-cur { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ------ Language switch (floating, bottom-left) ------ */
.opt-lang {
    position: fixed; bottom: 20px; left: 20px; z-index: 30;
    background: var(--ink); color: #fff;
    padding: 6px; border-radius: 999px;
    box-shadow: 0 8px 24px -12px rgba(15,26,43,.4);
    display: flex; gap: 2px;
}
.opt-lang a {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 6px 12px; font-size: .8rem; font-weight: 600;
    color: rgba(255,255,255,.65); text-decoration: none; border-radius: 999px;
    letter-spacing: .05em;
}
.opt-lang a:hover { color: #fff; }
.opt-lang a.is-cur { background: var(--p); color: #fff; }

/* ------ Section container ------ */
.opt-sec { padding: 70px 0; position: relative; }
.opt-sec.-hero { padding: 40px 0 100px; }
.opt-sec.-tight { padding: 44px 0; }
.opt-sec.-alt { background: var(--paper-2); }
.opt-sec.-ink { background: var(--ink); color: var(--paper); }
.opt-sec.-ink h1, .opt-sec.-ink h2, .opt-sec.-ink h3 { color: var(--paper); }

/* Editorial eyebrow labels */
.opt-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--ff-b); font-size: .74rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--p);
}
.opt-eyebrow::before {
    content: ""; width: 28px; height: 2px; background: currentColor;
}

/* ------ Hero (dual-cta, no image, question headline, split color) ------ */
.opt-hero {
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center;
    padding-block-start: 20px;
}
.opt-hero .col-left { position: relative; }
.opt-hero h1 { margin-block-start: 20px; }
.opt-hero h1 em {
    font-style: italic;
    color: var(--p);
    font-family: var(--ff-d);
}
.opt-hero .lede {
    font-size: 1.15rem;
    color: var(--ink-2);
    max-width: 52ch;
    margin: 20px 0 26px;
    line-height: 1.55;
}
.opt-hero .ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.opt-hero .ctas .opt-tlink {
    font-size: .92rem; color: var(--ink-2); font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
}
.opt-hero .ctas .opt-tlink:hover { color: var(--p); }

/* Right column — sticker-collage: 4 overlapping cards */
.opt-hero-visual {
    position: relative; min-height: 460px;
}
.opt-hero-visual .st {
    position: absolute; background: #fff;
    padding: 18px 20px;
    box-shadow: 0 20px 40px -20px rgba(15,26,43,.25), 0 4px 8px -4px rgba(15,26,43,.15);
    border: 1px solid var(--line);
}
.opt-hero-visual .st.-a {
    top: 0; left: 0; width: 60%;
    transform: rotate(-3.5deg);
    background: var(--paper);
}
.opt-hero-visual .st.-b {
    top: 20%; right: 0; width: 62%;
    transform: rotate(2.2deg);
    background: var(--p); color: #fff;
    border-color: var(--p);
}
.opt-hero-visual .st.-c {
    bottom: 8%; left: 8%; width: 52%;
    transform: rotate(-1.5deg);
    background: var(--blue); color: #fff;
    border-color: var(--blue);
}
.opt-hero-visual .st.-d {
    bottom: 0; right: 12%; width: 40%;
    transform: rotate(4deg);
    background: var(--ink); color: var(--paper);
    border-color: var(--ink);
    padding: 12px 16px;
    font-family: var(--ff-m);
    font-size: 1.2rem;
    text-align: center;
}
.opt-hero-visual .st .num-lbl {
    font-family: var(--ff-b);
    font-size: .7rem; text-transform: uppercase; letter-spacing: .18em;
    opacity: .7; margin-block-end: 6px;
}
.opt-hero-visual .st .num {
    font-family: var(--ff-d);
    font-size: 1.7rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.02em;
}
.opt-hero-visual .tape {
    position: absolute; top: -14px; left: 40%;
    width: 60px; height: 22px;
    background: rgba(210, 30, 42, .35);
    transform: rotate(-10deg);
    border: 1px dashed rgba(255,255,255,.4);
}

/* Trust strip (neutral chips, NOT press quotes — §3a) */
.opt-strip {
    background: var(--ink); color: var(--paper);
    padding: 14px 0;
    overflow: hidden;
    border-block: 1px solid var(--ink);
}
.opt-strip .track {
    display: flex; gap: 34px; align-items: center; flex-wrap: wrap; justify-content: center;
    font-family: var(--ff-b); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--paper);
}
.opt-strip .track span { display: inline-flex; align-items: center; gap: 8px; }
.opt-strip .track svg { width: 15px; height: 15px; }
.opt-strip .track .sep { color: var(--p); }

/* ------ Section head ------ */
.opt-head { max-width: 780px; }
.opt-head .opt-eyebrow { margin-block-end: 14px; }
.opt-head h2 { margin: 0 0 18px; }
.opt-head .sub { color: var(--ink-2); font-size: 1.08rem; max-width: 68ch; }

/* ------ Newspaper grid (editorial columns) ------ */
.opt-grid { display: grid; gap: 28px; }
.opt-g2 { grid-template-columns: repeat(2, 1fr); }
.opt-g3 { grid-template-columns: repeat(3, 1fr); }
.opt-g4 { grid-template-columns: repeat(4, 1fr); }
.opt-mag { grid-template-columns: 1.4fr 1fr; gap: 40px; }
@media (max-width: 940px) {
    .opt-g3, .opt-g4 { grid-template-columns: repeat(2, 1fr); }
    .opt-mag { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .opt-g2, .opt-g3, .opt-g4 { grid-template-columns: 1fr; }
}

/* ------ Editorial pull-quote ------ */
.opt-pull {
    font-family: var(--ff-d);
    font-style: italic;
    font-size: clamp(1.5rem, 3.2vw, 2.15rem);
    line-height: 1.25;
    color: var(--ink);
    border-inline-start: 4px solid var(--p);
    padding: 8px 0 8px 24px;
    max-width: 60ch;
}
.opt-pull .attr {
    display: block;
    margin-block-start: 14px;
    font-family: var(--ff-b);
    font-style: normal;
    font-size: .82rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-3);
}

/* Dropcap for editorial intro paragraphs */
.opt-drop::first-letter {
    font-family: var(--ff-d);
    font-weight: 900;
    float: inline-start;
    font-size: 4.4rem;
    line-height: .9;
    padding-inline-end: 12px;
    padding-block-start: 6px;
    color: var(--p);
}

/* ------ Feature "tile" (editorial card, no shadow per facet=none) ------ */
.opt-tile {
    padding: 26px; background: #fff;
    border: 1px solid var(--line);
    position: relative;
}
.opt-tile .num {
    font-family: var(--ff-d); font-weight: 900; font-size: 2.2rem;
    color: var(--p); line-height: 1; margin-block-end: 12px;
}
.opt-tile h3 { margin: 0 0 8px; }
.opt-tile p { margin: 0; color: var(--ink-2); font-size: .96rem; }
.opt-tile.-tilt-l { transform: rotate(-.6deg); }
.opt-tile.-tilt-r { transform: rotate(.5deg); }

/* Sticker-tag (accent from sticker-collage) */
.opt-stick {
    display: inline-block; padding: 4px 10px 6px;
    background: var(--p); color: #fff;
    font-family: var(--ff-m); font-size: 1rem;
    transform: rotate(-2deg);
    position: relative; top: -4px;
}
.opt-stick.-blue { background: var(--blue); }
.opt-stick.-ink { background: var(--ink); }

/* ------ Steps ------ */
.opt-steps { counter-reset: opt; list-style: none; padding: 0; margin: 0; display: grid; gap: 24px; }
.opt-steps > li {
    counter-increment: opt;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    background: #fff;
    position: relative;
}
.opt-steps > li::before {
    content: counter(opt, decimal-leading-zero);
    font-family: var(--ff-d); font-weight: 900;
    font-size: 2.6rem; line-height: 1;
    color: var(--p);
    font-variant-numeric: tabular-nums;
}
.opt-steps > li h3 { margin: 0 0 6px; }
.opt-steps > li p { margin: 0; color: var(--ink-2); }

/* ------ Torn-paper divider ------ */
.opt-torn {
    height: 22px; margin: 40px 0 12px;
    background: transparent;
    position: relative;
}
.opt-torn::before {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, transparent 46%, var(--paper-3) 46% 54%, transparent 54%) 0 0 / 14px 14px;
    opacity: .55;
}

/* ------ Form styling ------ */
.opt-form { display: grid; gap: 20px; }
.opt-field { display: grid; gap: 6px; }
.opt-field > label {
    font-weight: 600; color: var(--ink);
    font-size: .95rem;
}
.opt-field .hint { font-size: .82rem; color: var(--ink-3); }
.opt-field .err { font-size: .84rem; color: var(--danger); font-weight: 600; display: none; }
.opt-field.-bad .err { display: block; }
.opt-field.-bad input,
.opt-field.-bad select,
.opt-field.-bad textarea { border-color: var(--danger); background: var(--danger-bg); }
.opt-field input,
.opt-field select,
.opt-field textarea {
    font: inherit;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    background: #fff;
    color: var(--ink);
    transition: border-color .12s ease, background .12s ease;
    width: 100%;
}
.opt-field input:focus,
.opt-field select:focus,
.opt-field textarea:focus {
    outline: none; border-color: var(--ink);
}
.opt-field textarea { min-height: 120px; resize: vertical; }
.opt-row2 { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .opt-row2 { grid-template-columns: 1fr; } }

/* Amount chips (preset_plus_input) */
.opt-amt {
    display: flex; flex-wrap: wrap; gap: 10px;
}
.opt-amt label {
    position: relative;
    min-width: 82px; min-height: 52px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 18px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-weight: 700; font-family: var(--ff-d); font-size: 1.15rem;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all .12s ease;
    letter-spacing: -.02em;
}
.opt-amt label:hover { border-color: var(--ink); }
.opt-amt input[type="radio"] {
    position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer;
}
.opt-amt label.is-on {
    background: var(--ink); color: #fff; border-color: var(--ink);
}
.opt-amt label.is-on::after {
    content: "✓"; margin-inline-start: 6px; color: var(--p-3); font-size: .85em;
}
.opt-amt .cust {
    display: inline-flex; align-items: stretch;
    min-height: 52px;
    border: 1.5px dashed var(--line);
    border-radius: var(--r-md);
    background: #fff; overflow: hidden;
}
.opt-amt .cust > span {
    display: inline-flex; align-items: center; padding: 0 12px 0 14px;
    font-family: var(--ff-b); font-size: .82rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em;
    border-inline-end: 1px solid var(--line); background: var(--mist);
}
.opt-amt .cust > input {
    width: 96px; border: 0; padding: 0 14px;
    background: transparent; font-weight: 700; font-family: var(--ff-d); font-size: 1.1rem;
    text-align: center;
}
.opt-amt .cust > input:focus { outline: none; }

/* ------ FAQ (native details/summary, editorial style) ------ */
.opt-faq details {
    padding: 20px 0;
    border-block-end: 1px solid var(--line);
}
.opt-faq details:first-child { border-block-start: 1px solid var(--line); }
.opt-faq summary {
    cursor: pointer; list-style: none;
    font-family: var(--ff-d);
    font-weight: 700; font-size: 1.15rem;
    color: var(--ink);
    display: flex; gap: 16px; align-items: center;
    padding-inline-end: 8px;
}
.opt-faq summary::-webkit-details-marker { display: none; }
.opt-faq summary::after {
    content: "+"; margin-inline-start: auto;
    font-family: var(--ff-d); font-weight: 700; font-size: 1.7rem;
    color: var(--p); line-height: 1;
    transition: transform .2s ease;
}
.opt-faq details[open] summary::after { content: "−"; }
.opt-faq .a {
    padding: 14px 0 0 0;
    color: var(--ink-2);
    max-width: 70ch;
}

/* ------ Table (glossary / status) ------ */
.opt-table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.opt-table th, .opt-table td {
    text-align: start; padding: 14px 16px;
    border-block-end: 1px solid var(--line);
    vertical-align: top;
}
.opt-table th {
    background: var(--paper-2);
    font-family: var(--ff-b); font-weight: 700;
    color: var(--ink); font-size: .78rem;
    text-transform: uppercase; letter-spacing: .12em;
}
.opt-table td strong { color: var(--ink); }
.opt-table .st-ok { color: var(--ok); font-weight: 700; }
.opt-table .st-bad { color: var(--danger); font-weight: 700; }

/* ------ Breadcrumbs (schema_only shown as inline) ------ */
.opt-crumbs { font-size: .84rem; color: var(--ink-3); margin: 18px 0 6px; }
.opt-crumbs a { color: var(--ink-3); text-decoration: none; }
.opt-crumbs a:hover { color: var(--p); }
.opt-crumbs span { color: var(--line); margin: 0 6px; }

/* ------ Modal (fullscreen — profile facet) ------ */
.opt-mdl {
    position: fixed; inset: 0; z-index: 200;
    display: none; align-items: center; justify-content: center;
    background: rgba(15,26,43,.85);
    padding: 20px;
}
.opt-mdl.is-on { display: flex; }
.opt-mdl .body {
    background: var(--paper);
    max-width: 520px; width: 100%;
    padding: 46px 34px;
    text-align: center;
    position: relative;
    border-block-start: 6px solid var(--p);
}
.opt-mdl .close {
    position: absolute; top: 12px; right: 12px;
    background: transparent; border: 0; cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%; color: var(--ink);
}
.opt-mdl .close:hover { background: var(--paper-2); }
.opt-mdl .ic {
    width: 80px; height: 80px; margin: 0 auto 20px;
    border-radius: 50%; background: var(--p-3); color: var(--p);
    display: grid; place-items: center;
}
.opt-mdl .ic svg { width: 40px; height: 40px; }
.opt-mdl h3 { margin: 0 0 12px; font-size: 1.7rem; }
.opt-mdl p { color: var(--ink-2); max-width: 42ch; margin: 0 auto 22px; }

/* ------ Cookie banner (simple) ------ */
.opt-cb {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: var(--ink); color: var(--paper); z-index: 40;
    padding: 14px 20px; border-radius: var(--r-md);
    display: none;
    max-width: 640px; width: calc(100% - 40px);
    align-items: center; justify-content: space-between;
    gap: 14px; font-size: .88rem;
    box-shadow: 0 20px 60px -20px rgba(0,0,0,.4);
}
.opt-cb.is-on { display: flex; }
.opt-cb a { color: var(--paper); text-decoration: underline; }
.opt-cb button {
    background: var(--p); color: #fff; border: 0;
    padding: 10px 18px; border-radius: 999px; cursor: pointer;
    font-weight: 600; font-family: var(--ff-b);
    flex: none;
}
@media (max-width: 560px) { .opt-cb { flex-direction: column; text-align: center; } }

/* ------ Footer (5 columns) ------ */
.opt-ftr {
    background: var(--ink); color: var(--paper);
    padding: 60px 0 24px;
    margin-block-start: 60px;
}
.opt-ftr .cols {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}
@media (max-width: 920px) { .opt-ftr .cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .opt-ftr .cols { grid-template-columns: 1fr; } }
.opt-ftr h4 {
    color: var(--paper); margin: 0 0 14px;
    font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
    font-family: var(--ff-b);
}
.opt-ftr ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: .93rem; }
.opt-ftr a { color: rgba(250,247,242,.75); text-decoration: none; }
.opt-ftr a:hover { color: var(--paper); text-decoration: underline; }
.opt-ftr .brand p {
    color: rgba(250,247,242,.7); font-size: .9rem; margin: 12px 0 16px;
    max-width: 34ch;
}
.opt-ftr .brand .opt-brand .opt-wm { color: var(--paper); }
.opt-ftr .brand .opt-brand .opt-wm-sub { color: rgba(250,247,242,.55); }
.opt-ftr .contact li { color: rgba(250,247,242,.75); }
.opt-ftr .news form {
    display: flex; gap: 6px; margin-block-start: 12px;
}
.opt-ftr .news input {
    flex: 1; padding: 10px 12px; border: 1px solid rgba(250,247,242,.25);
    background: transparent; color: var(--paper); font: inherit;
    border-radius: var(--r-md); font-size: .9rem;
}
.opt-ftr .news input::placeholder { color: rgba(250,247,242,.4); }
.opt-ftr .news button {
    background: var(--p); color: #fff; border: 0; padding: 10px 16px;
    border-radius: var(--r-md); cursor: pointer; font: inherit; font-weight: 600;
}
.opt-ftr .btm {
    margin-block-start: 42px; padding-block-start: 22px;
    border-block-start: 1px solid rgba(250,247,242,.15);
    display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center;
    font-size: .8rem; color: rgba(250,247,242,.55);
}
.opt-ftr .trust {
    display: inline-flex; gap: 20px; align-items: center;
}
.opt-ftr .trust span {
    display: inline-flex; align-items: center; gap: 6px;
}
.opt-ftr .trust svg { width: 14px; height: 14px; opacity: .65; }
.opt-ftr .visitors {
    font-family: var(--ff-m); color: var(--p-3); font-size: 1rem;
}

/* ------ Overlay (redirect spinner) ------ */
.opt-ov {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(250,247,242,.85);
    display: none; align-items: center; justify-content: center;
}
.opt-ov.is-on { display: flex; }
.opt-sp {
    width: 42px; height: 42px; border-radius: 50%;
    border: 3px solid var(--paper-3); border-top-color: var(--p);
    animation: opt-spin .8s linear infinite;
}
@keyframes opt-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    .opt-sp { animation: none; }
}

/* Back to top */
.opt-top {
    position: fixed; bottom: 20px; right: 20px; z-index: 30;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--ink); color: #fff;
    border: 0; cursor: pointer;
    display: grid; place-items: center;
    opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.opt-top.is-on { opacity: 1; pointer-events: auto; }
.opt-top svg { width: 20px; height: 20px; }

/* ------ Balance / status card, info cards ------ */
.opt-card {
    background: #fff; padding: 26px;
    border: 1px solid var(--line);
    position: relative;
}
.opt-card h3 { margin: 0 0 10px; }
.opt-card .kv { display: grid; grid-template-columns: auto 1fr; gap: 8px 22px; font-size: .95rem; }
.opt-card .kv dt { color: var(--ink-3); font-weight: 600; }
.opt-card .kv dd { margin: 0; }

/* Callout — plain ink block, editorial */
.opt-callout {
    background: var(--ink); color: var(--paper);
    padding: 38px;
    display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.opt-callout h3 { color: var(--paper); font-size: 1.6rem; margin: 0; }
.opt-callout p { color: rgba(250,247,242,.75); margin: 8px 0 0; }
@media (max-width: 620px) { .opt-callout { grid-template-columns: 1fr; } }

/* Numbered stats */
.opt-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.opt-stats .st {
    text-align: start; padding: 18px 0;
    border-block-start: 3px solid var(--ink);
}
.opt-stats .st .n {
    font-family: var(--ff-d); font-weight: 900; font-size: 2.4rem;
    color: var(--p); line-height: 1;
}
.opt-stats .st .lb { display: block; margin-block-start: 8px; font-size: .84rem; color: var(--ink-3); letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 760px) { .opt-stats { grid-template-columns: repeat(2, 1fr); } }

/* ------ Print media reset ------ */
@media print {
    .opt-hdr, .opt-ftr, .opt-lang, .opt-top, .opt-cb, .opt-annc { display: none; }
    body { background: #fff; color: #000; }
}

/* ------ Responsive main ------ */
@media (max-width: 940px) {
    .opt-nav { display: none; }
    .opt-burger { display: inline-flex; }
    .opt-hero { grid-template-columns: 1fr; gap: 40px; }
    .opt-hero-visual { min-height: 360px; }
}
@media (max-width: 620px) {
    .opt-sec { padding: 50px 0; }
    .opt-sec.-hero { padding: 20px 0 60px; }
    .opt-hero-visual { min-height: 320px; }
    .opt-hero-visual .st.-a { width: 68%; }
    .opt-hero-visual .st.-b { width: 68%; }
    .opt-hero-visual .st.-c { width: 60%; left: 4%; }
    .opt-hero-visual .st.-d { width: 46%; right: 6%; }
    .opt-callout { padding: 26px; }
    .opt-ftr { padding: 40px 0 20px; }
    .opt-lang { bottom: 12px; left: 12px; }
    .opt-top { bottom: 76px; right: 12px; }
}

/* Utility */
.opt-mt-xs { margin-block-start: 8px; }
.opt-mt-sm { margin-block-start: 16px; }
.opt-mt-md { margin-block-start: 26px; }
.opt-mt-lg { margin-block-start: 44px; }
.opt-mt-xl { margin-block-start: 70px; }
.opt-txt-c { text-align: center; }
.opt-narrow { max-width: 720px; margin: 0 auto; }
