:root {
    --cyan: #00ABCE;        /* Pantone 632c – Printec primary blue */
    --cyan-dark: #0077C0;   /* Pantone 285c – Printec secondary blue (hover/active) */
    --gray: #58585B;        /* Pantone Cool Gray 11c – Printec corporate gray */
    --gray-light: #939597;  /* Pantone Cool Gray 8c – Printec corporate gray */
    --ink: #1f2628;
    --muted: #58585B;
    --line: #e6eaec;
    --bg: #ffffff;
    --bg-soft: #eef7fa;
    --radius: 14px;
    --shadow: 0 10px 40px rgba(20, 40, 50, 0.08);
    --shadow-lg: 0 24px 70px rgba(20, 40, 50, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
    margin: 0;
    font-family: 'PF Premier Text', 'Segoe UI', Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: 4px;
}

.container { width: min(1140px, 92%); margin: 0 auto; }

/* Utilities */
.muted { color: var(--muted); }
.mt-2 { margin-top: .8rem; }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

h1, h2, h3, h4 { line-height: 1.15; color: var(--ink); margin: 0 0 .5em; }
h2.section__title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; }
.section__lead { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto 2.5rem; text-align: center; }
.section { padding: 5rem 0; }
.section--soft { background: var(--bg-soft); }
.eyebrow { color: var(--cyan); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    border: 0; cursor: pointer; font-weight: 600; font-size: 1rem;
    padding: .85rem 1.6rem; border-radius: 999px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    font-family: inherit; text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(0,172,206,.35); }
.btn--primary {
    background: linear-gradient(180deg, #15b9d9, var(--cyan));
    color: #fff; box-shadow: 0 6px 18px rgba(0,172,206,.30);
}
.btn--primary:hover { background: linear-gradient(180deg, var(--cyan), var(--cyan-dark)); color: #fff; box-shadow: 0 10px 26px rgba(0,172,206,.40); }
.btn--dark { background: var(--gray); color: #fff; }
.btn--dark:hover { background: #4f5052; color: #fff; }
.btn--danger { background: #d6334c; color: #fff; box-shadow: 0 6px 18px rgba(214,51,76,.30); }
.btn--danger:hover { background: #bd2a41; color: #fff; box-shadow: 0 10px 26px rgba(214,51,76,.40); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid #c4ccd0; }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan-dark); background: rgba(0,171,206,.07); }
/* Ghost button on dark surfaces (e.g. CTA band) – keep it readable */
.btn--ghost--on-dark, .cta-band .btn--ghost {
    color: #fff; border-color: rgba(255,255,255,.6);
}
.btn--ghost--on-dark:hover, .cta-band .btn--ghost:hover {
    color: #fff; border-color: #fff; background: rgba(255,255,255,.14);
}
.btn--sm { padding: .55rem 1.15rem; font-size: .9rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; position: relative; }
.header__logo { display: flex; }
.header__nav { display: flex; align-items: center; gap: 1.8rem; }
.header__nav a:not(.btn) {
    color: var(--ink); font-weight: 600; position: relative; padding: .35rem 0;
}
.header__nav a:not(.btn)::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
    background: var(--cyan); transform: scaleX(0); transform-origin: left;
    transition: transform .2s ease;
}
.header__nav a:not(.btn):hover { color: var(--cyan-dark); text-decoration: none; }
.header__nav a:not(.btn):hover::after { transform: scaleX(1); }

/* Mobile nav toggle (hamburger) – hidden on desktop */
.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; margin: -10px -8px -10px 0;
    background: none; border: 0; cursor: pointer;
}
.nav-toggle span {
    display: block; height: 2px; width: 100%; border-radius: 2px;
    background: var(--ink); transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
    position: relative; overflow: hidden;
    background: radial-gradient(1200px 500px at 80% -10%, rgba(0,172,206,.16), transparent 60%),
                linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    padding: 5rem 0 4rem;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero__badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(0,172,206,.10); border: 1px solid rgba(0,172,206,.30);
    color: var(--cyan-dark); font-weight: 600; font-size: .85rem;
    padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1rem;
}
.hero__badge::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--cyan); animation: pulse 2s infinite;
}
@@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.7); }
}
.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--cyan); }
.hero p.lead { font-size: 1.2rem; color: var(--gray); margin: 1.2rem 0 2rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__link {
    display: inline-flex; align-items: center; gap: .4rem;
    margin-top: 1.1rem; font-weight: 600; font-size: 1rem;
    color: var(--cyan-dark); text-decoration: none;
}
.hero__link span { transition: transform .18s ease; }
.hero__link:hover { color: var(--cyan); text-decoration: none; }
.hero__link:hover span { transform: translateX(4px); }
.hero__trust { display: flex; gap: 1.8rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__trust .stat strong { display: block; font-size: 1.7rem; color: var(--ink); font-weight: 800; }
.hero__trust .stat span { color: var(--muted); font-size: .9rem; }

.hero__card {
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 1.6rem; border: 1px solid var(--line);
}

/* Feature cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.8rem; box-shadow: var(--shadow); transition: .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon {
    width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
    background: rgba(0,172,206,.12); color: var(--cyan-dark); margin-bottom: 1rem;
    font-size: 1.5rem;
}
.card h3 { font-size: 1.2rem; }
.card p { color: var(--muted); margin: 0; }

/* Co-branding / Preporučeno od */
.cobrand { padding: 3rem 0; border-bottom: 1px solid var(--line); background: var(--bg); }
.cobrand__eyebrow { text-align: center; }
.cobrand__title {
    text-align: center; font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 800;
    margin: .4rem 0 2rem; color: var(--ink);
}
.cobrand__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
    max-width: 920px; margin: 0 auto;
}
.cobrand__item {
    display: flex; align-items: center; gap: 1rem;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.3rem 1.5rem; box-shadow: var(--shadow);
    text-decoration: none; color: var(--ink);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.cobrand__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--cyan); }
.cobrand__logo {
    width: 64px; height: 64px; object-fit: contain; flex: 0 0 auto;
}
.cobrand__mark {
    width: 64px; height: 64px; flex: 0 0 auto; border-radius: 12px;
    display: grid; place-items: center; font-weight: 800; font-size: 1.3rem;
    letter-spacing: .02em; color: var(--cyan-dark);
    background: linear-gradient(135deg, rgba(0,172,206,.16), rgba(0,119,192,.16));
    border: 1px solid rgba(0,172,206,.25);
}
.cobrand__name { font-weight: 700; font-size: 1.02rem; line-height: 1.25; }

/* Solutions */
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.solution-card {
    background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
    padding: 1.8rem; box-shadow: var(--shadow); transition: .2s ease;
}
.solution-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.solution-card h3 { font-size: 1.25rem; margin-top: .2rem; }
.solution-card p { color: var(--muted); margin: 0; }
.solution-card .check-list { margin-top: 1rem; }
.solution-card--featured {
    grid-column: span 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
    background: linear-gradient(135deg, var(--gray), #4a4b4d);
    border-color: transparent;
}
.solution-card--featured:hover { border-color: transparent; transform: none; box-shadow: var(--shadow-lg); }
.solution-card--featured h3 { color: #fff; font-size: 1.6rem; }
.solution-card--featured p { color: rgba(255,255,255,.82); }
.solution-card--featured .check-list li { color: rgba(255,255,255,.85); }
.solution-card--featured .check-list li::before { color: #fff; }
.solution-tag {
    display: inline-block; font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    padding: .3rem .7rem; border-radius: 999px; margin-bottom: .8rem;
}
.solution-tag--blue { background: rgba(0,172,206,.12); color: var(--cyan-dark); }
.solution-tag--gray { background: rgba(99,100,102,.12); color: var(--gray); }
.solution-tag--light { background: rgba(255,255,255,.16); color: #fff; }

@media (max-width: 900px) {
    .solutions-grid { grid-template-columns: 1fr; }
    .solution-card--featured { grid-column: span 1; grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.4rem; }
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { text-align: center; }
.step .num {
    width: 44px; height: 44px; border-radius: 50%; background: var(--gray); color: #fff;
    display: grid; place-items: center; font-weight: 700; margin: 0 auto 1rem;
}
.step h4 { margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* Webinars */
.webinar-card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.webinar-card__date {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark)); color: #fff;
    padding: 1rem 1.4rem; display: flex; align-items: baseline; gap: .6rem;
}
.webinar-card__date .day { font-size: 2rem; font-weight: 800; line-height: 1; }
.webinar-card__body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.webinar-card__body h3 { font-size: 1.12rem; }
.webinar-card__meta { color: var(--muted); font-size: .9rem; margin-bottom: .6rem; }
.webinar-card__body p { color: var(--muted); font-size: .95rem; flex: 1; }

.section__subtitle { font-size: 1.35rem; font-weight: 700; margin-bottom: 1.5rem; }
.webinar-card--past { opacity: .82; }
.webinar-card--past .webinar-card__date {
    background: linear-gradient(135deg, #94a3b8, #64748b);
}

/* Generic forms */
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .92rem; }
.field input, .field textarea, .field select {
    width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 10px;
    font-family: inherit; font-size: 1rem; background: #fff; transition: .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,172,206,.15);
}
.field-validation-error, .validation-summary-errors { color: #d6334c; font-size: .85rem; }
.text-danger { color: #d6334c; }

/* Conversational wizard */
.wizard {
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    box-shadow: var(--shadow-lg); padding: 2rem; max-width: 720px; margin: 0 auto;
}
.wizard__progress { height: 6px; background: var(--line); border-radius: 999px; margin-bottom: 1.8rem; overflow: hidden; }
.wizard__progress i { display: block; height: 100%; background: var(--cyan); width: 33%; transition: width .35s ease; }
.wizard__step { display: none; animation: fadeIn .35s ease; }
.wizard__step.is-active { display: block; }
.wizard__q { font-size: 1.4rem; font-weight: 700; margin-bottom: .4rem; }
.wizard__hint { color: var(--muted); margin-bottom: 1.5rem; }

.tier-options { display: grid; gap: 1rem; }
.tier-option {
    display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; cursor: pointer;
    border: 2px solid var(--line); border-radius: 14px; transition: .18s ease; background: #fff;
    text-align: left; width: 100%; font-family: inherit;
}
.tier-option:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: var(--shadow); }
.tier-option.is-selected { border-color: var(--cyan); background: rgba(0,172,206,.06); }
.tier-option .t-ico { font-size: 1.8rem; }
.tier-option .t-main { flex: 1; }
.tier-option .t-main strong { display: block; font-size: 1.1rem; }
.tier-option .t-main span { color: var(--muted); font-size: .9rem; }
.tier-option .t-tag { font-size: .75rem; font-weight: 700; color: var(--cyan-dark); background: rgba(0,172,206,.12); padding: .2rem .6rem; border-radius: 999px; }

.wizard__nav { display: flex; justify-content: space-between; margin-top: 1.8rem; gap: 1rem; }

.wizard__result { text-align: center; padding: 1rem 0; }
.wizard__result .result-ico {
    width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
    margin: 0 auto 1.2rem; font-size: 2.2rem;
}
.result-ico--enterprise { background: rgba(99,100,102,.12); color: var(--gray); }
.result-ico--offer { background: rgba(0,172,206,.14); color: var(--cyan-dark); }
.wizard__result h3 { font-size: 1.5rem; }
.wizard__result p { color: var(--muted); max-width: 460px; margin: .4rem auto 1.4rem; }
.discount-note {
    background: rgba(0,172,206,.12); color: var(--cyan-dark); border: 1px solid rgba(0,172,206,.35);
    border-radius: 12px; padding: .85rem 1rem; max-width: 460px; margin: 0 auto 1.2rem;
    font-size: .95rem; line-height: 1.4;
}

.is-hidden { display: none !important; }
.spinner { display: inline-block; width: 18px; height: 18px; border: 3px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@@keyframes spin { to { transform: rotate(360deg); } }
@@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--gray), #4a4b4d); color: #fff;
    border-radius: 22px; padding: 3rem; text-align: center; margin: 0 auto;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 1.6rem; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Alerts */
.alert { padding: .9rem 1.1rem; border-radius: 10px; margin-bottom: 1rem; font-weight: 500; }
.alert--success { background: #e7f8ee; color: #1c7a45; border: 1px solid #bce6cd; }
.alert--error { background: #fdeaee; color: #b32641; border: 1px solid #f4c2cd; }
.alert--info { background: #e8f6fb; color: #0a7596; border: 1px solid #bfe6f1; }

/* Webinar join link (prikazan nakon prijave) */
.webinar-join { margin-top: .85rem; padding-top: .7rem; border-top: 1px solid #bce6cd; }
.webinar-join__label { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; opacity: .8; margin-bottom: .35rem; }
.webinar-join__row { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.webinar-join__link { word-break: break-all; font-weight: 600; flex: 1 1 auto; min-width: 0; }
.webinar-join .js-copy-join { flex: 0 0 auto; white-space: nowrap; }
.webinar-join .js-copy-join.is-copied { background: #1c7a45; color: #fff; border-color: #1c7a45; }
.webinar-join--pending { font-weight: 500; opacity: .85; }

/* Modal */
.wizard-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; }
.wizard-modal__backdrop { position: absolute; inset: 0; background: rgba(20,30,35,.55); backdrop-filter: blur(2px); }
.wizard-modal__dialog {
    position: relative; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
    padding: 2rem; width: min(440px, 92%); animation: fadeIn .25s ease; max-height: 90vh; overflow:auto;
}
.wizard-modal__x { position: absolute; top: .8rem; right: 1rem; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--muted); line-height: 1; }
.wizard-modal h3 { margin-bottom: .2rem; }

/* Webinar card actions */
.webinar-card__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.webinar-card__actions .btn {
    flex: 1 1 auto;
    min-width: max-content;
    padding: .5rem .9rem;
    font-size: .82rem;
    white-space: nowrap;
}
.webinar-card__actions .play-dot { font-size: .7em; margin-right: .25rem; }

/* Video modal (snimak webinara) */
.video-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 1.5rem; }
.video-modal.is-hidden { display: none !important; }
.video-modal__backdrop {
    position: absolute; inset: 0; background: rgba(12,20,24,.6);
    backdrop-filter: blur(10px) saturate(140%); -webkit-backdrop-filter: blur(10px) saturate(140%);
    animation: videoFade .3s ease;
}
.video-modal__dialog {
    position: relative; width: min(960px, 100%);
    background: #0c1418; border-radius: 18px; box-shadow: var(--shadow-lg);
    padding: 1.1rem 1.1rem 1.3rem; color: #fff;
    animation: videoPop .35s cubic-bezier(.16,.84,.44,1);
}
.video-modal__dialog h3 { margin: .1rem 2.4rem .7rem .4rem; color: #fff; font-size: 1.15rem; }
.video-modal__frame {
    position: relative; width: 100%; aspect-ratio: 16 / 9;
    background: #000; border-radius: 12px; overflow: hidden;
}
.video-modal__frame video { width: 100%; height: 100%; display: block; object-fit: contain; background: #000; }
.video-modal__x {
    position: absolute; top: .65rem; right: .8rem; z-index: 2;
    width: 2.1rem; height: 2.1rem; border-radius: 50%; border: 0; cursor: pointer;
    background: rgba(255,255,255,.12); color: #fff; font-size: 1.4rem; line-height: 1;
    display: grid; place-items: center; transition: background .2s ease, transform .2s ease;
}
.video-modal__x:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }

@keyframes videoFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes videoPop {
    from { opacity: 0; transform: translateY(18px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
    .video-modal__backdrop, .video-modal__dialog { animation: none; }
}

/* Product page */
.product-hero__media img {
    width: 100%; height: auto; border-radius: var(--radius);
    box-shadow: var(--shadow-lg); display: block;
}

.feature-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.feature-split--reverse .feature-split__media { order: 2; }
.feature-split__media img {
    width: 100%; height: auto; border-radius: var(--radius);
    box-shadow: var(--shadow); display: block;
}
.feature-split__body h2 { margin-top: .4rem; }
.feature-split__body p { color: var(--muted); }

.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li { position: relative; padding-left: 1.8rem; margin-bottom: .6rem; color: var(--muted); }
.check-list li::before {
    content: "\2713"; position: absolute; left: 0; top: 0;
    color: var(--cyan-dark); font-weight: 800;
}

.module-card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: .2s ease;
}
.module-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.module-card__media { background: var(--bg-soft); display: grid; place-items: center; padding: 1.5rem; }
.module-card__media img { width: 100%; max-width: 220px; height: 180px; object-fit: contain; }
.module-card__body { padding: 1.6rem; flex: 1; }
.module-card__body h3 { font-size: 1.15rem; }
.module-card__body p { color: var(--muted); margin: 0; }

.cert-band {
    display: grid; grid-template-columns: 200px 1fr; gap: 2.5rem; align-items: center;
    background: #fff; border: 1px solid var(--line); border-radius: 22px;
    padding: 2.5rem; box-shadow: var(--shadow);
}
.cert-band img { width: 100%; max-width: 200px; height: auto; border-radius: var(--radius); }
.cert-band__logo { display: flex; align-items: center; justify-content: center; }
.cert-band__logo svg { width: 100%; max-width: 200px; height: auto; }
.cert-band h2 { margin-top: .3rem; }
.cert-band p { color: var(--muted); margin-bottom: 0; }

.pill-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; max-width: 820px; margin: 0 auto; }
.pill {
    background: rgba(0,172,206,.08); border: 1.5px solid rgba(0,172,206,.25);
    color: var(--cyan-dark); font-weight: 600; padding: .7rem 1.3rem; border-radius: 999px;
}

@media (max-width: 900px) {
    .feature-split { grid-template-columns: 1fr; gap: 1.8rem; }
    .feature-split--reverse .feature-split__media { order: 0; }
    .cert-band { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; justify-items: center; }
}

/* Footer */
.site-footer { background: #1c2224; color: #c3c8ca; padding: 3.5rem 0 1.5rem; margin-top: 4rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: 1rem; }
.site-footer p { margin: .25rem 0; }
.site-footer a { color: #9fd8e6; }
.footer__logo svg path:first-child { fill: #c3c8ca; }
.footer__tag { max-width: 320px; }
.footer__bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.2rem; font-size: .9rem; }
.footer__bottom a { color: #7f888b; }

@media (max-width: 900px) {
    .hero__grid { grid-template-columns: 1fr; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .cobrand__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .cta-band { padding: 2rem 1.4rem; }

    /* Mobile navigation: reveal hamburger, turn nav into a dropdown panel */
    .nav-toggle { display: flex; }
    .header__nav {
        position: absolute; top: calc(100% + 1px); left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: .25rem;
        background: #fff; border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow); padding: .6rem 0;
        max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
        transition: max-height .28s ease, opacity .2s ease;
    }
    .header__nav.is-open { max-height: 80vh; overflow-y: auto; opacity: 1; pointer-events: auto; }
    .header__nav a:not(.btn) { padding: .85rem 1.5rem; }
    .header__nav a:not(.btn)::after { display: none; }
    .header__nav .btn { margin: .5rem 1.5rem; justify-content: center; }
}

/* Small phones */
@media (max-width: 600px) {
    html { scroll-padding-top: 70px; }
    .section { padding: 3.25rem 0; }
    .section__lead { font-size: 1rem; margin-bottom: 2rem; }
    .hero { padding: 3rem 0 2.5rem; }
    .hero p.lead { font-size: 1.08rem; margin: 1rem 0 1.6rem; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; }
    .hero__card { padding: 1.2rem; }
    .hero__trust { gap: 1.2rem 1.8rem; margin-top: 1.8rem; }

    .steps { grid-template-columns: 1fr; }
    .card, .solution-card { padding: 1.4rem; }
    .solution-card--featured { padding: 1.6rem 1.3rem; }

    .wizard { padding: 1.4rem; }
    .wizard__q { font-size: 1.2rem; }
    .tier-option { padding: 1rem; gap: .8rem; }

    .cta-band { padding: 1.8rem 1.2rem; }
    .cta-band__actions { flex-direction: column; align-items: stretch; }
    .cta-band__actions .btn { width: 100%; }

    .cobrand { padding: 2.25rem 0; }
    .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }

    .btn--lg { padding: .85rem 1.4rem; font-size: 1rem; }
}
