/* MAIN NAV (Landing) */

.top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px var(--pad) 0 var(--pad);
}

.top__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

/* Responsive Brand Logo */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand img {
    display: block;
    width: auto;
    height: 25px;
}

/* Desktop: show full logo (wordmark), hide mark */
.brand .brand__full {
    display: block;
}

.brand .brand__mark {
    display: none;
}

/* Mobile: show pictogram only */
@media (max-width: 640px) {
    .brand img {
        height: 25px;
    }

    .brand .brand__full {
        display: none !important;
    }

    .brand .brand__mark {
        display: block !important;
    }
}

.nav-main {
    display: flex;
    align-items: center;
}

.nav-main__link {
    color: #FFF;
    text-align: right;
    font-family: "Transducer", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-main__link:hover {
    opacity: 0.8;
}

.nav-main__shop {
    display: flex;
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #FFF;
    color: #0A1F6A;
    font-family: "Transducer", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-main__shop:hover {
    background: #f2f2f2;
}

/* WordPress menu output */
.nav-main__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-main__list a {
    color: #FFF;
    text-align: right;
    font-family: "Transducer", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 480px) {
    .nav-main__list a {
        font-size: 15px;
    }
}

.nav-main__list a:hover {
    opacity: 0.8;
}

/* Make the LAST menu item look like the SHOP button (keep Shop as last item in WP menu) */
.nav-main__list li:last-child a {
    display: flex;
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #FFF;
    color: #0A1F6A;
}

.nav-main__list li:last-child a:hover {
    background: #f2f2f2;
    opacity: 1;
}

/* =========================
   HERO 100VH – CLEAN START
   ========================= */

.hero-vh {
    min-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
}

.hero-vh__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding-bottom: clamp(180px, 25vh, 260px);
}

/* H1 */

.hero-vh__title {
    margin: 0;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-vh__title--thin {
    font-family: "transducer-condensed", sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: clamp(48px, 7vw, 96px);
}

.hero-vh__title--bold {
    font-family: "transducer-extended", sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(48px, 7vw, 96px);
}

/* Subtitle */

.hero-vh__subtitle {
    margin: 0;
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
}

/* Button */

.hero-vh__btn {
    display: inline-flex;
    padding: 14px 48px;
    border-radius: 999px;
    background: #ffffff;
    color: #0a1f6a !important;
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-vh__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Hero image (phone screen) */

.hero-vh__image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(500px, 55vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.35));
}

@media (max-width: 480px) {
    .hero-vh {
        min-height: 90svh;
    }

    .hero-vh__image {
        width: 90vw;
    }

    .hero-vh__content {
        padding-bottom: 32vh;
    }
}

/* =========================
   SECTION WRAPPER
   ========================= */

.wrap {
    width: min(var(--maxw), calc(100% - (var(--pad) * 2)));
    margin: 0 auto;
}

/* =========================
   WHAT IS IT
   ========================= */

.what {
    padding: var(--section) 0;
    background: #1633d3;
    /* slightly deeper block like the screenshot */
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    overflow-x: hidden;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0a1f6a;
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.what__title {
    margin: 16px 0 14px;
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.92;
    font-size: clamp(54px, 7vw, 96px);
}

.what__lead {
    margin: 0 0 28px;
    max-width: 78ch;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.45;
}

.what__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
}

.what-card {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: clamp(260px, 30vw, 360px);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
    padding: clamp(22px, 3vw, 34px);
}

.what-card__body {
    padding: 0;
    display: grid;
    align-content: center;
    gap: 12px;
    max-width: 42ch;
}

.what-card__k {
    margin: 0;
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.8;
}

.what-card__t {
    margin: 0;
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.95;
    font-size: clamp(26px, 3.2vw, 40px);
    hyphens: none;
}

.what-card__media {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    display: grid;
    justify-items: end;
}

.what-card__media img {
    width: min(260px, 100%);
    height: auto;
    display: block;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.what-card--light {
    background: rgba(255, 255, 255, 0.82);
    color: #0a1f6a;
}

.what-card--light .what-card__k {
    opacity: 0.75;
}

.what-card--mid {
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.what-card--mid .what-card__media {
    background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 860px) {
    .what__cards {
        grid-template-columns: 1fr;
    }

    .what-card {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .what-card__media {
        width: 100%;
        justify-items: start;
        margin-top: 8px;
    }

    .what-card__media img {
        width: min(360px, 100%);
    }
}

/* Updated statement styles */

.statement__title {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.7;
    font-size: clamp(28px, 5.2vw, 86px);
    display: grid;
    gap: clamp(10px, 1.2vw, 16px);
}

.statement__line {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: clamp(10px, 1.2vw, 18px);
    white-space: nowrap;
    /* keep each line on one row */
}

/* Typeface splits */
.st-extended {
    font-family: "transducer-extended", sans-serif;
    font-weight: 621;
    font-style: italic;
}

.st-condensed {
    font-family: "transducer-condensed", sans-serif;
    font-weight: 545;
    font-style: italic;
}

.st-regular {
    font-family: "transducer", sans-serif;
    font-style: italic;
    font-weight: 400;
}

/* If viewport is too narrow, shrink a bit rather than wrapping */
@media (max-width: 520px) {
    .statement__title {
        font-size: clamp(26px, 4vw, 86px);
        line-height: 0.6;
        letter-spacing: -0.01em;
    }

    .statement__line {
        gap: 5px;
    }
}

/* =========================
   BIG STATEMENT
   ========================= */

.statement {
    background: #F3F5FD;
    color: #1633d3;
    padding: 30px 0 1px 0px;
}

.statement__wrap {
    text-align: center;
}


.statement__sub {
    margin-top: 24px;
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* =========================
   STATS (Key numbers)
   ========================= */

.stats {
    background: #1633d3;
    color: #ffffff;
    padding: clamp(48px, 6vw, 96px) 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    text-align: center;
    gap: clamp(18px, 3vw, 44px);
}

.stats__value {
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 0.9;
    font-size: clamp(52px, 7vw, 110px);
    margin: 0;
}

.stats__label {
    margin-top: 6px;
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.95;
}

@media (max-width: 860px) {
    .stats__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   HOW DOES IT WORK
   ========================= */

.how {
    background: #1633d3;
    color: #ffffff;
    padding: var(--section) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.how__title {
    margin: 16px 0 12px;
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.92;
    font-size: clamp(52px, 7vw, 96px);
}

.how__text {
    max-width: 92ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: clamp(22px, 3vw, 34px);
}

.how__text p {
    margin: 0 0 12px;
}

.how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 26px);
}

.how-card {
    background: rgba(245, 247, 255, 0.96);
    color: #0a1f6a;
    border-radius: 22px;
    padding: 18px 18px 20px;
}

.how-card__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

/* ICON PLACEHOLDER (swap with real SVGs later) */
.how-card__icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(22, 51, 211, 0.14);
    flex: 0 0 auto;
}

.how-card__icon img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 999px;
}

.how-card__label {
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.how-card__body {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.45;
}

/* Placeholder block under the section (for future icon assets/legend if needed) */
.how__icons-placeholder {
    height: 1px;
}

@media (max-width: 980px) {
    .how__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   FAQ
   ========================= */

.faq {
    background: #1633d3;
    color: #ffffff;
    padding: var(--section) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq__title {
    margin: 16px 0 18px;
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.92;
    font-size: clamp(52px, 7vw, 96px);
}

.faq__list {
    display: grid;
    gap: 18px;
    max-width: 86ch;
}

.faq__item {
    display: grid;
    gap: 6px;
}

.faq__q {
    margin: 0;
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
}

.faq__a {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.55;
}

/* =========================
   FINAL CTA
   ========================= */

.cta {
    background: #1633d3;
    color: #ffffff;
    padding: clamp(56px, 7vw, 120px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cta__title {
    margin: 16px 0 18px;
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.8;
    font-size: clamp(52px, 7vw, 96px);
}

.cta__btn {
    display: inline-flex;
    padding: 10px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #FFF;
    color: #0A1F6A !important;
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
}

.cta__btn:hover {
    background: #f2f2f2;
}



/* =========================
   FOOTER (Big logo)
   ========================= */

.site-footer {
    background: #1633d3;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__inner {
    width: min(var(--maxw), calc(100% - (var(--pad) * 2)));
    margin: 0 auto;
    padding: clamp(34px, 5vw, 68px) 0 22px;
}

/* Give the footer some safe breathing room on very small screens */
@media (max-width: 560px) {
    .site-footer__inner {
        padding: 28px 0 18px;
    }
}

.site-footer__brand {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* prevents visual overflow on tiny viewports */
}

/* Custom logo output */
.site-footer__brand .custom-logo-link {
    display: block;
}

.site-footer__brand .custom-logo {
    display: block;
    width: min(1400px, 94vw);
    max-width: 100%;
    height: auto;
}

/* SVG fallback */
.site-footer__svg {
    display: block;
    width: min(1400px, 94vw);
}

.site-footer__svg svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Text fallback */
.site-footer__wordmark {
    font-family: "transducer-extended", "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.9;
    font-size: clamp(90px, 18vw, 260px);
    display: block;
}

.site-footer__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: clamp(14px, 2vw, 22px);
}

.site-footer__links {
    display: flex;
    gap: 28px;
}

.site-footer__links a,
.site-footer__copy {
    color: rgba(255, 255, 255, 0.92);
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
}

.site-footer__links a:hover {
    opacity: 0.75;
}

@media (max-width: 560px) {

    /* Logo: align left and scale down so it never feels cropped */
    .site-footer__brand {
        justify-content: flex-start;
    }

    .site-footer__brand .custom-logo {
        width: min(520px, 100%);
    }

    /* Meta: links on one row, copyright on its own line */
    .site-footer__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .site-footer__links {
        gap: 22px;
        flex-wrap: wrap;
    }

    .site-footer__copy {
        margin-top: 2px;
    }
}

/* =========================
   CONTACTS PAGE (layout + CF7)
   ========================= */

.cf7-grid p {
    margin: 0;
}

.contacts-hero {
    display: flex;
    align-items: flex-end;
    padding: clamp(38px, 6vw, 78px) 0 clamp(18px, 3vw, 30px);
}

.contacts-hero__title {
    margin: 16px 0 12px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.9;
}

.contacts-hero__title--thin {
    font-family: "transducer-condensed", sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: clamp(56px, 7.2vw, 120px);
}

.contacts-hero__title--bold {
    font-family: "transducer-extended", sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(56px, 7.2vw, 120px);
}

.contacts-hero__lead {
    margin: 0;
    max-width: 72ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.55;
}

.contacts {
    padding-bottom: 2rem;

}

.contacts__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(18px, 2.4vw, 28px);
    align-items: start;
}

.contacts__panel {
    border-radius: var(--radius);
    padding: clamp(18px, 2.4vw, 28px);
}

.contacts__panel--light {
    background: rgba(245, 247, 255, 0.96);
    color: #0a1f6a;
}

.contacts__panel--glass {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.contacts__h {
    margin: 0 0 8px;
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    font-size: 28px;
}

.contacts__p {
    margin: 0 0 18px;
    color: rgba(10, 31, 106, 0.82);
    font-size: 15px;
    line-height: 1.55;
}

/* --- CF7: make the form look like the design --- */
.contacts__form {
    max-width: 780px;
}

.contacts__form .wpcf7 form {
    display: grid;
    gap: 14px;
}

.contacts__form label {
    display: grid;
    gap: 8px;
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(10, 31, 106, 0.92);
}

.contacts__form select,
.contacts__form input[type="text"],
.contacts__form input[type="email"],
.contacts__form input[type="tel"],
.contacts__form textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(10, 31, 106, 0.16);
    background: #ffffff;
    padding: 12px 14px;
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 15px;
    color: #0a1f6a;
    outline: none;
}

.contacts__form select {
    height: 44px;
}

.contacts__form textarea {
    min-height: 180px;
    max-height: 360px;
    resize: vertical;
}

.contacts__form input:focus,
.contacts__form select:focus,
.contacts__form textarea:focus {
    border-color: rgba(22, 51, 211, 0.55);
    box-shadow: 0 0 0 4px rgba(22, 51, 211, 0.12);
}

.contacts__form .wpcf7-submit,
.contacts__form input[type="submit"] {
    width: fit-content;
    display: inline-flex;
    padding: 10px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #0F39D3;
    color: #FFF;
    border: 0;
    cursor: pointer;
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.contacts__form .wpcf7-submit:hover {
    opacity: 0.9;
}

/* CF7 messages */
.contacts__form .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #b40000;
}

.contacts__form .wpcf7-response-output {
    margin: 10px 0 0;
    border-radius: 14px;
    padding: 12px 14px;
}

/* Info cards */
.contacts__cards {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.contacts-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 14px;
}

.contacts-card__k {
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 6px;
}

.contacts-card__v {
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: #ffffff;
}

.contacts__panel--glass .contacts__fine {
    margin: 14px 0 0;
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
    .contacts__grid {
        grid-template-columns: 1fr;
    }

    .contacts__panel--glass {
        order: -1;
    }

    .contacts__form {
        max-width: 100%;
    }
}

@media (max-width: 520px) {

    .contacts-hero__title--thin,
    .contacts-hero__title--bold {
        font-size: clamp(44px, 12vw, 68px);
    }
}

/* =========================
   THANK YOU PAGE
   ========================= */

.thankyou {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: clamp(54px, 7vw, 110px) 0;
    text-align: center;
}

.thankyou__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thankyou .pill {
    margin: 0 auto;
}

.thankyou__title {
    margin: 16px 0 12px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.9;
}

.thankyou__title--thin {
    font-family: "transducer-condensed", sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: clamp(56px, 7.2vw, 120px);
}

.thankyou__title--bold {
    font-family: "transducer-extended", sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(56px, 7.2vw, 120px);
}

.thankyou__lead {
    margin: 0;
    max-width: 78ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.6;
}

.thankyou__lead strong {
    color: #ffffff;
}

.thankyou__card {
    margin-top: clamp(18px, 3vw, 28px);
    width: min(980px, 100%);
    background: rgba(245, 247, 255, 0.96);
    color: #0a1f6a;
    border-radius: 22px;
    padding: clamp(18px, 2.6vw, 28px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    text-align: left;
}

.thankyou__card-h {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.thankyou__card-k {
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.85;
}

.thankyou__card-t {
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    font-size: clamp(22px, 2.6vw, 32px);
}

.thankyou__steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 18px);
    margin-top: 14px;
}

.thankyou__step {
    background: rgba(15, 57, 211, 0.06);
    border: 1px solid rgba(10, 31, 106, 0.10);
    border-radius: 16px;
    padding: 14px;
}

.thankyou__step-n {
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 20px;
    opacity: 0.9;
}

.thankyou__step-t {
    margin-top: 8px;
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-size: 16px;
}

.thankyou__step-p {
    margin-top: 8px;
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(10, 31, 106, 0.82);
}

@media (max-width: 980px) {
    .thankyou__steps-grid {
        grid-template-columns: 1fr;
    }
}

.thankyou__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.thankyou__btn {
    display: inline-flex;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    text-decoration: none;
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.thankyou__btn--primary {
    background: #0F39D3;
    color: #fff !important;
}

.thankyou__btn--primary:hover {
    opacity: 0.92;
}

.thankyou__btn--ghost {
    background: transparent;
    color: #0a1f6a;
    border: 1px solid rgba(10, 31, 106, 0.18);
}

.thankyou__btn--ghost:hover {
    background: rgba(15, 57, 211, 0.06);
}

.thankyou__fine {
    margin-top: 16px;
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.thankyou__fine a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.thankyou__fine a:hover {
    opacity: 0.85;
}

@media (max-width: 520px) {

    .thankyou__title--thin,
    .thankyou__title--bold {
        font-size: clamp(44px, 12vw, 68px);
    }
}

/* =========================
   PRIVACY POLICY / LEGAL PAGES
   WordPress adds `privacy-policy` on body for the Privacy Policy page.
   ========================= */

body.privacy-policy {
    background: var(--bg);
}

body.privacy-policy main,
body.privacy-policy .site-main {
    padding: clamp(54px, 7vw, 110px) 0;
}

body.privacy-policy .wrap {
    width: min(var(--maxw), calc(100% - (var(--pad) * 2)));
}

/* Content container */
body.privacy-policy .entry-content,
body.privacy-policy .page-content,
body.privacy-policy .wp-block-post-content {
    width: min(920px, 100%);
    margin: 0 auto;
    background: rgba(245, 247, 255, 0.96);
    color: #0a1f6a;
    border-radius: 22px;
    padding: clamp(18px, 2.6vw, 34px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

/* H1 / page title */
body.privacy-policy h1,
body.privacy-policy .entry-title {
    width: min(920px, 100%);
    margin: 0 auto 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.92;
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(44px, 6vw, 86px);
    color: #ffffff;
}

/* Intro / lead */
body.privacy-policy .entry-content>p:first-child,
body.privacy-policy .wp-block-post-content>p:first-child {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(10, 31, 106, 0.86);
}

/* Headings */
body.privacy-policy h2 {
    margin: 26px 0 10px;
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-size: 22px;
}

body.privacy-policy h3 {
    margin: 18px 0 8px;
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
    font-size: 16px;
    opacity: 0.95;
}

/* Text blocks */
body.privacy-policy p {
    margin: 0 0 12px;
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(10, 31, 106, 0.86);
}

body.privacy-policy ul,
body.privacy-policy ol {
    margin: 0 0 14px;
    padding-left: 18px;
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(10, 31, 106, 0.86);
}

body.privacy-policy li {
    margin: 6px 0;
}

/* Links */
body.privacy-policy .entry-content a,
body.privacy-policy .wp-block-post-content a {
    color: #0F39D3;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}

body.privacy-policy .entry-content a:hover,
body.privacy-policy .wp-block-post-content a:hover {
    opacity: 0.85;
}

/* Separators / quotes */
body.privacy-policy hr {
    border: 0;
    height: 1px;
    background: rgba(10, 31, 106, 0.12);
    margin: 18px 0;
}

body.privacy-policy blockquote {
    margin: 14px 0;
    padding: 12px 14px;
    border-left: 4px solid rgba(15, 57, 211, 0.9);
    background: rgba(15, 57, 211, 0.06);
    border-radius: 14px;
}

body.privacy-policy blockquote p {
    margin: 0;
}

/* Tables */
body.privacy-policy table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 14px;
    color: rgba(10, 31, 106, 0.9);
}

body.privacy-policy th,
body.privacy-policy td {
    border: 1px solid rgba(10, 31, 106, 0.12);
    padding: 10px 12px;
    vertical-align: top;
}

body.privacy-policy th {
    background: rgba(15, 57, 211, 0.06);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

/* Mobile breathing room */
@media (max-width: 520px) {

    body.privacy-policy .entry-content,
    body.privacy-policy .page-content,
    body.privacy-policy .wp-block-post-content {
        border-radius: 18px;
        padding: 16px;
    }
}

/* =========================
   404 / NOT FOUND
   ========================= */

.notfound {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: clamp(54px, 7vw, 110px) 0;
    text-align: center;
}

.notfound__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notfound .pill {
    margin: 0 auto;
}

.notfound__title {
    margin: 16px 0 12px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.9;
}

.notfound__title--thin {
    font-family: "transducer-condensed", sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: clamp(56px, 7.2vw, 120px);

}

.notfound__title--bold {
    font-family: "transducer-extended", sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(56px, 7.2vw, 120px);

}

.notfound__lead {
    margin: 0;
    max-width: 78ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.6;
}

.notfound__card {
    margin-top: clamp(18px, 3vw, 28px);
    width: min(980px, 100%);
    background: rgba(245, 247, 255, 0.96);
    color: #0a1f6a;
    border-radius: 22px;
    padding: clamp(18px, 2.6vw, 28px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    text-align: left;
}

.notfound__card-h {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.notfound__card-k {
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.85;
}

.notfound__card-t {
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    font-size: clamp(22px, 2.6vw, 32px);
}

.notfound__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 18px);
    margin-top: 14px;
}

.notfound__tile {
    display: block;
    text-decoration: none;
    background: rgba(15, 57, 211, 0.06);
    border: 1px solid rgba(10, 31, 106, 0.10);
    border-radius: 16px;
    padding: 14px;
    color: inherit;
}

.notfound__tile:hover {
    background: rgba(15, 57, 211, 0.09);
}

.notfound__tile-k {
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.85;
}

.notfound__tile-t {
    margin-top: 8px;
    font-family: "Transducer", system-ui, sans-serif;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-size: 16px;
}

.notfound__tile-p {
    margin-top: 8px;
    font-family: "Transducer", system-ui, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(10, 31, 106, 0.82);
}


.notfound__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.notfound__fine {
    margin-top: 16px;
    font-family: "Transducer", system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.notfound__fine a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.notfound__fine a:hover {
    opacity: 0.85;
}

@media (max-width: 980px) {
    .notfound__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .notfound__title--thin {
        font-size: clamp(44px, 12vw, 68px);
    }

    .notfound__title--bold {
        font-size: clamp(30px, 9vw, 54px);
    }
}


.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Transducer", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
}

/* Polylang outputs an UL by default */
.lang-switcher ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lang-switcher li {
    display: inline-flex;
}

.lang-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    opacity: 0.78;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    transition: opacity .2s ease, background .2s ease, border-color .2s ease;
}

.lang-switcher a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.28);
}

.lang-switcher .current-lang a,
.lang-switcher li.current-lang a {
    opacity: 1;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.32);
}

@media (max-width: 860px) {
    .top {
        padding-top: 18px;
        flex-wrap: wrap;
        row-gap: 14px;
    }

    /* Keep language + menu aligned to the right and allow graceful wrapping */
    .top__right {
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
        row-gap: 10px;
        column-gap: 14px;
    }

    .lang-switcher {
        flex: 0 0 auto;
        order: 1;
    }

    .nav-main {
        flex: 0 0 auto;
        order: 2;
        margin-left: auto;
    }

    .nav-main__list {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-main__list li:last-child a {
        padding: 10px 22px;
    }
}

@media (max-width: 480px) {
    .top__right {
        gap: 10px;
        justify-content: flex-end;
    }

    .lang-switcher ul {
        gap: 6px;
    }

    .lang-switcher a {
        min-width: 34px;
        height: 30px;
        padding: 0 8px;
        font-size: 12px;
    }

    /* Make the menu more compact on very small screens */
    .nav-main__list a {
        font-size: 15px;
    }

    .nav-main__list li:last-child a {
        padding: 9px 16px;
    }
}