:root {
--gray-0: #ffffff;
--gray-50: #f9fafb;
--gray-100: #f3f4f6;
--gray-200: #e5e7eb;
--gray-300: #d1d5db;
--gray-400: #9ca3af;
--gray-500: #6b7280;
--gray-600: #4b5563;
--gray-700: #374151;
--gray-800: #1f2933;
--gray-900: #111827;
--text-muted: var(--gray-600);
--caption-ink: var(--gray-500);
--card-surface: var(--gray-0);
--card-border: var(--gray-200);
--pitch-black: #090302;
--z-overlay: 10000;
--z-utility: 6000;
--z-header: 5000;
--z-mobile-overlay: 7000;
--brand-ink: #0F4C81;
--accent: #0081F8;
--bg: #F4F8FA;
--muted: #7B8C99;
--success: #2E8B57;
--warning: #E7A94E;
--danger: #D64545;
--text: #0f1720;
--surface: var(--bg);
--link-color: var(--accent);
--surface-strong: #ffffff;
--surface-soft: #e4edf4;
--surface-elevated: #ffffff;
--border-subtle: #d7e2ec;
--border-strong: #9fb4c9;
--focus-ring: #60A5FA;
--shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.10);
--hero-bg: radial-gradient(circle at top left, #E0F2FE, #F9FAFB);
--hero-ink: #0B1120;
--ink-dark: #111;
--muted-dark: #333;
--ink: #f4f4f4;
--pill-border: var(--border-subtle);
--pill-bg: var(--surface-strong);
--stars-gold: #F5C518;
--btn-ink: #111;
--btn-bg: #FFB703;
--quotes-bg: #e3e3e3;
--help-bg: #fff;
--help-fg: #1a1a1a;
--help-accent: #007BFF;
--help-border: #ededed;
--help-shadow: 0 4px 12px rgba(0,0,0,.05);
--help-accent-ink: #0f55c7;
--help-accent-bg: rgba(0,123,255,.08);
--help-accent-bg-hover: rgba(0,123,255,.14);
--help-accent-border: rgba(0,123,255,.28);
--utility-bar-height: 44px;
}

body {
margin: 0;
padding: 0;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 1.6;
min-height: 100%;
display: flex;
flex-direction: column;
animation: fadeIn 1s ease-in-out;
color: var(--text);
background-color: var(--surface);
}

h1 {
white-space: normal;
text-wrap: balance;
text-wrap: pretty;
hyphens: auto;
font-size: clamp(3.0rem, 5.4vw, 2.05rem);
line-height: 1.22;
margin-bottom: 0.6rem;
}

h1 small {
display: block;
font-size: 2.5rem;
font-weight: 400;
font-style: italic;
opacity: 0.85;
margin-top: 0.2rem;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-title {
font-size: 42px;
white-space: normal;
text-wrap: balance;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-subtitle {
font-size: 24px;
text-align: center;
margin-top: 16px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.btn-primary {
background-color: var(--accent);
color: #ffffff;
border-color: var(--accent);
}

/* __UNUSED_RULE_END__ */

.btn-primary:hover {
background-color: #0065c0;
border-color: #0065c0;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.link {
color: var(--link-color);
}

/* __UNUSED_RULE_END__ */

.link:hover {
color: #0053a8;
}

.card {
background-color: var(--surface-strong);
border-color: var(--border-subtle);
box-shadow: var(--shadow-soft);
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.card-subtle {
background-color: var(--surface-soft);
border-color: transparent;
box-shadow: none;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.input {
border-color: var(--border-subtle);
background-color: #ffffff;
}

/* __UNUSED_RULE_END__ */

.input:focus {
outline: 2px solid var(--focus-ring);
outline-offset: 2px;
border-color: var(--focus-ring);
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.badge-success {
background-color: rgba(46,139,87,0.10);
color: var(--success);
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.badge-danger {
background-color: rgba(214,69,69,0.10);
color: var(--danger);
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-banner-container {
position: relative;
width: 100%;
height: auto;
overflow: hidden;
--hero-overlay: 0.30;
isolation: isolate;
display: flex;
align-items: center;
justify-content: center;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.top-part {
display: flex;
flex-direction: column;
align-items: center;
gap: clamp(2px, .6svh, 10px);
--raise: clamp(4px, 1.5svh, 24px);
--after-gap: clamp(6px, 1.2svh, 16px);
transform: translateY(calc(-1 * var(--raise)));
padding-bottom: var(--after-gap);
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-banner-image {
display: block;
width: 100%;
height: 100%;
position: absolute;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
z-index: 1;
isolation: isolate;
overflow: clip;
}

/* __UNUSED_RULE_END__ */

.hero-banner-image > img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-banner-overlay {
position: absolute;
background-size: cover;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 2;
pointer-events: none;
background: linear-gradient(rgba(0,0,0, calc(var(--hero-overlay, .45) + .15)),rgba(0,0,0, var(--hero-overlay, .45)));
isolation: isolate;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-banner-content {
position: relative;
padding: 0px;
margin: 0px;
top: auto;
left: auto;
transform: none;
text-align: center;
z-index: 3;
color: #f4f4f4;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-banner-button {
display: inline-block;
font-size: 18px;
padding: 10px 20px;
margin-top: 20px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
--_bg: var(--cta-bg);
--_fg: var(--cta-fg);
--_bd: var(--cta-border);
border-color: var(--_bd);
background: var(--_bg);
color: var(--_fg);
}

/* __UNUSED_RULE_END__ */

.hero-banner-button:hover {
background: var(--cta-hover-bg);
border-color: var(--cta-hover-bg);
color: var(--_fg);
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
#custom-popup-container {
position: absolute;
right: -100%;
bottom: 64px;
width: 250px;
background-color: #f4f4f4;
border-radius: 6px 0px 0px 6px;
padding: 10px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
transition: right 1.5s ease-out;
z-index: 10;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
#custom-popup-container.show {
right: 0px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.custom-popup-text {
color: #333;
font-size: 16px;
margin-left: 8px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
#hero-banner-progress-bar {
position: absolute;
bottom: 12px;
left: 50%;
transform: translateX(-50%);
display: flex;
z-index: 5;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.progress-bar-item {
width: 180px;
height: 8px;
border-radius: 6px;
background-color: #f4f4f4;
margin-right: 24px;
margin-left: 24px;
cursor: pointer;
opacity: 0.3;
filter: blur(0.1px);
transition: background-color 0.9s ease, opacity 0.6s ease, filter 0.3s ease;
}

/* __UNUSED_RULE_END__ */

.progress-bar-item.active {
background-color: #f4f4f4;
opacity: 0.8;
filter: blur(0px);
}

.progress-bar-item:hover {
background-color: #f4f4f4;
opacity: 0.6;
filter: blur(0px);
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-btn {
--btn-bg: #fff;
--btn-fg: var(--ink-dark);
--btn-bd: #d9d9d9;
--btn-bg-hover: #f7f7f7;
--btn-bg-active: #eee;
--btn-shadow: 0 1px 0 rgba(0,0,0,.04), 0 2px 6px rgba(0,0,0,.06);
appearance: none;
display: inline-block;
border: 1px solid var(--btn-bd);
background: var(--btn-bg);
color: var(--btn-fg);
font: 500 1rem/1.1 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
text-decoration: none;
padding: .8rem 1.15rem;
border-radius: .6rem;
box-shadow: var(--btn-shadow);
cursor: pointer;
user-select: none;
-webkit-tap-highlight-color: transparent;
transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
font-size: clamp(1rem, .95rem + .4vw, 1.125rem);
padding: .9rem 1.25rem;
border-radius: .7rem;
}

/* __UNUSED_RULE_END__ */

.hero-btn:hover {
background: var(--btn-bg-hover);
}

.hero-btn:active {
background: var(--btn-bg-active);
box-shadow: 0 0 0 rgba(0,0,0,0);
}

.hero-btn:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}

.hero-btn[aria-busy="true"], .hero-btn:disabled {
opacity: .6;
cursor: default;
pointer-events: none;
}

.cookie-banner {
opacity: 0;
visibility: hidden;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.9);
color: #fff;
padding: 16px;
text-align: center;
font-size: 14px;
z-index: 1000;
transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.cookie-banner.show {
visibility: visible;
opacity: 1;
}

.cookie-banner a {
color: #00aaff;
text-decoration: underline;
transition: color 0.3s ease;
}

.cookie-buttons {
margin-top: 10px;
}

.cookie-btn {
background-color: #f4f4f4;
color: #333;
border: none;
padding: 8px 16px;
margin: 5px;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.3s ease, color 0.3s ease;
}

.cookie-btn:hover {
background-color: #0056b3;
color: #fff;
}

.cookie-modal {
visibility: hidden;
opacity: 0;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #fff;
color: #333;
padding: 20px;
width: 100%;
max-width: 500px;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
z-index: 1100;
text-align: left;
box-sizing: border-box;
transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal h3 {
margin-top: 0;
font-size: 18px;
border-bottom: 1px solid #ddd;
padding-bottom: 8px;
color: #0056b3;
}

.cookie-modal p {
font-size: 14px;
margin-bottom: 15px;
color: #555;
}

.cookie-modal label {
display: grid;
grid-template-columns: auto 1fr;
vertical-align: middle;
column-gap: 16px;
margin-left: 0px;
margin-bottom: 10px;
font-size: 14px;
color: #333;
cursor: pointer;
}

.cookie-modal input[type="checkbox"] {
margin-left: 0px;
margin-right: 8px;
cursor: pointer;
transform: scale(1.2);
}

.cookie-toggle {
display: flex;
justify-content: space-between;
align-items: center;
margin: 15px 0;
font-size: 14px;
color: #333;
}

.toggle-switch {
position: relative;
display: inline-block;
width: 50px;
height: 24px;
}

.toggle-switch input {
visibility: hidden;
}

.toggle-switch input:checked + .slider {
background-color: #0056b3;
}

.toggle-switch input:checked + .slider::before {
transform: translateX(26px);
}

.toggle-switch.required {
opacity: 0.8;
pointer-events: none;
}

.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: 0.4s;
border-radius: 24px;
}

.slider::before {
position: absolute;
content: "";
height: 20px;
width: 20px;
left: 2px;
bottom: 2px;
background-color: white;
transition: 0.4s;
border-radius: 50%;
}

.toggle-switch.required .slider {
background-color: #bbb;
}

.toggle-switch.required .slider::before {
background-color: #ddd;
}

.toggle-switch.required input:checked + .slider {
background-color: #aaa;
}

.cookie-modal .cookie-buttons {
text-align: center;
margin-top: 15px;
}

.cookie-modal .cookie-btn {
margin-top: 0;
}

.cookie-overlay {
visibility: hidden;
opacity: 0;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1099;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show, .cookie-overlay.show {
opacity: 1;
visibility: visible;
}

.footer {
background-color: #f4f4f4;
color: #666;
font-size: 0.875rem;
padding: 20px 0;
text-align: center;
border-top: 1px solid var(--base-color-border);
}

.footer-container {
max-width: 1128px;
margin: 0 auto;
display: block;
flex-wrap: wrap;
align-items: center;
gap: 16px;
}

.footer-links {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
}

.footer-link {
color: #666;
text-decoration: none;
transition: color 0.3s ease;
transform: translateY(5px);
}

.footer-link:hover {
color: var(--base-color-primary);
}

#footer-cookie-settings-btn {
color: #666;
background-color: #e3e3e3;
border: none;
border-radius: 6px;
padding: 8px 16px;
font-size: 0.875rem;
cursor: pointer;
transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
text-decoration: none;
}

#footer-cookie-settings-btn:hover {
background-color: var(--base-color-secondary);
color: #fff;
transform: translateY(-2px);
}

#footer-cookie-settings-btn:active {
transform: translateY(0);
}

.footer-address {
margin-top: 24px;
text-align: center;
color: #666;
line-height: 1.4;
}

.footer-address p {
margin: 0;
}

.sub-ital {
font-style: italic;
}

.footer-copyright {
margin-top: 16px;
color: #999;
text-align: center;
font-size: 0.75rem;
padding-top: 16px;
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
text-align: center;
margin-right: auto;
margin-left: auto;
max-width: 1128px;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.header-nav-items {
font-weight: bold;
margin-right: 0px;
margin-left: 32px;
text-decoration: none;
color: #333;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.header-image {
height: 50px;
vertical-align: middle;
}

/* __UNUSED_RULE_END__ */

.header-image-h {
height: 50px;
margin-left: -5px;
vertical-align: middle;
}

.hamburger-menu {
display: none;
}

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

.mobile-nav-popup {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,.18);
opacity: 0;
filter: blur(7px);
scale: 1.2;
visibility: hidden;
transition: visibility 0.5s, opacity 0.5s ease, filter 0.5s ease, scale 0.7s ease;
z-index: var(--z-mobile-overlay);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
}

.mobile-nav-popup.show {
display: block;
opacity: 1;
scale: 1.0;
filter: blur(0px);
visibility: visible;
}

.mobile-nav-popup.blur {
filter: blur(2px);
}

.mobile-nav-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(255, 255, 255, 0.9);
padding: 20px 48px;
gap: 8px;
border-radius: 10px;
box-sizing: border-box;
}

.mobile-nav-items {
display: block;
font-size: 18px;
font-weight: 500;
padding-top: 16px;
margin-top: 12px;
text-align: left;
margin-bottom: 12px;
text-decoration: none;
color: #333;
}

.mobile-nav-items + .mobile-nav-items {
border-top: 1px solid rgba(0,0,0,0.10);
padding-top: 6px;
}

.mobile-nav-items:active {
color: #011936;
}

.close-nav {
position: absolute;
top: 8px;
right: 16px;
padding-bottom: 32px;
cursor: pointer;
font-size: 16px;
font-weight: 700;
color: gray;
margin-left: 28px;
margin-bottom: 32px;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.blur {
filter: blur(2px);
}

/* __UNUSED_RULE_END__ */

#utility-bar {
position: sticky;
box-sizing: border-box;
top: 0;
left: 0;
right: 0;
z-index: var(--z-utility);
background: #ececec;
border-bottom: 1px solid var(--border-color);
color: #333;
height: var(--utility-bar-height);
white-space: nowrap;
overflow: hidden;
}

#utility-bar .utility-inner {
display: flex;
align-items: center;
gap: 16px;
width: min(1128px, 100% - 24px);
margin-inline: auto;
height: var(--utility-bar-height);
padding-block: 0;
}

#utility-bar .utility-left {
display: flex;
align-items: center;
gap: 16px;
}

#utility-bar .util-item {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--text-color);
text-decoration: none;
line-height: 1.2;
opacity: 0.9;
}

#utility-bar .util-item:hover {
text-decoration: underline;
opacity: 1;
}

#utility-bar .util-item svg {
display: block;
height: 1.0em;
width: auto;
}

#utility-bar .utility-link {
margin-left: auto;
text-decoration: none;
font-weight: 600;
color: var(--text-color, #333);
opacity: .9;
}

#utility-bar .utility-link:hover {
opacity: 1;
text-decoration: underline;
}

#utility-bar .utility-cta:hover {
background: var(--hover-bg-color);
color: var(--hover-text-color);
border-color: var(--hover-bg-color);
}

#global-header {
position: sticky;
z-index: var(--z-header);
top: var(--utility-bar-height);
background: #f4f4f4;
padding: 10px;
border-bottom: 1px solid var(--border-color);
background-color: var(--gray-0);
isolation: isolate;
}

#global-header .header-cta {
margin-left: auto;
}

.left-wing {
display: flex;
align-items: center;
gap: .6rem;
margin-top: 0;
margin-bottom: 0;
flex: 1 1 auto;
min-width: 0;
}

.left-wing p {
margin: 0;
margin-top: 7px;
line-height: 1.1;
white-space: nowrap;
overflow: hidden;
color: #333;
opacity: 0.8;
}

.slot-inputs input[type="time"] {
width: 100%;
font-size: 1.125rem;
max-width: calc(100% - 10px);
box-sizing: border-box;
}

#slots-list li {
padding: 0.75rem;
font-size: 1.125rem;
}

.modal-actions button {
padding: 0.75rem;
font-size: 1.125rem;
}

#submit-availability {
font-size: 1.125rem;
padding: 1rem;
}

.contact-form {
font-size: 32px;
line-height: 1.5;
max-width: 800px;
width: 90%;
margin-left: auto;
margin-right: auto;
margin-bottom: 64px;
padding: 50px;
background: #f4f4f4;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: all 1s ease;
isolation: isolate;
background-color: #F7FCFE;
}

.contact-form p {
margin: 10px 0;
transition: filter 0.5s ease;
}

.form-group {
display: inline-block;
margin-right: 10px;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
background: transparent;
padding: 8px;
font-size: 32px;
line-height: 1.5;
border: none;
border-bottom: 1px solid var(--muted);
display: inline-flex;
flex-wrap: wrap;
word-break: break-all;
white-space: nowrap;
outline: none;
min-width: 100px;
max-width: 100%;
box-sizing: border-box;
}

.contact-form input.invalid {
border-bottom: 2px solid #d9534f;
background-color: #fff8f8;
transition: border 0.3s ease, background-color 0.3s ease;
}

.contact-form button:hover {
background: var(--cta-hover-bg);
border-color: var(--cta-hover-bg);
color: var(--cta-fg);
}

.contact-form button.disabled {
background-color: #ccc;
color: #666;
cursor: not-allowed;
pointer-events: none;
border: 1px solid #aaa;
}

.char-counter {
font-size: 12px;
color: gray;
visibility: hidden;
opacity: 0;
transition: opacity 0.2s ease, visibility 0.2s ease;
}

.char-counter.show {
visibility: visible;
opacity: 1;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
button.back-btn {
background-color: #f5f5f5;
color: #333;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
transition: all 0.3s ease;
isolation: isolate;
}

/* __UNUSED_RULE_END__ */

button.back-btn:hover {
background-color: #e0e0e0;
color: #000;
border-color: #999;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
button.next-btn {
background: var(--cta-bg);
color: var(--cta-fg);
border: 1px solid var(--cta-border);
border-radius: 4px;
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease, border-color 0.3s ease;
isolation: isolate;
}

/* __UNUSED_RULE_END__ */

button.next-btn:hover {
background: var(--cta-hover-bg);
border-color: var(--cta-hover-bg);
color: var(--cta-fg);
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.loading-dots {
display: inline-block;
font-size: 18px;
font-weight: regular;
color: #666;
}

/* __UNUSED_RULE_END__ */

.loading-dots span {
animation: blink 1.5s infinite;
}

.loading-dots span:nth-child(2) {
animation-delay: 0.3s;
}

.loading-dots span:nth-child(3) {
animation-delay: 0.6s;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.name-infix-row {
display: flex;
gap: 0.5rem;
min-width: 100px;
max-width: 100%;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.input-container {
position: relative;
display: inline-block;
width: 100%;
}

/* __UNUSED_RULE_END__ */

.input-container input {
width: 100%;
padding-right: 30px;
box-sizing: border-box;
}

.input-container .status-icon {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
width: 20px;
height: 20px;
background: transparent;
border-radius: 50%;
display: none;
display: inline-block;
border: 1px solid transparent;
}

.input-container.success input {
border-color: #28a745;
color: #28a745;
}

.input-container.success .status-icon {
display: inline-block;
background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="green" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
background-size: contain;
background-repeat: no-repeat;
background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="green" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
background-size: contain;
background-repeat: no-repeat;
border-color: #28a745;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.input-container.hidden {
opacity: 0;
transform: opacity 0.5s ease;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.input-container.visible {
opacity: 1;
transform: opacity 0.5s ease;
}

/* __UNUSED_RULE_END__ */

.input-container input[readonly]::placeholder {
color: #9aa3ab;
opacity: .8;
}

.input-container input[readonly] {
color: #5b646b;
}

.input-container[data-state="idle"] .status-icon {
opacity: .35;
background: transparent;
border-color: transparent;
}

.input-container[data-state="loading"] .status-icon {
border-color: #c9d3dc;
animation: spin 1s linear infinite;
}

.input-container[data-state="loading"] .status-icon::before {
content: "";
display: block;
width: 100%;
height: 100%;
border-radius: 999px;
border: 2px solid #c9d3dc;
border-top-color: transparent;
}

.input-container[data-state="error"] .status-icon {
background: #fff3f0;
border-color: #d04d3a;
}

.input-container[data-state="error"] .status-icon::before {
content: "!";
display: grid;
place-items: center;
font-weight: 700;
color: #d04d3a;
font-size: .85rem;
}

.input-container[data-state="error"] input:not([readonly]) {
color: #111;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.suggestions {
border: 1px solid #ccc;
border-radius: 6px;
max-height: 200px;
overflow-y: auto;
position: absolute;
background: #fff;
z-index: 1000;
list-style: none;
padding: 0;
margin: 0;
display: none;
width: 100%;
}

/* __UNUSED_RULE_END__ */

.suggestions li {
padding: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
font-size: 0.85em;
}

.suggestions li:hover {
background: #f0f0f0;
}

.suggestions li .alias {
display: block;
font-size: 0.75em;
color: #888;
margin-top: 4px;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
#form-container {
max-width: 600px;
margin: 20px auto;
padding: 20px;
background: #f4f4f4;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
#progress-bar {
position: relative;
width: 100%;
height: 8px;
background: #ddd;
border-radius: 4px;
margin-bottom: 20px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
#progress {
height: 100%;
background: #011936;
width: 0%;
transition: width 0.3s ease;
border-radius: 4px;
}

/* __UNUSED_RULE_END__ */

.form-step {
margin-top: 48px;
margin-bottom: 24px;
opacity: 0;
visibility: hidden;
position: absolute;
top: 0;
left: 0;
width: 100%;
transition: opacity 0.5s ease, visibility 0.5s ease;
}

.form-step.active {
opacity: 1;
visibility: visible;
position: relative;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.call-to-action {
color: #007BFF;
text-decoration: underline;
font-weight: bold;
transition: color 0.3s ease;
}

/* __UNUSED_RULE_END__ */

.call-to-action:hover {
color: #0056b3;
}

.form-step[data-step="final"] {
text-align: center;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.question-title {
font-size: 24px;
margin-bottom: 15px;
font-weight: bold;
}

/* __UNUSED_RULE_END__ */

input {
width: 100%;
padding: 10px;
font-size: 16px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.btn {
padding: 10px 20px;
font-size: 16px;
background-color: #011936;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s;
display: inline-block;
padding: 0.75rem 1.75rem;
font-size: 1rem;
font-weight: 600;
color: var(--btn-ink);
background: var(--btn-bg);
border: none;
border-radius: 2rem;
text-decoration: none;
}

/* __UNUSED_RULE_END__ */

.btn:hover {
background-color: #f4f4f4;
color: #011936;
border: 1px solid #011936;
}

.btn:disabled {
background-color: #ccc;
cursor: not-allowed;
}

.form-success-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
visibility: hidden;
opacity: 0;
transition: opacity 0.5s ease, visibility 0.5s;
z-index: 2000;
isolation: isolate;
}

.form-success-overlay.show {
visibility: visible;
opacity: 1;
}

.form-success-content {
display: block;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(255, 255, 255, 0.9);
padding: 20px;
border-radius: 10px;
text-align: center;
visibility: hidden;
opacity: 0;
z-index: 3000;
isolation: isolate;
}

.form-success-content.show {
visibility: visible;
opacity: 1;
}

.form-success-message {
display: block;
font-size: 14px;
font-weight: 500;
padding-top: 16px;
margin-top: 12px;
margin-right: auto;
margin-left: auto;
margin-bottom: 12px;
color: #333;
z-index: 3001;
}

.form-success-close {
position: absolute;
top: 8px;
right: 16px;
cursor: pointer;
font-size: 16px;
font-weight: 700;
color: gray;
z-index: 3001;
}

.consent-container {
margin-top: 20px;
display: flex;
align-items: center;
gap: 12px;
}

.consent-checkbox {
flex: 0 0 auto;
padding-top: 2px;
}

.consent-text {
flex: 1 1 auto;
min-width: 0;
text-wrap: balance;
}

.consent-label {
display: block;
font-size: 0.975rem;
color: #666;
line-height: 1.6em;
}

.consent-text a {
text-decoration-skip: spaces;
}

.consent-checkbox .terms-checkbox {
margin: 0;
padding: 0;
vertical-align: top;
width: 20px;
height: 20px;
}

.terms-checkbox {
width: 20px;
height: 20px;
border: 2px solid #666;
border-radius: 4px;
border-color: #666;
background-color: #fff;
appearance: none;
cursor: pointer;
transition: background-color 0.2s, border-color 0.2s;
position: relative;
}

.terms-checkbox:checked {
background-color: #333;
border-color: #333;
}

.terms-checkbox.unchecked:not(:checked) {
border-color: var(--warning-border-color);
}

.terms-checkbox:checked::after {
content: "𐄂";
color: white;
font-size: 32px;
font-weight: bold;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
line-height: 1;
vertical-align: middle;
margin-top: -6px;
overflow: hidden;
box-sizing: border-box;
}

.terms-checkbox.pulse {
animation: pulseBorder 0.5s ease-in-out 2;
}

.terms-checkbox:hover {
border-color: #333;
}

.warning {
background-color: var(--warning-bg-color);
border-left: 4px solid var(--warning-border-color);
padding: 10px 15px 10px 64px;
margin: 20px 0;
color: var(--warning-text-color);
font-size: 0.85em;
border-radius: 4px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
position: relative;
visibility: hidden;
opacity: 0;
max-height: 0;
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
overflow: clip;
transition: opacity .25s ease, max-height .35s ease, padding .35s ease, margin .35s ease, visibility 0s linear .35s;
}

.warning.show {
visibility: visible;
opacity: 1;
max-height: 200px;
margin: 20px 0;
padding: 10px 15px 10px 64px;
transition-delay: 0s;
}

.warning::before {
content: "!";
position: absolute;
left: 18px;
top: 50%;
transform: translateY(-50%);
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border: 2px solid var(--warning-text-color);
border-radius: 50%;
background-color: var(--warning-bg-color);
color: var(--warning-text-color);
font-weight: bold;
font-size: 0.8em;
text-align: center;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.warning p {
margin: 0;
}

.other-contact-buttons-container {
text-align: center;
text-decoration: none;
padding-top: 20px;
padding-bottom: 20px;
margin-top: 16px;
margin-bottom: 16px;
border: none;
isolation: isolate;
}

.contact-option-icon {
width: 50px;
text-decoration: none;
border: solid 1px;
border-color: #131313;
filter: brightness(1.0);
border-radius: 12px;
height: auto;
padding: 10px;
margin-right: 20px;
margin-left: 20px;
opacity: 0.3;
scale: 1.0;
transition: filter 0.6s ease, scale 0.6s ease, opacity 0.3s ease;
cursor: pointer;
}

.contact-option-icon:hover {
filter: grayscale(100%) brightness(0.8) contrast(1.2);
opacity: 1;
scale: 1.05;
}

#review-animation-block::-webkit-scrollbar-track {
background-color: transparent;
border-radius: 10px;
margin-block: 10px;
}

#review-animation-block::-webkit-scrollbar-thumb {
background-color: #b3b3b3;
border-radius: 10px;
border: 4px solid transparent;
background-clip: content-box;
}

#review-animation-block::-webkit-scrollbar {
height: 12px;
}

#review-animation-block {
font-size: 20px;
color: #333;
overflow-x: auto;
white-space: nowrap;
max-width: 1128px;
width: 90%;
margin-right: auto;
margin-left: auto;
box-sizing: border-box;
margin-bottom: 64px;
margin-top: 64px;
}

.review-ticker-wrapper {
text-align: center;
}

.review-ticker {
padding-bottom: 20px;
box-sizing: content-box;
display: inline-block;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.review-item {
padding-bottom: 20px;
box-sizing: content-box;
display: inline-block;
max-width: 320px;
margin-right: 50px;
text-align: left;
vertical-align: bottom;
white-space: normal;
margin-top: 32px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.review-rating {
font-size: 16px;
margin-top: 5px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.read-more-btn {
background: #e3e3e3;
color: black;
border: none;
padding: 8px 4px;
cursor: pointer;
margin-top: 12px;
font-size: 12px;
border-radius: 6px;
transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* __UNUSED_RULE_END__ */

.read-more-btn:hover {
background: #0056b3;
color: white;
}

.review-overlay {
visibility: hidden;
opacity: 0;
display: flex;
position: fixed;
background: rgba(0,0,0,0.8);
color: white;
z-index: var(--z-overlay);
align-items: center;
justify-content: center;
flex-direction: column;
text-align: left;
transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
box-sizing: border-box;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
padding: 0;
inset: 0;
overflow: auto;
overscroll-behavior: contain;
padding: 24px;
}

.review-overlay.show {
visibility: visible;
opacity: 1;
}

.review-overlay-content {
background: #333;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px;
border-radius: 14px;
max-width: 80vw;
width: 80%;
margin-left: auto;
margin-right: auto;
max-height: min(85vh, calc(100dvh - 48px));
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
box-sizing: border-box;
display: flex;
flex-direction: column;
min-width: 0;
position: relative;
border: 1px solid #f4f4f4;
max-height: 85vh;
overflow: auto;
-webkit-overflow-scrolling: touch;
width: min(600px, 92vw);
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.reviews-v2 {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
gap: 16px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-card {
background: #fff;
border-radius: 14px;
box-shadow: 0 4px 20px rgba(0,0,0,.06);
padding: 16px;
display: flex;
flex-direction: column;
cursor: pointer;
transition: transform .12s ease, box-shadow .12s ease;
}

/* __UNUSED_RULE_END__ */

.rv2-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 28px rgba(0,0,0,.1);
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-head {
display: flex;
gap: 12px;
align-items: center;
margin-bottom: 10px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-ava {
width: 44px;
height: 44px;
border-radius: 50%;
object-fit: cover;
background: #f2f2f2;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-name {
font-weight: 600;
line-height: 1.2;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-date {
color: #777;
font-size: .9rem;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-stars {
color: #f5a623;
letter-spacing: 1px;
font-size: 0.95rem;
display: block;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-text {
color: #222;
margin-top: 8px;
white-space: pre-line;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-more {
color: #0b66ff;
font-weight: 600;
margin-top: 10px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-overlay {
position: fixed;
inset: 0;
display: grid;
place-items: center;
z-index: var(--z-overlay);
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-overlay__backdrop {
position: absolute;
inset: 0;
background: rgba(0,0,0,.45);
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-overlay__card {
position: relative;
background: #fff;
max-width: min(820px, 92vw);
max-height: 85vh;
overflow: auto;
padding: 24px;
border-radius: 16px;
box-shadow: 0 12px 44px rgba(0,0,0,.3);
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-overlay__close {
position: absolute;
top: 8px;
right: 10px;
background: transparent;
border: 0;
font-size: 28px;
line-height: 1;
cursor: pointer;
color: #555;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.review-avatar {
width: 20px;
height: 20px;
border-radius: 50%;
object-fit: cover;
vertical-align: middle;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.review-date {
color: #777;
margin-left: 8px;
font-size: 0.95em;
}

/* __UNUSED_RULE_END__ */

#reviewTicker .review-item {
display: inline-block;
background: #fff;
border-radius: 12px;
padding: 10px 12px;
margin: 6px 8px;
box-shadow: 0 2px 12px rgba(0,0,0,.06);
width: 360px;
max-width: none;
box-sizing: border-box;
vertical-align: top;
}

#reviewTicker .review-item:hover {
box-shadow: 0 4px 18px rgba(0,0,0,.1);
}

#reviewTicker .read-more-btn {
border: 0;
background: transparent;
color: #0b66ff;
font-weight: 600;
cursor: pointer;
}

#reviewTicker .read-more-btn:focus {
outline: 2px solid #0b66ff55;
outline-offset: 2px;
}

#reviewTicker .review-item:focus {
outline: 2px solid #0b66ff55;
outline-offset: 3px;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.review-text {
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1.5;
min-height: calc(1.5em * 4);
margin-bottom: 5px;
padding-bottom: 5px;
}

/* __UNUSED_RULE_END__ */

#reviewTicker .review-divider {
height: 1px;
background-color: #e6e6e6;
margin-top: 8px;
margin-bottom: 8px;
border-radius: 1px;
}

#reviewTicker .review-meta {
white-space: nowrap;
display: inline-flex;
align-items: center;
gap: 4px;
white-space: nowrap;
line-height: 1.2;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
body.no-scroll {
overflow: hidden;
}

/* __UNUSED_RULE_END__ */

html {
scrollbar-gutter: stable;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv-tabs {
display: flex;
gap: 8px;
margin-bottom: 10px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv-tab {
appearance: none;
border: 0;
background: transparent;
cursor: pointer;
padding: 8px 10px;
border-radius: 8px 8px 0 0;
font-weight: 600;
color: #555;
}

/* __UNUSED_RULE_END__ */

.rv-tab.active {
background: #fff;
color: #111;
box-shadow: 0 -1px 0 #fff, 0 2px 0 #fff;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv-panel {
white-space: pre-wrap;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv2-overlay-header {
position: sticky;
top: 0;
z-index: 4000;
background: #333;
padding-top: 20px;
padding-bottom: 8px;
}

/* __UNUSED_RULE_END__ */

.rv2-overlay-header .rv-tabs {
margin-bottom: 0;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.rv-divider {
height: 1px;
background: rgba(255,255,255,0.08);
margin-top: 2px;
}

/* __UNUSED_RULE_END__ */

.review-overlay-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 20px;
justify-content: center;
}

.review-overlay-actions .overlay-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.9rem 1.25rem;
border-radius: 0.7rem;
font-size: 1rem;
font-weight: 500;
line-height: 1.2;
border-width: 1px;
border-style: solid;
text-decoration: none;
cursor: pointer;
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.review-overlay-actions .overlay-btn-primary {
background: var(--cta-bg, #0081F8);
color: var(--cta-fg, #fff);
border-color: var(--cta-border, rgba(0, 0, 0, 0.08));
box-shadow: var(--btn-shadow);
order: 2;
}

.review-overlay-actions .overlay-btn-primary:hover {
background: var(--cta-hover-bg, #006fe0);
border-color: var(--cta-hover-bg, #006fe0);
}

.review-overlay-actions .overlay-btn-secondary {
background: transparent;
color: #fff;
border-color: rgba(255,255,255,0.5);
box-shadow: none;
order: 1;
}

.review-overlay-actions .overlay-btn-secondary:hover {
background: rgba(255,255,255,0.08);
border-color: rgba(255,255,255,0.7);
}

.stars-container {
display: flex;
align-items: center;
justify-content: center;
gap: .5rem;
padding: .5rem .80rem;
border: 1px solid var(--pill-border);
background-color: var(--pill-bg);
border-radius: 9999px;
flex-wrap: wrap;
width: max-content;
max-width: 100%;
margin-inline: auto;
margin-bottom: 2rem;
transition: transform 0.25s ease;
}

.stars-container.stars-container-left {
margin-inline: 0;
justify-content: flex-start;
}

.stars-link {
text-decoration: none;
color: inherit;
display: block;
transition: transform 0.25s ease;
width: max-content;
margin-left: auto;
margin-right: auto;
}

.stars-container:hover, .stars-container:focus {
transform: translateY(-2px) scale(1.03);
text-decoration: none;
}

.stars {
display: block;
font-size: 1rem;
color: var(--stars-gold);
font-weight: 600;
}

.stars span {
margin-left: 0.5rem;
font-size: 0.9rem;
color: var(--muted-dark);
opacity: 0.85;
}

.stars-link:hover .stars span {
opacity: 1;
}

#abv-fold-stars .stars {
font-size: 0.95rem;
}

#abv-fold-stars .stars span {
font-size: 0.85rem;
}

.review-scroll-shell {
position: relative;
padding-inline: 16px;
padding-block: 10px;
overflow: hidden;
}

.review-scroll-hints {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: space-between;
pointer-events: none;
z-index: 2;
}

.rv-scroll-arrow {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
pointer-events: auto;
cursor: pointer;
font-size: 16px;
line-height: 1;
padding: 6px 10px;
border-radius: 999px;
background-color: rgba(255, 255, 255, 0.55);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(148, 163, 184, 0.45);
color: #6b7280;
opacity: 0;
box-shadow: 0 4px 10px rgba(15, 23, 42, 0.16);
transition: opacity 0.25s ease,
background-color 0.25s ease,
color 0.25s ease,
transform 0.25s ease,
box-shadow 0.25s ease;
}

.rv-scroll-arrow.rv-left {
margin-left: 0;
}

.rv-scroll-arrow.rv-right {
margin-right: 0;
}

.rv-scroll-arrow.rv-active {
opacity: 0.9;
font-weight: 600;
background-color: rgba(255, 255, 255, 0.8);
box-shadow: 0 6px 14px rgba(15, 23, 42, 0.22);
}

.rv-scroll-arrow.rv-disabled {
opacity: 0;
pointer-events: none;
}

.rv-scroll-arrow.rv-active.rv-left {
animation: rv-scroll-pulse-left 1.4s ease-in-out infinite;
}

.rv-scroll-arrow.rv-active.rv-right {
animation: rv-scroll-pulse-right 1.4s ease-in-out infinite;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.counter-container {
display: flex;
justify-content: center;
max-width: 1128px;
width: 90%;
margin-left: auto;
margin-right: auto;
padding: 0px;
margin-top: 64px;
margin-bottom: 16px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.counter {
text-align: center;
margin-left: 64px;
margin-right: 64px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.counter-value {
font-size: 32px;
color: gray;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.counter-plus-sign {
font-size: 24px;
color: gray;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.counter-text {
font-size: 12px;
font-weight: 700;
color: gray;
}

/* __UNUSED_RULE_END__ */

.steps-block {
text-align: center;
max-width: 1128px;
width: 90%;
margin-left: auto;
margin-right: auto;
margin-top: 0px;
margin-bottom: 64px;
box-sizing: border-box;
background: var(--card-surface);
border-radius: 8px;
padding: 0px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
isolation: isolate;
text-wrap: balance;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.steps-block-emailer {
text-align: center;
max-width: 1128px;
width: 90%;
margin-left: auto;
margin-right: auto;
margin-top: 0px;
margin-bottom: 64px;
box-sizing: border-box;
background: var(--gray-50);
border-radius: 8px;
padding: 0px;
overflow: hidden;
}

/* __UNUSED_RULE_END__ */

.steps-item {
padding-bottom: 20px;
box-sizing: content-box;
display: inline-block;
max-width: 300px;
text-align: center;
vertical-align: top;
white-space: normal;
margin-top: 32px;
margin-left: 32px;
margin-right: 32px;
isolation: isolate;
}

.steps-title {
font-size: 24px;
text-align: center;
max-width: 300px;
margin-left: auto;
margin-right: auto;
}

.steps-body {
color: var(--text-muted);
text-align: center;
max-width: 300px;
margin-left: auto;
margin-right: auto;
}

.step-image {
width: 64px;
padding: 16px;
margin: 16px;
vertical-align: middle;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.step-image-emailer {
width: 548px;
padding: 16px;
margin: 16px;
vertical-align: middle;
}

/* __UNUSED_RULE_END__ */

.title {
font-size: 32px;
text-align: center;
margin-top: 48px;
}

.text-animation-wrapper {
text-align: center;
align-items: center;
}

#text-animation-container {
display: inline-block;
}

#text-animation-container p {
font-size: 20px;
color: #333;
white-space: pre;
overflow: hidden;
border-right: .1em solid black;
display: inline-block;
min-width: 1ch;
}

.title-and-animation {
margin-top: 48px;
margin-bottom: 48px;
}

.origin-section {
display: flex;
align-items: center;
justify-content: center;
max-width: 1128px;
width: 90%;
margin-left: auto;
margin-right: auto;
margin-top: 64px;
margin-bottom: 96px;
padding: 0px;
overflow: hidden;
}

.origin-image {
max-width: 364px;
height: auto;
border-radius: 8px;
margin-right: 20px;
}

.origin-content {
flex: 1;
padding: 20px;
font-size: 38px;
}

.vision-section {
text-align: center;
max-width: 1128px;
width: 90%;
margin-left: auto;
margin-right: auto;
margin-top: 64px;
margin-bottom: 96px;
padding: 0px;
overflow: hidden;
isolation: isolate;
}

.vision-image {
max-width: 364px;
height: auto;
border-radius: 8px;
margin-right: 20px;
}

.vision-content {
text-align: left;
margin-left: auto;
margin-right: auto;
flex: 1;
padding: 20px;
font-size: 48px;
}

.quote-block {
font-size: 18px;
max-width: 1128px;
width: 100%;
align-items: center;
margin-left: auto;
margin-right: auto;
justify-content: center;
text-align: center;
margin-top: 96px;
margin-bottom: 64px;
isolation: isolate;
}

.quote-body {
padding: 12px;
max-width: 800px;
text-align: left;
margin-left: auto;
margin-right: auto;
margin-top: 48px;
}

.quote-name {
padding: 12px;
max-width: 800px;
text-align: right;
margin-left: auto;
margin-right: auto;
}

.quote-name-subtext {
font-size: 12px;
color: gray;
padding: 0px;
max-width: 800px;
text-align: right;
margin-left: auto;
margin-right: auto;
}

.quote-image {
display: inline-block;
width: 364px;
margin-left: 48px;
margin-right: 48px;
border-radius: 8px;
}

.quote blockquote {
padding-left: 24px;
border-left: 4px solid #ccc;
margin-left: 16px;
font-style: italic;
color: #666;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.media-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1rem;
margin-top: 1.5rem;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.media-item {
background: #ffffff;
border-radius: .75rem;
padding: .85rem;
box-shadow: 0 4px 10px rgba(15,23,42,0.06);
display: flex;
flex-direction: column;
gap: .35rem;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.media-item-header {
display: flex;
align-items: center;
gap: .5rem;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.media-item-logo {
width: 32px;
height: 32px;
border-radius: 999px;
overflow: hidden;
}

/* __UNUSED_RULE_END__ */

.media-item-logo img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.media-item-title {
font-weight: 600;
font-size: .95rem;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.media-item-meta {
font-size: .8rem;
color: #6b7280;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.media-item-body {
font-size: .9rem;
color: #374151;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.media-item-link {
margin-top: .25rem;
font-size: .85rem;
}

/* __UNUSED_RULE_END__ */

.media-item-link a {
color: #2563eb;
text-decoration: underline;
text-decoration-thickness: .08em;
text-underline-offset: .12em;
}

#gallery.gallery-container {
max-width: 1100px;
margin: 0 auto;
border-radius: 16px;
padding: 24px;
}

#gallery .bg-card-grid {
display: grid;
grid-template-columns: repeat(3, minmax(260px, 1fr));
max-width: 1120px;
gap: 24px;
margin: 0 auto 14px;
align-items: stretch;
justify-content: center;
justify-items: center;
max-width: 100%;
}

#gallery .bg-card {
width: 100%;
display: block;
text-decoration: none;
color: inherit;
border-radius: 12px;
overflow: visible;
transition: transform .3s ease;
}

#gallery .bg-card:hover {
transform: translateY(-2px);
}

#gallery .bg-card:focus-visible {
outline: 2px solid var(--link-color, #1e90ff);
outline-offset: 2px;
}

#gallery .bg-card__image-wrap {
width: 100%;
display: grid;
place-items: center;
aspect-ratio: auto;
height: clamp(260px, 36vw, 540px);
}

#gallery .bg-card__image-wrap > img.bg-card__img {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
display: block;
transition: transform .3s ease;
filter: drop-shadow(0 3px 10px rgba(0,0,0,.12));
will-change: transform, filter;
}

#gallery .bg-card:hover .bg-card__image-wrap > img.bg-card__img, #gallery .bg-card:focus-visible .bg-card__image-wrap > img.bg-card__img {
transform: scale(1.06);
filter: drop-shadow(0 6px 18px rgba(0,0,0,.16));
}

#gallery .gallery-meta {
max-width: 980px;
margin: 14px auto 0;
padding: 8px 4px 0;
border-top: 1px solid #eee;
text-align: center;
}

#gallery .gallery-meta .g-title {
margin: 0 0 4px;
font-size: 1.05rem;
font-weight: 650;
}

#gallery .gallery-meta .g-excerpt {
margin: 0;
color: #666;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body, html {
height: 100%;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.landing-intro {
color: var(--ink);
text-align: center;
padding: 2rem 1rem;
margin-bottom: 1rem;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.darkened-text {
color: var(--ink-dark);
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.mute-darkened-tex {
color: var(--muted-dark);
}

/* __UNUSED_RULE_END__ */

.landing-intro h2 {
font-size: 1.25rem;
opacity: 0.8;
font-size: clamp(1.125rem, 1rem + 0.7vw, 1.5rem);
font-weight: 500;
line-height: 1.5;
text-wrap: balance;
text-wrap: pretty;
hyphens: auto;
overflow-wrap: break-word;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.action-image__img {
display: block;
width: 700px;
height: auto;
max-width: 80%;
border-radius: 12px;
margin: 0 auto;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.action-image-content {
position: relative;
text-align: center;
max-width: 90%;
padding: 1rem;
}

/* __UNUSED_RULE_END__ */

.weight-main {
font-weight: 600;
}

.weight-strong {
font-weight: 800;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.weight-light {
font-weight: 400;
opacity: 0.95;
}

/* __UNUSED_RULE_END__ */

.weight-light i {
font-style: italic;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.subtitle-container-new {
max-width: 75ch;
margin-inline: auto;
padding-inline: 1rem;
margin-left: auto;
margin-right: auto;
}

/* __UNUSED_RULE_END__ */

.subtitle-container-new h2 {
font-size: 0.8rem;
color: var(--ink);
}

h2 {
font-size: 1.25rem;
font-weight: 400;
opacity: 0.8;
margin-bottom: 2rem;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.landing-arrow {
width: 140px;
margin-bottom: -1.2rem;
margin-left: -5rem;
margin-right: 1rem;
background: transparent;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.note {
margin-top: 1rem;
margin-bottom: 3rem;
font-size: 0.85rem;
opacity: 0.5;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.landing-review-quotes {
display: flex;
flex-direction: row;
gap: 1.5rem;
justify-content: center;
margin-left: auto;
margin-right: auto;
margin-top: auto;
z-index: 200000;
flex-wrap: nowrap;
overflow-x: auto;
padding: 0 1rem;
padding-inline: 0.5rem;
overscroll-behavior-x: contain;
-webkit-overflow-scrolling: touch;
position: absolute;
left: clamp(8px, 4vw, 48px);
right: clamp(8px, 4vw, 48px);
bottom: clamp(8px, 2vh, 24px);
display: flex;
gap: 1.2rem;
justify-content: center;
align-items: flex-start;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.landing-review-quote-item {
padding: 1rem;
min-width: 240px;
margin: 0;
font-size: 0.85rem;
opacity: 0.85;
color: var(--ink);
max-width: 300px;
text-wrap: balance;
text-wrap: pretty;
margin: 0;
font-size: clamp(.8rem, .9vw + .6rem, 1rem);
opacity: .85;
flex: 0 0 auto;
}

/* __UNUSED_RULE_END__ */

.landing-review-quote-item footer {
margin-top: 0.5rem;
text-align: right;
font-style: normal;
font-weight: 600;
color: var(--ink);
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.eyebrow {
font-variant-caps: all-small-caps;
text-transform: none;
letter-spacing: .08em;
font-size: clamp(.8rem, .7rem + .4vw, .95rem);
line-height: 1.1;
opacity: .9;
margin-bottom: 2rem;
color: var(--muted, #e3e3e3);
text-wrap: balance;
text-wrap: pretty;
}

/* __UNUSED_RULE_END__ */

.mobile {
display: block;
}

.desktop {
display: none;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.features {
padding: 3rem 1rem;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.features-container {
display: flex;
flex-direction: column;
gap: 2rem;
align-items: center;
max-width: 700px;
margin: 0 auto;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.feature-item {
display: flex;
align-items: center;
gap: 0.75rem;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.feature-box {
background: #a9a9a9;
padding: 1rem;
border-radius: 0.5rem;
font-weight: 300;
text-align: center;
flex-shrink: 0;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.feature-arrow {
font-size: 1.5rem;
color: #333;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.feature-desc {
font-size: 0.95rem;
color: #c57654;
font-weight: 600;
opacity: 1;
padding: 1rem;
border-radius: 0.5rem;
border: 2px solid #c57654;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.training-features {
color: #111;
text-align: center;
padding: 2rem 1rem;
margin-bottom: 1rem;
}

/* __UNUSED_RULE_END__ */

.training-features h1 {
font-size: 2.5rem;
margin-bottom: 0.8rem;
}

.training-features h2 {
font-size: 1.25rem;
opacity: 0.8;
}

.cta-alignment-wrapper {
display: flex;
justify-content: center;
margin-top: 2rem;
}

.cta {
display: inline-block;
padding: 8px 12px;
text-decoration: none;
transition: background .2s, color .2s, border-color .2s;
--_bg: var(--cta-bg, #0081F8);
--_fg: var(--cta-fg, #fff);
--_bd: var(--cta-border, rgba(0,0,0,.08));
--_bgH: var(--cta-hover-bg, #006fe0);
background: var(--_bg);
color: var(--_fg);
border: 1px solid var(--_bd);
box-shadow: var(--btn-shadow);
cursor: pointer;
user-select: none;
transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
font-size: clamp(1rem, .95rem + .4vw, 1.125rem);
font-weight: 500;
padding: .9rem 1.25rem;
border-radius: .7rem;
margin-left: auto;
margin-right: auto;
}

.cta:hover {
background: var(--_bgH);
border-color: var(--_bgH);
}

.cta:focus-visible {
outline: 2px solid var(--focus-ring, #7bb0ff);
outline-offset: 2px;
}

.final-cta-container {
width: 600px;
max-width: 90%;
padding: 2rem 1rem;
border-radius: 8px;
margin-bottom: 2rem;
margin-left: auto;
margin-right: auto;
}

.final-cta-title {
margin-bottom: 1rem;
font-size: 1.75rem;
color: #111;
font-weight: 500;
text-wrap: balance;
text-wrap: pretty;
}

.final-cta-subtitle {
margin-top: 0.5rem;
margin-bottom: 1rem;
font-size: 1.125rem;
color: #555;
line-height: 1.4;
}

.fud-bullet-list {
margin-top: 1.5rem;
}

.fud-bullet-item {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.6rem;
font-size: 1rem;
line-height: 1.4;
}

.fud-bullet-item::before {
content: "✓";
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 0;
top: 0.1rem;
width: 1.2rem;
height: 1.2rem;
border-radius: 50%;
background-color: #2e7d32;
color: #f3f3f3;
font-size: 0.75rem;
font-weight: bold;
}

.final-cta-container .disclaimer {
margin-top: 0.85rem;
font-size: 0.85rem;
line-height: 1.4;
color: #777;
max-width: 60ch;
}

.cta-micro-review {
margin-top: 1.25rem;
padding: 0.875rem 1rem;
border: 1px solid #e5e7eb;
background: #f8fafc;
border-radius: 10px;
box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
}

.cta-micro-review__text {
margin: 0 0 0.75rem 0;
font-size: 0.95rem;
line-height: 1.5;
color: #222;
position: relative;
text-wrap: pretty;
}

.cta-micro-review__author {
display: flex;
align-items: center;
gap: 0.625rem;
}

.cta-micro-review__avatar {
width: 32px;
height: 32px;
border-radius: 999px;
background: #111;
color: #f5f5f5;
font-size: 0.75rem;
font-weight: 600;
display: inline-flex;
align-items: center;
justify-content: center;
letter-spacing: 0.02em;
}

.cta-micro-review__meta {
display: inline-flex;
flex-direction: column;
gap: 0.1rem;
}

.cta-micro-review__name {
font-size: 0.9rem;
font-weight: 600;
color: #111;
}

.cta-micro-review__extra {
font-size: 0.8rem;
color: #555;
}

.sr-only {
position: absolute !important;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border: 0;
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}

.hero-alt {
background: var(--pitch-black);
color: var(--ink);
padding: 3.5rem 1.5rem;
}

.hero-alt-inner {
max-width: 1128px;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: column;
gap: 2.5rem;
}

.hero-alt-content {
flex: 1;
max-width: 540px;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-kicker {
font-size: .875rem;
letter-spacing: .08em;
text-transform: uppercase;
margin-bottom: .75rem;
color: var(--muted);
}

/* __UNUSED_RULE_END__ */

.hero-alt-title {
font-size: clamp(2rem, 3vw, 2.8rem);
line-height: 1.15;
margin: 0 0 1rem 0;
}

.hero-alt-subtitle {
margin: 0 0 1.75rem 0;
max-width: 32rem;
color: var(--text-muted);
}

.hero-alt-form {
display: flex;
flex-direction: column;
gap: .75rem;
max-width: 360px;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-form-group {
display: flex;
flex-direction: column;
}

/* __UNUSED_RULE_END__ */

.hero-alt-form-group input[type="text"], .hero-alt-form-group input[type="email"], .hero-alt-form-group input[type="tel"] {
width: 100%;
padding: .7rem .9rem;
border-radius: .5rem;
border: 1px solid #334155;
background-color: rgba(15,23,42,.9);
color: var(--ink);
font-size: 1rem;
}

.hero-alt-form-group input::placeholder {
color: var(--muted);
}

.hero-alt-form-group input:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 1px var(--accent);
}

.hero-alt-submit {
margin-top: .25rem;
}

.hero-alt .consent-container {
margin-top: .75rem;
gap: .75rem;
}

.hero-alt .consent-label {
font-size: .9rem;
line-height: 1.6;
color: var(--ink);
}

.hero-alt .consent-label a {
color: var(--accent);
text-decoration: underline;
text-decoration-thickness: 1px;
}

.hero-alt .consent-label a:hover {
text-decoration: none;
}

.hero-alt .terms-checkbox {
border-color: #64748b;
background-color: rgba(15,23,42,.95);
}

.hero-alt .terms-checkbox:checked {
background-color: var(--accent);
border-color: var(--accent);
}

.hero-alt-media {
flex: 1;
display: flex;
justify-content: center;
}

.hero-alt-media-inline {
display: flex;
}

.hero-alt-media-side {
display: none;
}

.hero-alt-media-frame {
border-radius: 1.25rem;
padding: .75rem;
box-shadow: var(--shadow-soft);
max-width: 420px;
width: 100%;
}

.hero-alt-image {
display: block;
width: 100%;
height: auto;
border-radius: .9rem;
overflow: hidden;
}

.hero-alt-media-frame .hero-banner-image {
display: block;
width: 100%;
height: auto;
border-radius: .9rem;
overflow: hidden;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.problems-main {
padding-block: 40px 80px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.problems-intro {
max-width: 720px;
margin: 0 auto 40px;
padding-inline: 16px;
}

/* __UNUSED_RULE_END__ */

.problems-intro .page-title {
font-size: clamp(2rem, 1.6rem + 1.5vw, 2.5rem);
line-height: 1.15;
margin-bottom: 0.5rem;
text-wrap: balance;
}

.problems-intro .page-subtitle {
margin: 0;
margin-top: 8px;
color: var(--muted-fg, var(--text-muted));
}

.problems-grid-section {
max-width: 1128px;
margin: 32px auto 0;
padding-inline: 16px;
}

.problems-grid {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
}

.problem-card {
display: flex;
flex-direction: column;
height: 100%;
padding: 20px 20px 18px;
border-radius: 16px;
background: var(--card-surface, #fff);
box-shadow: var(--shadow-soft, 0 18px 45px rgba(15,23,42,0.12));
text-decoration: none;
color: inherit;
border: 1px solid var(--card-border, rgba(15,23,42,0.06));
transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.problem-card:hover {
transform: translateY(-2px);
box-shadow: 0 22px 60px rgba(15,23,42,0.16);
border-color: var(--border-strong, rgba(15,23,42,0.16));
}

.problem-card-header {
margin-bottom: 8px;
}

.problem-card-title {
margin: 0 0 6px;
font-size: 1.3rem;
font-weight: 600;
line-height: 1.2;
}

.problem-card-tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
}

.problem-tag {
font-size: 0.8rem;
line-height: 1.2;
padding: 0.18rem 0.55rem;
border-radius: 999px;
border: 1px solid var(--pill-border);
background: var(--pill-bg);
color: var(--caption-ink);
}

.problem-card-excerpt {
margin: 0 0 12px;
font-size: 0.98rem;
color: var(--text-muted);
}

.problem-card-lists {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 14px;
font-size: 0.95rem;
}

.problem-card-list {
flex: 1;
min-width: 0;
}

.problem-card-label {
margin: 0 0 4px;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: .05em;
text-transform: uppercase;
color: var(--caption-ink);
}

.problem-card-list ul {
margin: 0;
padding-left: 1.1rem;
list-style: disc;
}

.problem-card-list li {
margin-bottom: 3px;
}

.problem-card-link {
margin-top: auto;
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 0.9rem;
font-weight: 500;
color: var(--accent);
}

.problem-card:hover .problem-card-link {
color: var(--brand-ink);
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.problems-page-contact-cta {
margin-top: 56px;
text-align: center;
padding-inline: 16px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.problems-page-contact-cta-title {
margin-bottom: 16px;
font-size: clamp(1.6rem, 1.3rem + 0.8vw, 2rem);
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.problem-article-main {
padding-block: 40px 80px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.problem-article-shell {
max-width: 800px;
margin: 0 auto;
padding-inline: 16px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.problem-article-header {
margin-bottom: 24px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.problem-article-nav {
margin-bottom: 8px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.problem-back-link {
display: inline-flex;
align-items: center;
gap: .4rem;
font-size: .875rem;
padding: 6px 12px;
border-radius: 9999px;
background: var(--surface-soft, #f3f4f6);
color: var(--muted-fg, #444);
text-decoration: none;
border: 1px solid rgba(0,0,0,0.04);
transition: background 0.15s ease, transform 0.15s ease;
}

/* __UNUSED_RULE_END__ */

.problem-back-link:hover {
background: var(--surface-strong, #e5e7eb);
transform: translateY(-1px);
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.problem-back-icon {
font-size: 1rem;
line-height: 1;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.problem-article-title {
font-size: clamp(2rem, 1.6rem + 1.5vw, 2.4rem);
line-height: 1.15;
margin-bottom: 0.5rem;
text-wrap: balance;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.problem-article-subtitle {
margin: 0 0 12px;
color: var(--muted-fg, #444);
}

/* __UNUSED_RULE_END__ */

.problem-article-body h2 {
margin-top: 24px;
margin-bottom: 8px;
font-size: 1.2rem;
}

.problem-article-body p {
margin: 0 0 12px;
line-height: 1.6;
}

.problem-article-body ul {
margin: 0 0 16px 1.2rem;
padding: 0;
}

.problem-article-body li {
margin-bottom: 6px;
}

.hero-alt-steps {
display: grid;
grid-template-columns: 1fr;
position: relative;
}

.hero-alt-step {
grid-area: 1 / 1;
transition: opacity .16s ease, transform .12s ease;
opacity: 0;
transform: translateY(4px);
pointer-events: none;
}

.hero-alt-step--active {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}

.hero-alt-selected {
position: relative;
overflow: hidden;
margin: .35rem 0 0;
padding: .65rem .8rem .7rem;
border-radius: .8rem;
border: 1px solid rgba(148,163,184,.45);
background: var(--gray-900);
margin-top: 1rem;
position: relative;
overflow: hidden;
}

.hero-alt-selected-lead {
margin: 0 0 .3rem 0;
font-size: .78rem;
letter-spacing: .07em;
text-transform: uppercase;
color: #9ca3af;
font-weight: 600;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-selected-body {
position: relative;
}

/* __UNUSED_RULE_END__ */

.hero-alt-selected-list {
margin: 0;
padding: 2px 0;
list-style: none;
box-sizing: border-box;
height: 5.25rem;
overflow-y: auto;
scrollbar-gutter: stable;
display: flex;
flex-direction: column;
gap: .35rem;
padding-top: 2px;
padding-bottom: 2px;
overflow-x: hidden;
}

.hero-alt-selected-empty {
top: 0;
left: 0;
right: 0;
padding: .25rem 0;
margin: 0;
font-size: .85rem;
color: #9ca3af;
pointer-events: none;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-selected-placeholder {
margin: 0;
padding: .25rem 0;
color: #9ca3af;
font-size: .85rem;
line-height: 1.25;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-selected-item {
margin: 0;
color: #f9fafb;
font-size: .9rem;
line-height: 1.25;
transform-origin: left center;
will-change: transform, opacity;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-selected-item--other {
color: #e5e7eb;
opacity: .95;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-selected-item--enter {
animation: heroSelectedItemEnter 180ms ease-out;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-selected-item--exit {
animation: heroSelectedItemExit 140ms ease-in forwards;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-selected-row {
position: relative;
display: flex;
justify-content: space-between;
gap: .5rem;
border: 1px solid rgba(148,163,184,.45);
background: var(--gray-800);
border-radius: .6rem;
padding: .35rem .5rem;
width: 100%;
max-width: 100%;
box-sizing: border-box;
align-items: flex-start;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-selected-label {
flex: 1;
color: #f9fafb;
font-size: .9rem;
line-height: 1.2;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1 1 auto;
min-width: 0;
white-space: normal;
overflow-wrap: anywhere;
word-break: break-word;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-selected-x {
appearance: none;
border: 1px solid rgba(148,163,184,.45);
background: rgba(15,23,42,.9);
color: #e5e7eb;
border-radius: .5rem;
width: 2rem;
height: 2rem;
line-height: 1;
font-size: 1.25rem;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
transition: background .12s ease, border-color .12s ease;
flex: 0 0 auto;
}

/* __UNUSED_RULE_END__ */

.hero-alt-selected-x:hover {
background: rgba(30,64,175,.35);
border-color: rgba(96,165,250,.85);
}

.hero-alt-selected-x:focus {
outline: none;
}

.hero-alt-selected::after {
content: "";
position: absolute;
top: 0;
left: -130%;
width: 130%;
height: 100%;
pointer-events: none;
opacity: 0;
background: linear-gradient(90deg, transparent, rgba(96,165,250,.25), transparent);
}

.hero-alt-selected--pulse::after {
animation: heroSelectedWave 650ms ease-out 1;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-selected--pulse {
animation: heroSelectedGlow 650ms ease-out 1;
}

/* __UNUSED_RULE_END__ */

.hero-alt-search-shell {
background: var(--gray-900);
border: 1px solid rgba(148,163,184,.35);
box-shadow: 0 18px 40px rgba(0,0,0,.85);
border-radius: .95rem;
padding: .85rem;
display: flex;
flex-direction: column;
gap: .55rem;
margin-bottom: .5rem;
min-width: 0;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-privacy-note {
margin: .5rem 0 0;
font-size: .78rem;
color: var(--text-muted);
}

/* __UNUSED_RULE_END__ */

.hero-alt-subtitle--step {
display: none;
}

.hero-alt-search-input-row {
border: 1px solid #334155;
background-color: var(--gray-800);
display: flex;
align-items: center;
gap: .5rem;
border-radius: .75rem;
padding: .35rem .75rem;
width: 100%;
box-sizing: border-box;
min-width: 0;
overflow: hidden;
}

.hero-alt-search-icon {
font-size: 1rem;
}

.hero-alt-search-input {
flex: 1;
border: none;
background: transparent;
color: #e5e7eb;
font-size: 1rem;
min-width: 0;
width: auto;
overflow-x: auto;
white-space: nowrap;
text-overflow: ellipsis;
padding: 0;
margin-bottom: 0;
}

.hero-alt-search-clear {
appearance: none;
border: 1px solid rgba(148,163,184,.45);
background: rgba(15,23,42,.9);
color: #e5e7eb;
border-radius: .55rem;
width: 2rem;
height: 2rem;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
line-height: 1;
font-size: 1.15rem;
flex: 0 0 auto;
transition: background .12s ease, border-color .12s ease;
}

.hero-alt-search-clear:hover {
background: rgba(30,64,175,.35);
border-color: rgba(96,165,250,.85);
}

.hero-alt-search-clear:focus {
outline: none;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
#hero-problem-input {
font-family: inherit;
line-height: 1.35;
resize: none;
max-height: 4.8rem;
overflow-y: auto;
padding: 0;
white-space: pre-wrap;
word-break: break-word;
caret-color: transparent;
}

/* __UNUSED_RULE_END__ */

.hero-alt-search-filter-row {
position: relative;
}

.hero-alt-search-filter-row .hero-alt-search-icon {
font-size: 1.8rem;
line-height: 1;
display: inline-flex;
align-items: center;
justify-content: center;
color: #9ca3af;
flex: 0 0 auto;
}

.hero-alt-search-filter-row:focus-within::before {
opacity: 0;
transform: translateY(-50%) scale(.9);
}

.hero-alt-search-filter-input {
font-size: .95rem;
}

.hero-alt-search-input::placeholder {
color: #9ca3af;
}

.hero-alt-search-input:focus {
outline: none;
}

.hero-alt-search-helper {
margin: 0;
font-size: .8rem;
color: #9ca3af;
}

.hero-alt-search-results {
display: flex;
flex-direction: column;
gap: 0;
}

.hero-alt-suggestions {
margin: 0;
padding: 0 0 .25rem 0;
box-sizing: border-box;
height: 220px;
overflow-y: auto;
list-style: none;
scrollbar-gutter: stable;
display: flex;
flex-direction: column;
gap: .5rem;
position: relative;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-suggestion {
margin: 0;
padding: 0;
width: 100%;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-suggestion-button {
appearance: none;
border: 1px solid rgba(148,163,184,.5);
background: var(--gray-800);
border-radius: .6rem;
padding: .55rem .7rem;
width: 100%;
text-align: left;
display: flex;
flex-direction: column;
gap: .15rem;
cursor: pointer;
transition: background .12s ease, border-color .12s ease, box-shadow .12s ease, transform .06s ease;
color: #e5e7eb;
font-size: .9rem;
position: relative;
}

/* __UNUSED_RULE_END__ */

.hero-alt-suggestion-button:hover {
background: var(--gray-700);
border-color: var(--gray-300);
box-shadow: 0 0 0 1px rgba(37,99,235,0.7);
transform: translateY(-1px);
}

.hero-alt-suggestion-button[aria-selected="true"] {
background: rgba(30,64,175,.96);
border-color: #60a5fa;
box-shadow: 0 0 0 1px rgba(37,99,235,0.7);
transform: translateY(-1px);
}

.hero-alt-suggestion-button[aria-selected="true"]:hover {
background: rgba(59,130,246,1);
border-color: #93c5fd;
box-shadow: 0 0 0 1px rgba(59,130,246,0.85);
transform: translateY(-1px);
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-suggestion-category {
position: sticky;
top: 0;
z-index: 1;
margin: 0;
padding: 0;
gap: 0;
background: var(--gray-900);
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-suggestion-category-label {
margin: 0;
display: block;
font-size: .72rem;
letter-spacing: .12em;
text-transform: uppercase;
color: #9ca3af;
font-weight: 600;
padding: .5rem .1rem .15rem;
box-shadow: 0 1px 0 rgba(15,23,42,.9);
}

/* __UNUSED_RULE_END__ */

.hero-alt-suggestion-category + .hero-alt-suggestion {
margin-top: 0;
}

.hero-alt-suggestion-category + .hero-alt-suggestion .hero-alt-suggestion-button {
margin-top: 0;
}

.hero-alt-suggestions > .hero-alt-suggestion:first-child {
margin-top: 0;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-suggestion-title {
font-weight: 500;
color: #f9fafb;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-suggestion-meta {
font-size: .78rem;
color: #cbd5f5;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.hero-alt-suggestion-highlight {
color: #bfdbfe;
font-weight: 600;
}

/* __UNUSED_RULE_END__ */

.hero-alt-continue {
margin-top: 1rem;
align-self: stretch;
display: inline-flex;
justify-content: center;
align-items: center;
gap: .35rem;
padding: .9rem 1.25rem;
border-radius: .75rem;
border: 1px solid var(--cta-border);
background: var(--gray-800);
color: var(--cta-fg);
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: transform .06s ease, background .12s ease, border-color .12s ease;
}

.hero-alt-continue:hover {
background: var(--gray-700);
border-color: var(--cta-hover-bg);
transform: translateY(-1px);
}

.hero-alt-continue:disabled {
background: var(--gray-700);
opacity: .55;
cursor: default;
box-shadow: none;
transform: none;
}

.hero-alt-continue-label {
font-weight: 600;
}

.hero-alt-continue-sub {
font-size: .8rem;
margin-left: .4rem;
opacity: .85;
}

.hero-alt-back {
margin: 0 0 .75rem 0;
padding: 0;
border: none;
background: none;
color: #9ca3af;
font-size: .85rem;
cursor: pointer;
text-decoration: underline;
text-underline-offset: 2px;
}

.hero-alt-back:hover {
color: #e5e7eb;
}

.nested-navigation-menu--desktop {
position: relative;
display: inline-block;
font-size: 0.95rem;
}

.nested-navigation-menu__trigger {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 0.45rem 0.85rem;
border-radius: 999px;
border: 1px solid rgba(0,0,0,0.06);
background: #ffffff;
cursor: pointer;
font: inherit;
line-height: 1.1;
}

.nested-navigation-menu__trigger-icon {
font-size: 0.7em;
transform-origin: center;
transition: transform 0.15s ease-out;
}

.nested-navigation-menu__panel {
position: absolute;
right: 0;
top: calc(100% + 8px);
min-width: 260px;
max-width: 360px;
max-height: min(60vh, 480px);
overflow: auto;
padding: 8px 0;
border-radius: 12px;
background: #ffffff;
opacity: 0;
pointer-events: none;
transform: translateY(-4px);
transition: opacity 0.15s ease-out, transform 0.15s ease-out;
z-index: 80;
}

.nested-navigation-menu__panel.is-open {
opacity: 1;
pointer-events: auto;
transform: translateY(0);
}

.nested-navigation-menu__list {
list-style: none;
margin: 0;
padding: 0;
}

.nested-navigation-menu__item {
padding-inline: 8px;
}

.nested-navigation-menu__row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 4px;
padding: 4px 8px;
border-radius: 8px;
}

.nested-navigation-menu__link, .nested-navigation-menu__label {
display: inline-flex;
align-items: center;
font-size: 0.92rem;
line-height: 1.3;
text-decoration: none;
color: #111827;
}

.nested-navigation-menu__link:hover {
text-decoration: underline;
}

.nested-navigation-menu__item--level-1 .nested-navigation-menu__row {
padding-left: 16px;
}

.nested-navigation-menu__item--level-2 .nested-navigation-menu__row {
padding-left: 24px;
}

.nested-navigation-menu__item--level-3 .nested-navigation-menu__row {
padding-left: 32px;
}

.nested-navigation-menu__item--level-1 .nested-navigation-menu__link::before,
.nested-navigation-menu__item--level-1 .nested-navigation-menu__label::before,
.nested-navigation-menu__item--level-2 .nested-navigation-menu__link::before,
.nested-navigation-menu__item--level-2 .nested-navigation-menu__label::before,
.nested-navigation-menu__item--level-3 .nested-navigation-menu__link::before,
.nested-navigation-menu__item--level-3 .nested-navigation-menu__label::before {
content: "└─ ";
margin-right: 4px;
opacity: 0.7;
font-size: 0.9em;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.nested-navigation-menu__toggle {
border: 1px solid rgba(0,0,0,0.12);
background: #f5f5f5;
padding: 0;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border-radius: 999px;
flex-shrink: 0;
margin-left: 6px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.nested-navigation-menu__toggle-icon {
font-size: 0.85rem;
line-height: 1;
transform-origin: center;
transition: transform 0.15s ease-out;
}

/* __UNUSED_RULE_END__ */

.nested-navigation-menu__toggle[aria-expanded="true"] .nested-navigation-menu__toggle-icon {
transform: rotate(90deg);
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.nested-navigation-menu__children {
display: none;
padding-top: 2px;
padding-bottom: 2px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.nested-navigation-menu__children.is-open {
display: block;
}

/* __UNUSED_RULE_END__ */

.nested-navigation-menu-mobile__list {
list-style: none;
margin: 0;
padding: 0;
}

.nested-navigation-menu-mobile__item {
margin: 0;
padding: 0;
}

.nested-navigation-menu-mobile__row {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 4px;
}

.nested-navigation-menu-mobile__link, .nested-navigation-menu-mobile__label {
display: block;
padding: 8px 0;
text-decoration: none;
color: inherit;
font-size: 1rem;
text-align: left;
}

/* @pruneable */
/* __UNUSED_RULE_START__ */
.nested-navigation-menu-mobile__children {
display: none;
margin-top: 4px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.nested-navigation-menu-mobile__children.is-open {
display: block;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.nested-navigation-menu-mobile__toggle {
border: 1px solid rgba(0,0,0,0.15);
background: #f5f5f5;
padding: 0;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 999px;
flex-shrink: 0;
margin-left: 8px;
}

/* __UNUSED_RULE_END__ */

/* @pruneable */
/* __UNUSED_RULE_START__ */
.nested-navigation-menu-mobile__toggle-icon {
font-size: 1rem;
line-height: 1;
transform-origin: center;
transition: transform 0.15s ease-out;
}

/* __UNUSED_RULE_END__ */

.nested-navigation-menu-mobile__toggle[aria-expanded="true"] .nested-navigation-menu-mobile__toggle-icon {
transform: rotate(90deg);
}

.nested-navigation-menu-mobile__item + .nested-navigation-menu-mobile__item .mobile-nav-items {
border-top: 1px solid rgba(0,0,0,0.10);
padding-top: 6px;
}

.nested-navigation-menu-mobile__item--level-0 .mobile-nav-items {
padding-left: 0;
}

.nested-navigation-menu-mobile__item--level-1 .mobile-nav-items {
padding-left: 16px;
}

.nested-navigation-menu-mobile__item--level-2 .mobile-nav-items {
padding-left: 24px;
}

.nested-navigation-menu-mobile__item--level-3 .mobile-nav-items {
padding-left: 32px;
}

.nested-navigation-menu-mobile__item--level-1 .mobile-nav-items::before,
.nested-navigation-menu-mobile__item--level-2 .mobile-nav-items::before,
.nested-navigation-menu-mobile__item--level-3 .mobile-nav-items::before {
content: "└─ ";
margin-right: 4px;
opacity: 0.7;
font-size: 0.95em;
}

@keyframes zoomIn {
0% {
transform: scale(1);
}
100% {
transform: scale(1.1);
}
}

@keyframes blink {
0% {
opacity: 0;
}
20% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}

@keyframes spin {
to {
transform: rotate(360deg);
}
}

@keyframes borderDotMotion {
0% {
border-image-source: linear-gradient(to right, rgba(255, 243, 205, 1) 0%, transparent 100%);
}
25% {
border-image-source: linear-gradient(to bottom, rgba(255, 243, 205, 1) 0%, transparent 100%);
}
50% {
border-image-source: linear-gradient(to left, rgba(255, 243, 205, 1) 0%, transparent 100%);
}
75% {
border-image-source: linear-gradient(to top, rgba(255, 243, 205, 1) 0%, transparent 100%);
}
100% {
border-image-source: linear-gradient(to right, rgba(255, 243, 205, 1) 0%, transparent 100%);
}
}

@keyframes pulseBorder {
0% {
border-width: 2px;
}
50% {
border-width: 4px;
}
100% {
border-width: 2px;
}
}

@keyframes rv-scroll-pulse-left {
0%, 100% {
transform: translateX(0);
}
50% {
transform: translateX(-4px);
}
}

@keyframes rv-scroll-pulse-right {
0%, 100% {
transform: translateX(0);
}
50% {
transform: translateX(4px);
}
}

@keyframes shape-float {
0% {
transform: translateY(0) rotate(var(--rot, 0deg));
}
50% {
transform: translateY(-8px) rotate(var(--rot, 0deg));
}
100% {
transform: translateY(0) rotate(var(--rot, 0deg));
}
}

@keyframes heroSelectedWave {
0% {
transform: translateX(0);
opacity: 0;
}
15% {
opacity: 1;
}
100% {
transform: translateX(230%);
opacity: 0;
}
}

@keyframes heroSelectedGlow {
0% {
box-shadow: 0 0 0 rgba(96,165,250,0);
border-color: #334155;
}
35% {
box-shadow: 0 0 0 3px rgba(96,165,250,.18);
border-color: rgba(96,165,250,.55);
}
100% {
box-shadow: 0 0 0 rgba(96,165,250,0);
border-color: #334155;
}
}

@keyframes heroSelectedItemEnter {
0% {
opacity: 0;
transform: translateX(-12px) scale(.98);
}
100% {
opacity: 1;
transform: translateX(0) scale(1);
}
}

@keyframes heroSelectedItemExit {
0% {
opacity: 1;
transform: translateY(0) scale(1);
}
100% {
opacity: 0;
transform: translateY(-6px) scale(.98);
}
}

@media (max-width: 576px) {
.cookie-modal {
width: 75%;
padding: 16px;
}

.cookie-modal h3 {
font-size: 16px;
}

}

@media screen and (max-width: 768px) {
.footer-container {
flex-direction: column;
text-align: center;
}

.footer-links {
justify-content: center;
}

}

@media (max-width: 768px) {
#utility-bar .util-item {
font-size: 0.95em;
}

#utility-bar .utility-left {
gap: 12px;
}

#utility-bar .util-item svg {
height: 1.1em;
}

}

@media (max-width: 420px) {
#utility-bar .util-item {
font-size: 0.9em;
}

#utility-bar .utility-left {
gap: 10px;
}

#utility-bar .util-item svg {
height: 1em;
}

}

@media (max-width: 640px) {
.review-overlay-actions {
flex-direction: column;
align-items: center;
gap: 10px;
}

.review-overlay-actions .overlay-btn {
width: 100%;
max-width: 320px;
}

.review-overlay-actions .overlay-btn-primary {
order: 1;
}

.review-overlay-actions .overlay-btn-secondary {
order: 2;
}

}

@media (min-width: 768px) {
.stars-container {
margin-inline: 0;
justify-content: flex-start;
}

}

@media (prefers-reduced-motion: reduce) {
.rv-scroll-arrow.rv-active.rv-left, .rv-scroll-arrow.rv-active.rv-right {
animation: none;
}

}

@media (min-width: 1024px) {
.review-scroll-hints {
display: none;
}

}

@media screen and (min-width: 1281px) and (max-width: 1920px) {
/* UNUSED RULE START */
.hero-title {
font-size: 32px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.hero-subtitle {
font-size: 20px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.header-image {
height: 42px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.header-nav-items {
font-size: 14px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.hero-banner-button {
padding: 10px 16px;
font-size: 18px;
margin-top: 18px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
#custom-popup-container {
bottom: 64px;
width: 228px;
padding: 8px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.custom-popup-text {
font-size: 16px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-container {
margin-top: 32px;
margin-bottom: 16px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter {
margin-left: 32px;
margin-right: 32px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-value {
font-size: 24px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-plus-sign {
font-size: 16px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-text {
font-size: 10px;
font-weight: 500;
}

/* UNUSED RULE END */

#review-animation-block {
font-size: 16px;
margin-bottom: 24px;
margin-top: 32px;
}

.title {
font-size: 24px;
margin-top: 32px;
}

.title-and-animation {
margin-top: 52px;
margin-bottom: 48px;
}

.steps-block {
width: 80%;
margin-top: 0px;
margin-bottom: 64px;
}

.steps-item {
padding-bottom: 24px;
max-width: 250px;
margin-top: 24px;
margin-left: 32px;
margin-right: 32px;
}

.steps-title {
font-size: 24px;
max-width: 300px;
}

.steps-body {
max-width: 300px;
}

.step-image {
width: 52px;
padding: 8px;
margin: 8px;
}

.origin-section {
display: flex;
width: 90%;
margin-top: 32px;
margin-bottom: 88px;
}

.origin-image {
max-width: 296px;
margin-right: 16px;
}

.origin-content {
font-size: 24px;
}

.quote-block {
font-size: 16px;
width: 80%;
margin-top: 96px;
margin-bottom: 54px;
}

.quote-body {
padding: 12px;
margin-top: 48px;
}

.quote-image {
width: 312px;
margin-left: 12px;
margin-right: 12px;
border-radius: 8px;
}

.vision-section {
margin-top: 48px;
margin-bottom: 48px;
}

.vision-image {
max-width: 224px;
}

.vision-content {
padding: 10px;
font-size: 32px;
}

.contact-form {
font-size: 24px;
width: 90%;
margin-top: 16px;
margin-bottom: 72px;
padding: 50px;
}

.contact-form p {
margin: 10px 0;
}

.form-group {
margin-right: 10px;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
font-size: 24px;
line-height: 1.5;
}

}

@media screen and (min-width: 769px) and (max-width: 1280px) {
/* UNUSED RULE START */
.hero-title {
font-size: 28px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.hero-subtitle {
font-size: 18px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.header-image {
height: 42px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.header-nav-items {
font-size: 14px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.hero-banner-button {
padding: 8px 16px;
font-size: 16px;
margin-top: 20px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
#custom-popup-container {
bottom: 54px;
width: 196px;
padding: 6px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.custom-popup-text {
font-size: 14px;
margin-left: 6px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.progress-bar-item {
width: 144px;
height: 6px;
border-radius: 6px;
margin-right: 8px;
margin-left: 8px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-container {
margin-top: 32px;
margin-bottom: 16px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter {
margin-left: 32px;
margin-right: 32px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-value {
font-size: 24px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-text {
font-size: 10px;
font-weight: 500;
}

/* UNUSED RULE END */

#review-animation-block {
font-size: 16px;
margin-bottom: 24px;
margin-top: 32px;
}

.title {
font-size: 24px;
margin-top: 32px;
}

.title-and-animation {
margin-top: 52px;
margin-bottom: 48px;
}

.steps-block {
width: 90%;
margin-top: 0px;
margin-bottom: 64px;
}

.steps-item {
padding-bottom: 24px;
max-width: 250px;
margin-top: 24px;
margin-left: 32px;
margin-right: 32px;
}

.steps-title {
font-size: 24px;
max-width: 300px;
}

.steps-body {
max-width: 300px;
}

.step-image {
width: 52px;
padding: 8px;
margin: 8px;
}

.origin-section {
display: flex;
width: 90%;
margin-top: 32px;
margin-bottom: 88px;
}

.origin-image {
max-width: 224px;
margin-right: 16px;
}

.origin-content {
font-size: 24px;
}

.quote-block {
font-size: 16px;
width: 80%;
margin-top: 96px;
margin-bottom: 54px;
}

.quote-body {
padding: 12px;
margin-top: 48px;
}

.quote-image {
width: 256px;
margin-left: 12px;
margin-right: 12px;
border-radius: 8px;
}

.vision-section {
margin-top: 48px;
margin-bottom: 48px;
}

.vision-image {
max-width: 224px;
}

.vision-content {
padding: 10px;
font-size: 32px;
}

.contact-form {
font-size: 24px;
width: 90%;
margin-top: 16px;
margin-bottom: 72px;
padding: 50px;
}

.contact-form p {
margin: 10px 0;
}

.form-group {
margin-right: 10px;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
font-size: 24px;
line-height: 1.5;
}

}

@media screen and (min-width: 576px) and (max-width: 768px) {
#utility-bar .utility-link {
display: none;
}

#utility-bar .utility-inner {
justify-content: center;
}

#utility-bar .utility-left {
width: 100%;
justify-content: center;
}

.left-wing p {
display: none;
}

/* UNUSED RULE START */
.hero-title {
font-size: 28px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.hero-subtitle {
font-size: 18px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.header-image {
height: 42px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.header-nav-items {
font-size: 14px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.hero-banner-button {
padding: 8px 16px;
font-size: 16px;
margin-top: 20px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
#custom-popup-container {
bottom: 52px;
width: 176px;
padding: 6px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.custom-popup-text {
font-size: 12px;
margin-left: 6px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.progress-bar-item {
width: 104px;
height: 6px;
border-radius: 6px;
margin-right: 12px;
margin-left: 12px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-container {
margin-top: 32px;
margin-bottom: 16px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter {
margin-left: 32px;
margin-right: 32px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-value {
font-size: 24px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-text {
font-size: 10px;
font-weight: 500;
}

/* UNUSED RULE END */

#review-animation-block {
font-size: 16px;
margin-bottom: 24px;
margin-top: 32px;
}

.title {
font-size: 24px;
margin-top: 32px;
}

.title-and-animation {
margin-top: 52px;
margin-bottom: 48px;
}

#text-animation-container p {
font-size: 16px;
}

.steps-block {
width: 80%;
margin-top: 0px;
margin-bottom: 64px;
}

.steps-item {
padding-bottom: 24px;
max-width: 250px;
margin-top: 24px;
margin-left: 32px;
margin-right: 32px;
}

.steps-title {
font-size: 24px;
max-width: 300px;
}

.steps-body {
max-width: 300px;
}

.step-image {
width: 52px;
padding: 8px;
margin: 8px;
}

.origin-section {
display: flex;
width: 90%;
margin-top: 32px;
margin-bottom: 88px;
}

.origin-image {
max-width: 224px;
margin-right: 16px;
}

.origin-content {
font-size: 24px;
}

.quote-block {
font-size: 16px;
width: 80%;
margin-top: 96px;
margin-bottom: 54px;
}

.quote-body {
padding: 12px;
margin-top: 48px;
}

.quote-image {
width: 184px;
margin-left: 12px;
margin-right: 12px;
border-radius: 8px;
}

.vision-section {
margin-top: 48px;
margin-bottom: 48px;
}

.vision-image {
max-width: 224px;
}

.vision-content {
padding: 10px;
font-size: 32px;
}

.contact-form {
font-size: 24px;
width: 90%;
margin-top: 16px;
margin-bottom: 72px;
padding: 50px;
}

.contact-form p {
margin: 10px 0;
}

.form-group {
margin-right: 10px;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
font-size: 24px;
line-height: 1.5;
}

}

@media screen and (min-width: 376px) and (max-width: 575px) {
#utility-bar .utility-link {
display: none;
}

#utility-bar .utility-inner {
justify-content: center;
}

#utility-bar .utility-left {
width: 100%;
justify-content: center;
}

.hamburger-menu {
order: 1;
font-size: 24px;
display: block;
cursor: pointer;
}

.header-container {
justify-content: flex-start;
position: relative;
padding: 6px;
width: 90%;
}

.left-wing {
flex: 0 0 auto;
}

.left-wing p {
display: none;
}

.left-wing > a {
position: absolute;
left: 50%;
transform: translateX(-50%);
}

/* UNUSED RULE START */
.header-image {
margin-left: auto;
margin-right: auto;
height: 36px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.hero-title {
font-size: 22px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.hero-subtitle {
font-size: 16px;
}

/* UNUSED RULE END */

.nav-links {
display: none;
}

/* UNUSED RULE START */
.header-nav-items {
font-size: 10px;
display: none;
flex-direction: column;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.hero-banner-button {
padding: 6px 14px;
font-size: 14px;
margin-top: 44px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
#custom-popup-container {
bottom: 48px;
width: 185px;
padding: 6px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.custom-popup-text {
font-size: 12px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.progress-bar-item {
width: 64px;
height: 4px;
border-radius: 6px;
margin-right: 8px;
margin-left: 8px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-container {
margin-top: 32px;
margin-bottom: 16px;
width: 90%;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter {
margin-left: 0px;
margin-right: 0px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-value {
font-size: 18px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-plus-sign {
font-size: 14px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-text {
font-size: 10px;
font-weight: 500;
margin-left: 8px;
margin-right: 8px;
}

/* UNUSED RULE END */

#review-animation-block {
font-size: 14px;
margin-bottom: 24px;
margin-top: 32px;
}

.title {
font-size: 18px;
margin-top: 32px;
}

.title-and-animation {
margin-top: 52px;
margin-bottom: 48px;
}

#text-animation-container p {
font-size: 16px;
}

.steps-block {
width: 80%;
margin-top: 0px;
margin-bottom: 64px;
}

.steps-item {
padding-bottom: 24px;
max-width: 250px;
margin-top: 24px;
margin-left: 32px;
margin-right: 32px;
}

.steps-title {
font-size: 18px;
max-width: 300px;
}

.steps-body {
max-width: 300px;
font-size: 14px;
}

.step-image {
width: 44px;
padding: 8px;
margin: 8px;
}

.origin-section {
display: block;
text-align: center;
width: 90%;
margin-top: 64px;
margin-bottom: 48px;
}

.origin-image {
max-width: 184px;
margin-top: 32px;
margin-right: auto;
margin-left: auto;
margin-bottom: 0px;
}

.origin-content {
flex: 1;
padding: 25px;
font-size: 16px;
text-align: left;
margin-top: 0px;
}

.quote-block {
font-size: 16px;
width: 80%;
margin-top: 96px;
margin-bottom: 64px;
}

.quote-body {
padding: 12px;
margin-top: 16px;
}

.quote-name {
font-size: 14px;
}

.quote-name-subtext {
font-size: 10px;
}

.quote-image {
width: 184px;
margin-left: 12px;
margin-right: 12px;
margin-top: 12px;
margin-bottom: 0px;
border-radius: 8px;
}

blockquote {
font-size: 14px;
}

.vision-section {
margin-top: 48px;
margin-bottom: 48px;
}

.vision-image {
max-width: 184px;
}

.vision-content {
padding: 10px;
font-size: 22px;
}

.contact-form {
font-size: 18px;
width: 90%;
margin-top: 16px;
margin-bottom: 72px;
padding: 25px;
}

.contact-form p {
margin: 10px 0;
}

.form-group {
margin-right: 10px;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
font-size: 18px;
line-height: 1.5;
}

.contact-form button {
padding: 8px 14px;
border: solid, 1px;
border-radius: 6px;
font-size: 14px;
margin-top: 24px;
margin-bottom: 12px;
}

}

@media screen and (max-width: 375px) {
#utility-bar .utility-link {
display: none;
}

#utility-bar .utility-inner {
justify-content: center;
}

#utility-bar .utility-left {
width: 100%;
justify-content: center;
}

.hamburger-menu {
order: 1;
font-size: 22px;
display: block;
cursor: pointer;
}

.header-container {
justify-content: flex-start;
position: relative;
padding: 0px;
width: 90%;
}

.left-wing {
flex: 0 0 auto;
}

.left-wing p {
display: none;
}

.left-wing > a {
position: absolute;
left: 50%;
transform: translateX(-50%);
}

/* UNUSED RULE START */
.header-image {
margin-left: auto;
margin-right: auto;
height: 32px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.hero-title {
font-size: 18px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.hero-subtitle {
font-size: 14px;
}

/* UNUSED RULE END */

.nav-links {
display: none;
}

/* UNUSED RULE START */
.header-nav-items {
font-size: 10px;
display: none;
flex-direction: column;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.hero-banner-button {
padding: 6px 14px;
font-size: 14px;
margin-top: 44px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
#custom-popup-container {
bottom: 48px;
width: 150px;
padding: 6px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.custom-popup-text {
font-size: 10px;
margin-left: 4px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.progress-bar-item {
width: 48px;
height: 4px;
border-radius: 6px;
margin-right: 8px;
margin-left: 8px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-container {
margin-top: 32px;
margin-bottom: 16px;
width: 90%;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter {
margin-left: 0px;
margin-right: 0px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-value {
font-size: 16px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-plus-sign {
font-size: 12px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.counter-text {
font-size: 8px;
font-weight: 500;
}

/* UNUSED RULE END */

#review-animation-block {
font-size: 14px;
margin-bottom: 24px;
margin-top: 32px;
}

.title {
font-size: 18px;
margin-top: 32px;
}

.title-and-animation {
margin-top: 52px;
margin-bottom: 48px;
}

#text-animation-container p {
font-size: 16px;
}

.steps-block {
width: 80%;
margin-top: 0px;
margin-bottom: 64px;
}

.steps-item {
padding-bottom: 24px;
max-width: 250px;
margin-top: 24px;
margin-left: 32px;
margin-right: 32px;
}

.steps-title {
font-size: 18px;
max-width: 300px;
}

.steps-body {
max-width: 300px;
font-size: 14px;
}

.step-image {
width: 44px;
padding: 8px;
margin: 8px;
}

.origin-section {
display: block;
text-align: center;
width: 90%;
margin-top: 64px;
margin-bottom: 48px;
}

.origin-image {
max-width: 184px;
margin-top: 32px;
margin-right: auto;
margin-left: auto;
margin-bottom: 0px;
}

.origin-content {
flex: 1;
padding: 25px;
font-size: 16px;
text-align: left;
margin-top: 0px;
}

.quote-block {
font-size: 16px;
width: 80%;
margin-top: 96px;
margin-bottom: 64px;
}

.quote-body {
padding: 12px;
margin-top: 16px;
}

.quote-name {
font-size: 14px;
}

.quote-name-subtext {
font-size: 10px;
}

.quote-image {
width: 184px;
margin-left: 12px;
margin-right: 12px;
margin-top: 12px;
margin-bottom: 0px;
border-radius: 8px;
}

blockquote {
font-size: 14px;
}

.vision-section {
margin-top: 48px;
margin-bottom: 48px;
}

.vision-image {
max-width: 184px;
}

.vision-content {
padding: 10px;
font-size: 22px;
}

.contact-form {
font-size: 18px;
width: 90%;
margin-top: 16px;
margin-bottom: 72px;
padding: 25px;
}

.contact-form p {
margin: 10px 0;
}

.form-group {
margin-right: 10px;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
font-size: 18px;
line-height: 1.5;
}

.contact-form button {
padding: 8px 14px;
border: solid, 1px;
border-radius: 6px;
font-size: 14px;
margin-top: 24px;
margin-bottom: 12px;
}

/* UNUSED RULE START */
.google-required-notification {
font-size: 8px;
font-weight: 300;
margin-top: 8px;
color: gray;
}

/* UNUSED RULE END */

}

@media (max-width: 900px) {
/* UNUSED RULE START */
.media-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* UNUSED RULE END */

}

@media (max-width: 640px) {
/* UNUSED RULE START */
.media-grid {
grid-template-columns: minmax(0, 1fr);
}

/* UNUSED RULE END */

}

@media (min-width: 901px) {
/* UNUSED RULE START */
.hero-banner-container {
min-height: clamp(820px, 86svh, 1400px);
}

/* UNUSED RULE END */

}

@media (max-width: 900px) {
/* UNUSED RULE START */
.hero-banner-container {
min-height: clamp(560px, 78vh, 820px);
}

/* UNUSED RULE END */

}

@media (max-width: 640px) {
.landing-intro h1 {
font-size: clamp(1.85rem, 6.2vw, 2.25rem);
line-height: 1.25;
margin-bottom: 0.75rem;
}

.landing-intro h2 {
font-size: clamp(1.05rem, 3.6vw, 1.25rem);
line-height: 1.4;
}

/* UNUSED RULE START */
.subtitle-container-new {
max-width: 42ch;
margin-inline: auto;
}

/* UNUSED RULE END */

.landing-intro .eyebrow {
margin-bottom: 1.2rem;
}

/* UNUSED RULE START */
.hero-btn, .hero-banner-button {
display: block;
width: 90%;
max-width: 520px;
margin: 0.9rem auto 0;
padding: 0.95rem 1.15rem;
font-size: 1rem;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.landing-review-quotes {
gap: 1rem;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.landing-review-quote-item {
min-width: 200px;
font-size: 0.82rem;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.intro-shapes {
display: none;
}

/* UNUSED RULE END */

}

@media (max-width: 420px) {
.landing-intro h1 {
font-size: clamp(1.7rem, 7vw, 2rem);
}

.landing-intro h2 {
font-size: clamp(1rem, 3.8vw, 1.15rem);
}

/* UNUSED RULE START */
.landing-review-quote-item {
min-width: 180px;
}

/* UNUSED RULE END */

}

@media (max-width: 600px) {
.final-cta-container .disclaimer {
margin-top: 0.5rem;
}

.contact-form button, button.next-btn {
font-size: clamp(1rem, 0.95rem + 0.6vw, 1.125rem);
padding: 0.95rem 1.15rem;
min-height: 44px;
width: 100%;
border-radius: 6px;
}

/* UNUSED RULE START */
button.back-btn {
font-size: 1rem;
padding: 0.9rem 1rem;
min-height: 44px;
width: 100%;
border-radius: 6px;
}

/* UNUSED RULE END */

}

@media (prefers-reduced-motion: reduce) {
#gallery .bg-card, #gallery .bg-card__image-wrap > img.bg-card__img {
transition: none;
}

}

@media (max-width: 1100px) {
#gallery .bg-card-grid {
grid-template-columns: repeat(2, minmax(220px, 1fr));
max-width: min(760px, 100%);
gap: 20px;
}

}

@media (max-width: 700px) {
#gallery .bg-card-grid {
grid-template-columns: 1fr;
max-width: 100%;
gap: 16px;
}

#gallery.gallery-container {
padding: 16px;
}

}

@media (prefers-reduced-motion: reduce) {
/* UNUSED RULE START */
.shape {
animation: none;
}

/* UNUSED RULE END */

}

@media screen and (min-width: 768px) {
.mobile {
display: none;
}

.desktop {
display: block;
}

}

@media (max-width: 768px) {
/* UNUSED RULE START */
.features-container {
flex-direction: column;
align-items: center;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.feature-item {
flex-direction: column;
text-align: center;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.feature-arrow {
transform: rotate(90deg);
margin: 0.5rem 0;
}

/* UNUSED RULE END */

}

@media (max-width: 480px) {
.cta-micro-review {
padding: 0.75rem 0.875rem;
}

.cta-micro-review__text {
font-size: 0.93rem;
}

}

@media (max-width: 767px) {
.hero-alt {
padding-top: 2.5rem;
padding-bottom: 2.5rem;
}

.hero-alt-inner {
align-items: stretch;
}

.hero-alt-content {
max-width: 100%;
margin: 0 auto;
}

.hero-alt-title, .hero-alt-kicker {
text-align: center;
}

.hero-alt-subtitle {
text-align: center;
margin-left: auto;
margin-right: auto;
}

}

@media (min-width: 768px) {
.hero-alt-inner {
flex-direction: row;
align-items: center;
}

.hero-alt-content {
max-width: 540px;
}

}

@media (max-width: 767px) {
.hero-alt-form {
margin-left: auto;
margin-right: auto;
align-items: stretch;
}

}

@media (max-width: 767px) {
.hero-alt-media-inline .hero-alt-media-frame {
max-width: 360px;
margin-top: 1.25rem;
margin-bottom: 1rem;
margin-left: auto;
margin-right: auto;
}

.hero-alt-media-inline .hero-alt-image {
width: 100%;
height: 340px;
object-fit: cover;
object-position: center 10%;
}

}

@media (min-width: 768px) {
.hero-alt-media-inline {
display: none;
}

.hero-alt-media-side {
display: flex;
}

.hero-alt-media-side .hero-alt-media-frame {
max-width: 420px;
}

}

@media (max-width: 640px) {
/* UNUSED RULE START */
.problems-main {
padding-block: 24px 56px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.problems-intro {
margin-bottom: 24px;
}

/* UNUSED RULE END */

.problems-intro .page-title {
font-size: clamp(1.8rem, 1.4rem + 2vw, 2.1rem);
}

.problems-grid {
grid-template-columns: 1fr;
}

}

@media (min-width: 768px) {
.problems-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-card-lists {
flex-direction: row;
}

}

@media (max-width: 640px) {
/* UNUSED RULE START */
.problem-article-main {
padding-block: 24px 56px;
}

/* UNUSED RULE END */

/* UNUSED RULE START */
.problem-back-link {
font-size: .9rem;
padding: 8px 14px;
}

/* UNUSED RULE END */

}

@media (max-width: 640px) {
.nested-navigation-menu--desktop {
display: none;
}

}

@media (min-width: 641px) {
.nested-navigation-menu-mobile {
display: none;
}

}

