:where(html[dir="ltr"]), :where([data-sonner-toaster][dir="ltr"]) {
    --toast-icon-margin-start: -3px;
    --toast-icon-margin-end: 4px;
    --toast-svg-margin-start: -1px;
    --toast-svg-margin-end: 0px;
    --toast-button-margin-start: auto;
    --toast-button-margin-end: 0;
    --toast-close-button-start: 0;
    --toast-close-button-end: unset;
    --toast-close-button-transform: translate(-35%, -35%)
}

:where([data-sonner-toaster]) {
    position: fixed;
    width: var(--width);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    --gray1: hsl(0, 0%, 99%);
    --gray2: hsl(0, 0%, 97.3%);
    --gray3: hsl(0, 0%, 95.1%);
    --gray4: hsl(0, 0%, 93%);
    --gray5: hsl(0, 0%, 90.9%);
    --gray6: hsl(0, 0%, 88.7%);
    --gray7: hsl(0, 0%, 85.8%);
    --gray8: hsl(0, 0%, 78%);
    --gray9: hsl(0, 0%, 56.1%);
    --gray10: hsl(0, 0%, 52.3%);
    --gray11: hsl(0, 0%, 43.5%);
    --gray12: hsl(0, 0%, 9%);
    --border-radius: 8px;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
    outline: none;
    z-index: 999999999
}

:where([data-sonner-toaster][data-x-position="right"]) {
    right: max(var(--offset), env(safe-area-inset-right))
}

:where([data-sonner-toaster][data-x-position="left"]) {
    left: max(var(--offset), env(safe-area-inset-left))
}

:where([data-sonner-toaster][data-x-position="center"]) {
    left: 50%;
    transform: translate(-50%)
}

:where([data-sonner-toaster][data-y-position="top"]) {
    top: max(var(--offset), env(safe-area-inset-top))
}

:where([data-sonner-toaster][data-y-position="bottom"]) {
    bottom: max(var(--offset), env(safe-area-inset-bottom))
}

:where([data-sonner-toast]) {
    --y: translateY(100%);
    --lift-amount: calc(var(--lift) * var(--gap));
    z-index: var(--z-index);
    position: absolute;
    opacity: 0;
    transform: var(--y);
    filter: blur(0);
    touch-action: none;
    transition: transform .4s, opacity .4s, height .4s, box-shadow .2s;
    box-sizing: border-box;
    outline: none;
    overflow-wrap: anywhere
}

:where([data-sonner-toast][data-styled="true"]) {
    padding: 16px;
    background: var(--normal-bg);
    border: 1px solid var(--normal-border);
    color: var(--normal-text);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px #0000001a;
    width: var(--width);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px
}

:where([data-sonner-toast]:focus-visible) {
    box-shadow: 0 4px 12px #0000001a, 0 0 0 2px #0003
}

:where([data-sonner-toast][data-y-position="top"]) {
    top: 0;
    --y: translateY(-100%);
    --lift: 1;
    --lift-amount: calc(1 * var(--gap))
}

:where([data-sonner-toast][data-y-position="bottom"]) {
    bottom: 0;
    --y: translateY(100%);
    --lift: -1;
    --lift-amount: calc(var(--lift) * var(--gap))
}

:where([data-sonner-toast]) :where([data-description]) {
    font-weight: 400;
    line-height: 1.4;
    color: inherit
}

:where([data-sonner-toast]) :where([data-title]) {
    font-weight: 500;
    line-height: 1.5;
    color: inherit
}

:where([data-sonner-toast]) :where([data-icon]) {
    display: flex;
    height: 16px;
    width: 16px;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    margin-left: var(--toast-icon-margin-start);
    margin-right: var(--toast-icon-margin-end)
}

:where([data-sonner-toast][data-promise="true"]) :where([data-icon]) > svg {
    opacity: 0;
    transform: scale(.8);
    transform-origin: center;
    animation: sonner-fade-in .3s ease forwards
}

:where([data-sonner-toast]) :where([data-icon]) > * {
    flex-shrink: 0
}

:where([data-sonner-toast]) :where([data-icon]) svg {
    margin-left: var(--toast-svg-margin-start);
    margin-right: var(--toast-svg-margin-end)
}

:where([data-sonner-toast]) :where([data-content]) {
    display: flex;
    flex-direction: column;
    gap: 2px
}

[data-sonner-toast][data-styled=true] [data-button] {
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
    height: 24px;
    font-size: 12px;
    color: var(--normal-bg);
    background: var(--normal-text);
    margin-left: var(--toast-button-margin-start);
    margin-right: var(--toast-button-margin-end);
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity .4s, box-shadow .2s
}

:where([data-sonner-toast]) :where([data-button]):focus-visible {
    box-shadow: 0 0 0 2px #0006
}

:where([data-sonner-toast]) :where([data-button]):first-of-type {
    margin-left: var(--toast-button-margin-start);
    margin-right: var(--toast-button-margin-end)
}

:where([data-sonner-toast]) :where([data-cancel]) {
    color: var(--normal-text);
    background: rgba(0, 0, 0, .08)
}

:where([data-sonner-toast][data-theme="dark"]) :where([data-cancel]) {
    background: rgba(255, 255, 255, .3)
}

:where([data-sonner-toast]) :where([data-close-button]) {
    position: absolute;
    left: var(--toast-close-button-start);
    right: var(--toast-close-button-end);
    top: 0;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: var(--gray1);
    color: var(--gray12);
    border: 1px solid var(--gray4);
    transform: var(--toast-close-button-transform);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    transition: opacity .1s, background .2s, border-color .2s
}

:where([data-sonner-toast]) :where([data-close-button]):focus-visible {
    box-shadow: 0 4px 12px #0000001a, 0 0 0 2px #0003
}

:where([data-sonner-toast]) :where([data-disabled="true"]) {
    cursor: not-allowed
}

:where([data-sonner-toast]):hover :where([data-close-button]):hover {
    background: var(--gray2);
    border-color: var(--gray5)
}

:where([data-sonner-toast][data-swiping="true"]):before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    z-index: -1
}

:where([data-sonner-toast][data-y-position="top"][data-swiping="true"]):before {
    bottom: 50%;
    transform: scaleY(3) translateY(50%)
}

:where([data-sonner-toast][data-y-position="bottom"][data-swiping="true"]):before {
    top: 50%;
    transform: scaleY(3) translateY(-50%)
}

:where([data-sonner-toast][data-swiping="false"][data-removed="true"]):before {
    content: "";
    position: absolute;
    inset: 0;
    transform: scaleY(2)
}

:where([data-sonner-toast]):after {
    content: "";
    position: absolute;
    left: 0;
    height: calc(var(--gap) + 1px);
    bottom: 100%;
    width: 100%
}

:where([data-sonner-toast][data-mounted="true"]) {
    --y: translateY(0);
    opacity: 1
}

:where([data-sonner-toast][data-expanded="false"][data-front="false"]) {
    --scale: var(--toasts-before) *.05 +1;
    --y: translateY(calc(var(--lift-amount) * var(--toasts-before))) scale(calc(-1 * var(--scale)));
    height: var(--front-toast-height)
}

:where([data-sonner-toast]) > * {
    transition: opacity .4s
}

:where([data-sonner-toast][data-expanded="false"][data-front="false"][data-styled="true"]) > * {
    opacity: 0
}

:where([data-sonner-toast][data-visible="false"]) {
    opacity: 0;
    pointer-events: none
}

:where([data-sonner-toast][data-mounted="true"][data-expanded="true"]) {
    --y: translateY(calc(var(--lift) * var(--offset)));
    height: var(--initial-height)
}

:where([data-sonner-toast][data-removed="true"][data-front="true"][data-swipe-out="false"]) {
    --y: translateY(calc(var(--lift) * -100%));
    opacity: 0
}

:where([data-sonner-toast][data-removed="true"][data-front="false"][data-swipe-out="false"][data-expanded="true"]) {
    --y: translateY(calc(var(--lift) * var(--offset) + var(--lift) * -100%));
    opacity: 0
}

:where([data-sonner-toast][data-removed="true"][data-front="false"][data-swipe-out="false"][data-expanded="false"]) {
    --y: translateY(40%);
    opacity: 0;
    transition: transform .5s, opacity .2s
}

:where([data-sonner-toast][data-removed="true"][data-front="false"]):before {
    height: calc(var(--initial-height) + 20%)
}

[data-sonner-toast][data-swiping=true] {
    transform: var(--y) translateY(var(--swipe-amount, 0px));
    transition: none
}

[data-sonner-toast][data-swipe-out=true][data-y-position=bottom], [data-sonner-toast][data-swipe-out=true][data-y-position=top] {
    animation: swipe-out .2s ease-out forwards
}

@keyframes swipe-out {
    0% {
        transform: translateY(calc(var(--lift) * var(--offset) + var(--swipe-amount)));
        opacity: 1
    }
    to {
        transform: translateY(calc(var(--lift) * var(--offset) + var(--swipe-amount) + var(--lift) * -100%));
        opacity: 0
    }
}

@media (max-width: 600px) {
    [data-sonner-toaster] {
        position: fixed;
        --mobile-offset: 16px;
        right: var(--mobile-offset);
        left: var(--mobile-offset);
        width: 100%
    }
    .truncate {
        display:none;
    }
    [data-sonner-toaster] [data-sonner-toast] {
        left: 0;
        right: 0;
        width: calc(100% - var(--mobile-offset) * 2)
    }

    [data-sonner-toaster][data-x-position=left] {
        left: var(--mobile-offset)
    }

    [data-sonner-toaster][data-y-position=bottom] {
        bottom: 20px
    }

    [data-sonner-toaster][data-y-position=top] {
        top: 20px
    }

    [data-sonner-toaster][data-x-position=center] {
        left: var(--mobile-offset);
        right: var(--mobile-offset);
        transform: none
    }
}

[data-sonner-toaster][data-theme=light] {
    --normal-bg: #fff;
    --normal-border: var(--gray4);
    --normal-text: var(--gray12);
    --success-bg: hsl(143, 85%, 96%);
    --success-border: hsl(145, 92%, 91%);
    --success-text: hsl(140, 100%, 27%);
    --info-bg: hsl(208, 100%, 97%);
    --info-border: hsl(221, 91%, 91%);
    --info-text: hsl(210, 92%, 45%);
    --warning-bg: hsl(49, 100%, 97%);
    --warning-border: hsl(49, 91%, 91%);
    --warning-text: hsl(31, 92%, 45%);
    --error-bg: hsl(359, 100%, 97%);
    --error-border: hsl(359, 100%, 94%);
    --error-text: hsl(360, 100%, 45%)
}

[data-sonner-toaster][data-theme=light] [data-sonner-toast][data-invert=true] {
    --normal-bg: #000;
    --normal-border: hsl(0, 0%, 20%);
    --normal-text: var(--gray1)
}

[data-sonner-toaster][data-theme=dark] [data-sonner-toast][data-invert=true] {
    --normal-bg: #fff;
    --normal-border: var(--gray3);
    --normal-text: var(--gray12)
}

[data-sonner-toaster][data-theme=dark] {
    --normal-bg: #000;
    --normal-border: hsl(0, 0%, 20%);
    --normal-text: var(--gray1);
    --success-bg: hsl(150, 100%, 6%);
    --success-border: hsl(147, 100%, 12%);
    --success-text: hsl(150, 86%, 65%);
    --info-bg: hsl(215, 100%, 6%);
    --info-border: hsl(223, 100%, 12%);
    --info-text: hsl(216, 87%, 65%);
    --warning-bg: hsl(64, 100%, 6%);
    --warning-border: hsl(60, 100%, 12%);
    --warning-text: hsl(46, 87%, 65%);
    --error-bg: hsl(358, 76%, 10%);
    --error-border: hsl(357, 89%, 16%);
    --error-text: hsl(358, 100%, 81%)
}

[data-rich-colors=true][data-sonner-toast][data-type=success], [data-rich-colors=true][data-sonner-toast][data-type=success] [data-close-button] {
    background: var(--success-bg);
    border-color: var(--success-border);
    color: var(--success-text)
}

[data-rich-colors=true][data-sonner-toast][data-type=info], [data-rich-colors=true][data-sonner-toast][data-type=info] [data-close-button] {
    background: var(--info-bg);
    border-color: var(--info-border);
    color: var(--info-text)
}

[data-rich-colors=true][data-sonner-toast][data-type=warning], [data-rich-colors=true][data-sonner-toast][data-type=warning] [data-close-button] {
    background: var(--warning-bg);
    border-color: var(--warning-border);
    color: var(--warning-text)
}

[data-rich-colors=true][data-sonner-toast][data-type=error], [data-rich-colors=true][data-sonner-toast][data-type=error] [data-close-button] {
    background: var(--error-bg);
    border-color: var(--error-border);
    color: var(--error-text)
}

.sonner-loading-wrapper {
    --size: 16px;
    height: var(--size);
    width: var(--size);
    position: absolute;
    inset: 0;
    z-index: 10
}

.sonner-loading-wrapper[data-visible=false] {
    transform-origin: center;
    animation: sonner-fade-out .2s ease forwards
}

.sonner-spinner {
    position: relative;
    top: 50%;
    left: 50%;
    height: var(--size);
    width: var(--size)
}

.sonner-loading-bar {
    animation: sonner-spin 1.2s linear infinite;
    background: var(--gray11);
    border-radius: 6px;
    height: 8%;
    left: -10%;
    position: absolute;
    top: -3.9%;
    width: 24%
}

.sonner-loading-bar:nth-child(1) {
    animation-delay: -1.2s;
    transform: rotate(.0001deg) translate(146%)
}

.sonner-loading-bar:nth-child(2) {
    animation-delay: -1.1s;
    transform: rotate(30deg) translate(146%)
}

.sonner-loading-bar:nth-child(3) {
    animation-delay: -1s;
    transform: rotate(60deg) translate(146%)
}

.sonner-loading-bar:nth-child(4) {
    animation-delay: -.9s;
    transform: rotate(90deg) translate(146%)
}

.sonner-loading-bar:nth-child(5) {
    animation-delay: -.8s;
    transform: rotate(120deg) translate(146%)
}

.sonner-loading-bar:nth-child(6) {
    animation-delay: -.7s;
    transform: rotate(150deg) translate(146%)
}

.sonner-loading-bar:nth-child(7) {
    animation-delay: -.6s;
    transform: rotate(180deg) translate(146%)
}

.sonner-loading-bar:nth-child(8) {
    animation-delay: -.5s;
    transform: rotate(210deg) translate(146%)
}

.sonner-loading-bar:nth-child(9) {
    animation-delay: -.4s;
    transform: rotate(240deg) translate(146%)
}

.sonner-loading-bar:nth-child(10) {
    animation-delay: -.3s;
    transform: rotate(270deg) translate(146%)
}

.sonner-loading-bar:nth-child(11) {
    animation-delay: -.2s;
    transform: rotate(300deg) translate(146%)
}

.sonner-loading-bar:nth-child(12) {
    animation-delay: -.1s;
    transform: rotate(330deg) translate(146%)
}

@keyframes sonner-fade-in {
    0% {
        opacity: 0;
        transform: scale(.8)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes sonner-fade-out {
    0% {
        opacity: 1;
        transform: scale(1)
    }
    to {
        opacity: 0;
        transform: scale(.8)
    }
}

@keyframes sonner-spin {
    0% {
        opacity: 1
    }
    to {
        opacity: .15
    }
}

@media (prefers-reduced-motion) {
    [data-sonner-toast], [data-sonner-toast] > *, .sonner-loading-bar {
        transition: none !important;
        animation: none !important
    }
}

.sonner-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: opacity .2s, transform .2s
}

.sonner-loader[data-visible=false] {
    opacity: 0;
    transform: scale(.8) translate(-50%, -50%)
}


@keyframes shimmer {
    0% {
        transform: translateX(-100%) skew(-20deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%) skew(-20deg);
        opacity: 0;
    }
}

.shimmer-animation {
    animation: shimmer 3s ease-in-out infinite;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skew(-20deg);
}

.button-center {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* GEO / AI-search content blocks */
.geo-ai-section {
    direction: ltr;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
    font-family: "Inter", Arial, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.geo-ai-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 56px 20px;
}

.geo-kicker {
    display: inline-block;
    margin: 0 0 12px;
    color: #0369a1;
    font-size: 14px;
    font-weight: 800;
}

.geo-ai-section h2 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.geo-ai-section h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 800;
}

.geo-ai-section p,
.geo-ai-section li {
    color: #374151;
    font-size: 17px;
    line-height: 1.75;
}

.geo-ai-section a {
    color: #0369a1;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.geo-summary,
.geo-card,
.geo-risk,
.geo-faq details {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.geo-summary {
    padding: 24px;
    margin: 22px 0;
}

.geo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.geo-card {
    padding: 22px;
}

.geo-risk {
    padding: 22px;
    margin: 24px 0;
    border-left: 4px solid #0ea5e9;
}

.geo-risk strong {
    color: #0f172a;
}

.geo-table-wrap {
    margin: 24px 0;
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
}

.geo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.geo-table caption {
    padding: 16px 18px;
    color: #0f172a;
    font-weight: 800;
    text-align: left;
}

.geo-table th,
.geo-table td {
    padding: 15px 18px;
    border-top: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
}

.geo-table th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 800;
}

.geo-steps {
    counter-reset: geo-step;
    display: grid;
    gap: 14px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.geo-steps li {
    counter-increment: geo-step;
    position: relative;
    padding: 18px 20px 18px 64px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.geo-steps li::before {
    content: counter(geo-step);
    position: absolute;
    top: 18px;
    left: 20px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #0284c7;
    border-radius: 999px;
    font-weight: 900;
}

.geo-faq {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.geo-faq details {
    padding: 18px 20px;
}

.geo-faq summary {
    cursor: pointer;
    color: #111827;
    font-size: 18px;
    font-weight: 800;
}

.geo-source-list {
    margin: 18px 0 0;
    padding: 0 0 0 22px;
}

html,
body {
    direction: ltr;
    scroll-behavior: smooth;
    text-align: left;
}

.text-right {
    text-align: left !important;
}

@media (min-width: 1024px) {
    .lg\:text-left,
    .lg\:text-right {
        text-align: left !important;
    }
}

.ltr\:space-x-reverse:where([dir=ltr], [dir=ltr] *) > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0 !important;
}

input[name="phone"] {
    padding-left: 112px !important;
    padding-right: 12px !important;
    direction: ltr !important;
    text-align: left !important;
}

.iti,
.intl-tel-input {
    width: 100%;
    direction: ltr;
}

.iti input,
.intl-tel-input input {
    direction: ltr !important;
    text-align: left !important;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type="tel"],
.iti--allow-dropdown input[type="text"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="tel"],
.iti--separate-dial-code input[type="text"],
.intl-tel-input.allow-dropdown input,
.intl-tel-input.separate-dial-code input {
    padding-left: 112px !important;
    padding-right: 12px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    direction: ltr !important;
    text-align: left !important;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container,
.intl-tel-input.allow-dropdown .flag-container,
.intl-tel-input.separate-dial-code .flag-container {
    left: 0 !important;
    right: auto !important;
}

.iti__selected-flag,
.intl-tel-input .selected-flag {
    flex-direction: row !important;
    direction: ltr !important;
}

.iti--separate-dial-code .iti__selected-dial-code,
.intl-tel-input.separate-dial-code .selected-dial-code {
    margin-left: 6px !important;
    margin-right: 0 !important;
}

.font-english {
    font-family: Inter, Arial, Helvetica, sans-serif;
}

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

    .geo-ai-container {
        padding: 42px 16px;
    }
}

/* Header: same width as feature cards (container > max-w-7xl) */
header.bg-white {
    display: block;
    width: 100%;
}

header.bg-white > .container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

header.bg-white > .container > .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 5.5rem;
    width: 100%;
    max-width: 80rem;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

header.bg-white nav[class*="lg:flex"] {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.25rem;
    margin-left: 0;
    margin-right: 0;
}

header.bg-white nav a,
header.bg-white nav button {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    flex-shrink: 1;
}

/*
 * Full desktop nav needs ~1280px; at lg (1024px) it collides with CTAs.
 * Keep hamburger + mobile menu until xl.
 */
@media (max-width: 1279px) {
    header.bg-white nav[class*="lg:flex"] {
        display: none !important;
    }

    header.bg-white #menu-toggle {
        display: inline-flex !important;
    }

    header.bg-white #mobile-menu.hidden {
        display: none !important;
    }

    header.bg-white #mobile-menu:not(.hidden) {
        display: block !important;
    }

    header.bg-white .max-w-\[42\%\] {
        max-width: none;
    }
}

@media (min-width: 1280px) {
    header.bg-white nav[class*="lg:flex"] {
        display: flex !important;
    }

    header.bg-white #menu-toggle {
        display: none !important;
    }

    header.bg-white #mobile-menu {
        display: none !important;
    }
}

/* Trust badges row — responsive (hero + CTA) */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    justify-items: center;
    align-items: center;
    padding: 2rem 0.5rem 0;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
    text-align: start;
    background: none;
    border: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
}

button.trust-badge {
    cursor: pointer;
}

.trust-badge svg {
    flex-shrink: 0;
}

.trust-badge span {
    font-size: 0.875rem;
    line-height: 1.25;
}

.trust-badges--compact {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: 1.5rem;
    margin-top: 0;
}

@media (min-width: 480px) {
    .trust-badges--compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .trust-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 2rem;
        padding: 4rem 0.5rem 0;
        margin-top: 4rem;
    }

    .trust-badge span {
        font-size: 1.125rem;
    }

    .trust-badges--compact {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 2rem;
        padding-top: 2rem;
    }

    .trust-badges--compact .trust-badge span {
        font-size: 0.875rem;
    }
}

/* Pricing CTA: fit text + icons; wrap text so arrow never overlaps */
.cta-topup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-topup-btn span {
    min-width: 0;
    flex: 1 1 auto;
}

.cta-topup-btn svg {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}

@media (min-width: 480px) {
    .cta-topup-btn {
        gap: 0.75rem;
        padding: 1rem 1.25rem;
        font-size: 1.125rem;
    }

    .cta-topup-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Contact info cards — unified layout, email wraps at 375px */
.contact-info-card__body {
    box-sizing: border-box;
    padding: 1.25rem;
}

.contact-info-card__row {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.contact-info-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
}

.contact-info-card__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-info-card__text {
    flex: 1 1 auto;
    min-width: 0;
}

.contact-info-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-info-card__title a {
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-info-card__subtitle {
    margin: 0.35rem 0 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .contact-info-card__body {
        padding: 2rem;
    }

    .contact-info-card__row {
        gap: 1.5rem;
    }

    .contact-info-card__icon {
        width: 5rem;
        height: 5rem;
    }

    .contact-info-card__icon svg {
        width: 2.5rem;
        height: 2.5rem;
    }

    .contact-info-card__title {
        font-size: 1.5rem;
    }

    .contact-info-card__subtitle {
        font-size: 1.125rem;
    }
}

/* Offer countdown timer — wrap gracefully for longer locales */
.offer-timer {
    display: block;
    width: 100%;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.offer-timer__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
}

.offer-timer__label {
    flex: 1 1 10rem;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    justify-content: center;
    text-align: center;
}

.offer-timer__label span {
    line-height: 1.3;
    text-wrap: balance;
}

.offer-timer__digits {
    flex: 0 1 auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Plan subscribe CTA — fit text on narrow screens / longer locales */
.plan-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
    font-size: clamp(0.95rem, 2.4vw, 1.15rem);
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    transition: transform 0.3s ease, background-color 0.2s ease;
}

.plan-cta-btn svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.plan-cta-btn span {
    min-width: 0;
    flex: 0 1 auto;
    text-wrap: balance;
}

@media (min-width: 480px) {
    .plan-cta-btn {
        padding: 1.15rem 1.25rem;
        font-size: clamp(1rem, 2.2vw, 1.2rem);
    }

    .plan-cta-btn svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Floating "Most requested offer" badge */
.offer-badge-wrap {
    position: absolute;
    top: -1.1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: max-content;
    max-width: calc(100% - 1rem);
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #ef4444, #ec4899);
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

.offer-badge__emoji {
    flex-shrink: 0;
    font-size: 0.85rem;
    line-height: 1;
}

.offer-badge__text {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

@media (min-width: 480px) {
    .offer-badge-wrap {
        top: -1.5rem;
    }

    .offer-badge {
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
    }

    .offer-badge__emoji {
        font-size: 1rem;
    }

    .offer-badge__text {
        font-size: 0.875rem;
    }
}

/* Analytics daily chart — mobile friendly */
.analytics-chart-card {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.analytics-chart-title {
    font-size: 1.1rem;
    line-height: 1.35;
    flex-wrap: wrap;
}

.analytics-chart-title__text {
    min-width: 0;
    display: inline;
}

.analytics-chart-title__range {
    display: inline;
    white-space: nowrap;
}

.analytics-chart-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.analytics-chart-scroll [data-chart="chart-r2s"] {
    min-width: 520px;
    width: 100%;
    height: 20rem;
    aspect-ratio: auto;
    max-height: 20rem;
}

.analytics-chart-scroll .recharts-responsive-container,
.analytics-chart-scroll .recharts-wrapper {
    width: 100% !important;
    max-width: none !important;
    height: 320px !important;
}

.analytics-chart-scroll .recharts-surface {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
}

@media (min-width: 768px) {
    .analytics-chart-scroll {
        overflow: visible;
    }

    .analytics-chart-scroll [data-chart="chart-r2s"] {
        min-width: 0;
    }

    .analytics-chart-title {
        font-size: 1.5rem;
    }

    .analytics-chart-card__head {
        padding: 1.5rem;
    }

    .analytics-chart-card__body {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Device distribution pie — stay inside card */
.analytics-pie-card {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.analytics-pie-chart {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 16rem;
    aspect-ratio: auto;
    overflow: hidden;
}

.analytics-pie-chart .recharts-responsive-container,
.analytics-pie-chart .recharts-wrapper {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.analytics-pie-chart .recharts-surface {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .analytics-pie-chart {
        height: 20rem;
    }
}

/* About — company info card on small screens */
.about-company-card {
    box-sizing: border-box;
}

.about-company-card__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    text-align: center;
}

.about-company-card__icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: #2563eb;
}

.about-company-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
    text-align: center;
}

.about-company-card__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #374151;
    text-align: center;
}

@media (min-width: 640px) {
    .about-company-card__head {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .about-company-card__title {
        font-size: 1.125rem;
        text-align: left;
    }

    .about-company-card__text {
        font-size: 1rem;
    }
}

/* Home CTA: cumulative profit plan heading */
.cta-profit-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    line-height: 1.3;
}

.cta-profit-title__icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.cta-profit-title__icon--side {
    display: none;
}

.cta-profit-title__text {
    display: block;
    max-width: 22rem;
}

@media (min-width: 640px) {
    .cta-profit-title {
        flex-direction: row;
        gap: 0.75rem;
    }

    .cta-profit-title__icon {
        width: 1.75rem;
        height: 1.75rem;
    }

    .cta-profit-title__icon--side {
        display: block;
    }

    .cta-profit-title__text {
        max-width: none;
    }
}

/* Home CTA: Create a free account */
.cta-free-account {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    text-decoration: none;
    overflow: hidden;
    border: 0;
}

.cta-free-account__inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
    z-index: 1;
}

.cta-free-account__inner > span {
    font-size: 0.95rem;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
}

.cta-free-account__inner svg {
    flex-shrink: 0;
    width: 1.15rem;
    height: 1.15rem;
}

@media (min-width: 480px) {
    .cta-free-account {
        width: auto;
        padding: 1.25rem 2.5rem;
        border-radius: 1rem;
    }

    .cta-free-account__inner {
        gap: 0.75rem;
    }

    .cta-free-account__inner > span {
        font-size: 1.25rem;
        white-space: nowrap;
    }

    .cta-free-account__inner svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}


/* Start now CTA — responsive size */
.cta-start-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    line-height: 1.25;
    border-radius: 1rem;
    text-decoration: none;
    white-space: normal;
}

.cta-start-now .relative {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
    flex-wrap: wrap;
}

.cta-start-now svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.cta-start-now span {
    min-width: 0;
    text-align: center;
}

@media (min-width: 480px) {
    .cta-start-now {
        padding: 2rem 4rem;
        font-size: 1.5rem;
        white-space: nowrap;
    }

    .cta-start-now .relative {
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .cta-start-now svg {
        width: 2rem;
        height: 2rem;
    }
}

/* Breadcrumbs — glass pill inside dark heroes */
.breadcrumbs {
    position: relative;
    z-index: 20;
    padding: 0.25rem 0 0;
    margin: 0 0 1.75rem;
    background: transparent;
    border: none;
    text-align: center;
}

.breadcrumbs .container {
    max-width: 1400px;
    display: flex;
    justify-content: center;
}

.breadcrumb-list {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    max-width: 100%;
    padding: 0.55rem 1.15rem;
    margin: 0;
    list-style: none;
    font-size: 0.875rem;
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.3;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
}

.breadcrumb-list li:not(:last-child)::after {
    content: "";
    width: 0.35rem;
    height: 0.35rem;
    margin-left: 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
}

.breadcrumb-list a {
    color: rgba(226, 232, 240, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
    color: #ffffff;
}

.breadcrumb-list li[aria-current="page"] {
    color: #ffffff;
    font-weight: 700;
}

/* Light pages — sit inside page background, not a separate strip */
.breadcrumbs--surface {
    margin: 0 0 1.5rem;
    padding: 0.25rem 0 0;
    background: transparent;
}

.breadcrumbs--surface .breadcrumb-list {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.breadcrumbs--surface .breadcrumb-list li {
    color: #0f172a;
}

.breadcrumbs--surface .breadcrumb-list li:not(:last-child)::after {
    background: #94a3b8;
}

.breadcrumbs--surface .breadcrumb-list a {
    color: #64748b;
}

.breadcrumbs--surface .breadcrumb-list a:hover {
    color: #2563eb;
}

.breadcrumbs--surface .breadcrumb-list li[aria-current="page"] {
    color: #0f172a;
}

/* Dark hero pages — pinned under sticky header */
.breadcrumbs--hero-top {
    position: absolute;
    top: 2.25rem;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    z-index: 30;
}

/* Contact form popup */
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup_title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.popup-content {
    background: #fff;
    color: #000;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

