:root {
    --color-canvas: #F7F5FF;
    --color-surface: #FFFFFF;
    --color-raised: #EFEAFB;
    --color-ink: #16141C;
    --color-body: #4A4658;
    --color-muted: #7A7588;
    --color-border: #E4DEF3;
    --color-electric-iris: #8052ff;
    --color-iris-hover: #6b3fe0;
    --color-saffron-spark: #e8a017;
    --color-deep-verdant: #0F6B5A;
    --color-on-primary: #ffffff;
    --font-ppneuemontreal: Inter, ui-sans-serif, system-ui, sans-serif;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-body);
    background-color: var(--color-canvas);
}

/* Responsive baseline: keep every component inside the viewport. */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    min-width: 320px;
    overflow-x: clip;
}

img, svg, video, canvas, iframe {
    max-width: 100%;
}

button, a, input, select, textarea {
    max-width: 100%;
}

/* Footer payment trust row */
.footer-payment-methods {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(145, 141, 246, 0.16);
}

.footer-payment-copy,
.footer-card-brands {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-payment-label {
  color: #4a4658;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-payment-powered {
  color: #8a8496;
  font-size: 0.7rem;
}

.footer-stripe-wordmark {
  color: #635bff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.footer-card-brands {
  gap: 0.4rem;
}

.footer-card-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.7rem;
  min-width: 2.65rem;
  padding: 0 0.45rem;
  border: 1px solid rgba(122, 117, 136, 0.25);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.52);
  color: #4a4658;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-card-brand--visa {
  color: #1a1f71;
  font-size: 0.66rem;
  font-style: italic;
}

.footer-card-brand--paypal {
  color: #003087;
  font-size: 0.62rem;
  font-style: italic;
  letter-spacing: -0.03em;
}

.footer-card-brand--mastercard {
  position: relative;
  min-width: 2.7rem;
  gap: 0;
}

.footer-card-brand--mastercard i {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #eb001b;
}

.footer-card-brand--mastercard i + i {
  margin-left: -0.28rem;
  background: #f79e1b;
  opacity: 0.92;
}

.footer-card-brand--amex {
  color: #1475b8;
  font-size: 0.52rem;
}

@media (max-width: 640px) {
  .footer-payment-methods {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}

h1, h2, h3, h4,
.font-display {
    font-weight: 600 !important;
    letter-spacing: -0.025em;
    line-height: 1.18;
    color: var(--color-ink);
}

/* Public readability and contrast scale. The admin dashboard has separate CSS. */
p,
li,
label,
input,
textarea,
select,
button,
a {
    line-height: 1.5;
}

.text-slate-400 {
    color: #625D70 !important;
}

.text-slate-500 {
    color: #6F6A7C !important;
}

/* Darker accent text improves contrast without changing accent backgrounds. */
.text-primary-400,
.hover\:text-primary-400:hover {
    color: #986600 !important;
}

.text-primary-500,
.hover\:text-primary-500:hover {
    color: #7038E6 !important;
}

.hero-title {
    font-weight: 700 !important;
    letter-spacing: -0.03em;
    line-height: 1.06;
    text-wrap: balance;
}

.hero-title .text-gradient-primary {
    color: #7038E6;
    font-weight: 700;
}

/* Homepage hero entrance: reveal the message in reading order, then let the
   accent breathe with a restrained color sweep. */
.hero-title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.06em;
    margin-bottom: -0.06em;
}

.hero-title-line-inner {
    display: inline-block;
    opacity: 0;
    transform: translateY(112%) rotate(1.2deg);
    transform-origin: left bottom;
    animation: hero-title-rise 820ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

.hero-title-line--accent .hero-title-line-inner {
    animation-delay: 150ms;
}

.hero-title-line--accent .text-gradient-primary {
    background-image: linear-gradient(100deg, #7038E6 15%, #7038E6 38%, #A983FF 50%, #7038E6 62%, #7038E6 85%);
    background-position: 100% 50%;
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation-name: hero-title-rise, hero-accent-sweep;
    animation-duration: 820ms, 5.5s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1), ease-in-out;
    animation-delay: 150ms, 1.2s;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards, both;
}

.hero-enter {
    opacity: 0;
    transform: translateY(18px);
    animation: hero-content-rise 680ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

.hero-enter--copy { animation-delay: 310ms; }
.hero-enter--actions { animation-delay: 410ms; }
.hero-enter--trust { animation-delay: 510ms; }
.hero-enter--guarantee { animation-delay: 610ms; }

@keyframes hero-title-rise {
    from {
        opacity: 0;
        transform: translateY(112%) rotate(1.2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

@keyframes hero-content-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-accent-sweep {
    0%, 18% { background-position: 100% 50%; }
    55%, 100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title-line-inner,
    .hero-title-line--accent .text-gradient-primary,
    .hero-enter {
        opacity: 1;
        transform: none;
        animation: none;
        will-change: auto;
    }

    .hero-title-line--accent .text-gradient-primary {
        background: none;
        color: #7038E6;
    }
}

.hero-copy {
    color: #625D70 !important;
    font-weight: 400 !important;
    line-height: 1.65;
    max-width: 36rem;
}

.home-hero-grid {
    background-image:
        linear-gradient(rgba(22, 20, 28, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 20, 28, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
}

.hero-flashlight {
    --flashlight-x: 50%;
    --flashlight-y: 38%;
    isolation: isolate;
}

.hero-flashlight-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    opacity: 0.82;
    background:
        radial-gradient(circle 22rem at var(--flashlight-x) var(--flashlight-y), rgba(181, 151, 255, 0.26) 0%, rgba(151, 122, 232, 0.13) 34%, rgba(116, 91, 184, 0.035) 58%, transparent 74%),
        radial-gradient(ellipse at center, transparent 32%, rgba(52, 38, 94, 0.035) 70%, rgba(40, 31, 76, 0.07) 100%);
    transition: opacity 280ms ease;
}

.hero-flashlight > .max-w-7xl {
    z-index: 2;
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    .hero-flashlight-overlay {
        opacity: 0;
    }
}

.hero-badge {
    background-color: #F1F8F3 !important;
    border-color: rgba(22, 129, 70, 0.34) !important;
    box-shadow: 0 8px 22px rgba(22, 129, 70, 0.12) !important;
    color: #174A31 !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.115em;
    line-height: 1.35;
    min-height: 2.5rem;
    white-space: nowrap;
    animation: hero-badge-live 3.2s ease-in-out infinite;
}

@media (max-width: 479px) {
    .hero-badge {
        max-width: calc(100vw - 2rem);
        white-space: normal;
        justify-content: center;
        text-align: center;
    }

    .hero-actions a,
    .hero-form-submit,
    .js-lead-form button {
        width: 100%;
    }
}

.hero-badge > span:first-child {
    background-color: #16A34A !important;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14), 0 0 14px rgba(22, 163, 74, 0.42);
    flex: 0 0 auto;
}

@media (max-width: 420px) {
    .hero-badge {
        font-size: 0.6875rem;
        letter-spacing: 0.09em;
    }
}

.hero-actions a,
.hero-form-submit,
.js-lead-form button {
    font-weight: 600;
}

/* Make service choices easy to scan in lead forms */
.service-choice-heading {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.service-choice-option {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

.service-choice-checkbox {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
}

/* Modern navigation interactions */
#navbar {
    transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
}

.site-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    color: #5F596B !important;
    transition: color 180ms ease, transform 180ms ease;
}

/* Shared Progreza header lockup */
.progreza-header-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--color-ink);
    margin-left: -0.35rem;
    transition: transform 180ms ease, color 180ms ease;
}

.progreza-header-mark {
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 auto;
    transition: transform 220ms ease;
}

.progreza-header-name {
    color: var(--color-ink);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    white-space: nowrap;
}

.progreza-header-name-muted {
    color: #625D70;
    font-weight: 500;
}

.progreza-header-brand:hover {
    transform: translateY(-1px);
}

.progreza-header-brand:hover .progreza-header-mark {
    transform: rotate(-4deg) scale(1.04);
}

.progreza-header-brand:focus-visible {
    outline: 3px solid rgba(152, 102, 0, 0.45);
    outline-offset: 5px;
    border-radius: 0.4rem;
}

@media (max-width: 640px) {
    .progreza-header-name {
        font-size: 0.92rem;
    }

    .progreza-header-name-muted {
        display: none;
    }
}

.site-nav-link::after {
    position: absolute;
    right: 0.15rem;
    bottom: 0.15rem;
    left: 0.15rem;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, #7038E6, #986600);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 220ms cubic-bezier(.2, .8, .2, 1);
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
    color: #2D2840 !important;
    transform: translateY(-2px);
}

.site-nav-link:hover::after,
.site-nav-link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.nav-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(115deg, #7038E6 0%, #8052FF 52%, #986600 140%);
    background-size: 180% 180%;
    box-shadow: 0 8px 20px rgba(112, 56, 230, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, background-position 300ms ease;
}

.nav-cta::before {
    position: absolute;
    z-index: -1;
    top: -80%;
    left: -35%;
    width: 28%;
    height: 260%;
    content: "";
    background: rgba(255, 255, 255, 0.28);
    transform: rotate(24deg) translateX(-220%);
    transition: transform 500ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    color: #FFFFFF !important;
    background-position: 100% 0;
    box-shadow: 0 12px 28px rgba(112, 56, 230, 0.32);
    transform: translateY(-2px) scale(1.02);
}

.nav-cta:hover::before,
.nav-cta:focus-visible::before {
    transform: rotate(24deg) translateX(520%);
}

.site-nav-link:focus-visible,
.nav-cta:focus-visible,
.mobile-nav-link:focus-visible {
    outline: 3px solid rgba(152, 102, 0, 0.45);
    outline-offset: 4px;
}

.mobile-nav-link {
    transition: color 180ms ease, transform 180ms ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    color: #7038E6 !important;
    transform: translateX(6px);
}

/* Homepage navigation must remain usable on compact mobile viewports. */
.mobile-menu-overlay {
    background: #F7F5FF;
    opacity: 1;
    overflow: hidden;
}

.mobile-menu-content {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: 100%;
    height: 100dvh;
    max-height: none;
    padding: max(1rem, env(safe-area-inset-top)) 1.25rem max(1.25rem, env(safe-area-inset-bottom));
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 7%, rgba(128, 82, 255, 0.18), transparent 15rem),
        linear-gradient(180deg, #FFFFFF 0%, #F7F5FF 100%);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
    min-height: 3.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(112, 56, 230, 0.14);
}

.mobile-menu-close {
    display: inline-grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid rgba(112, 56, 230, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #2D2840;
    font-size: 1.65rem;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
    border-color: #8052FF;
    background: #EFEAFB;
    color: #7038E6;
}

.mobile-menu-links {
    display: grid;
    align-content: start;
    gap: 0.1rem;
    padding: 1rem 0;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-menu-links .mobile-nav-link {
    display: block;
    padding: 0.72rem 0.25rem;
    color: #2D2840 !important;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(1.1rem, 5vw, 1.35rem);
    font-weight: 700;
    line-height: 1.25;
}

.mobile-menu-cta {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    color: #FFFFFF !important;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

.mobile-menu-close:focus-visible {
    outline: 3px solid rgba(152, 102, 0, 0.45);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .site-nav-link,
    .site-nav-link::after,
    .nav-cta,
    .nav-cta::before,
    .mobile-nav-link {
        transition: none;
    }
}

/* Shared responsive hardening for public pages and generated content. */
.menu-open {
    overflow: hidden;
}

.mobile-menu-link,
.mobile-nav-link,
.nav-desktop,
.nav-actions,
.nav-inner,
.inner-header-inner,
.site-header,
.inner-header {
    min-width: 0;
}

.mobile-menu-link,
.mobile-nav-link {
    overflow-wrap: anywhere;
}

.slider-container,
.slider-track,
.slider-item,
.project-slide-item {
    max-width: 100%;
}

@media (max-width: 767px) {
    .nav-inner,
    .inner-header-inner {
        gap: 0.75rem;
        padding-inline: 1rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .nav-actions .nav-phone {
        display: none;
    }

    .inner-header-inner > .btn-primary {
        max-width: 48vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .detail-page {
        width: min(100%, 46rem);
        padding-inline: 1rem;
    }

    .detail-page h1 {
        font-size: clamp(2.1rem, 10vw, 3.5rem);
        overflow-wrap: anywhere;
    }

    .contact-form-card,
    .detail-block,
    .glass {
        min-width: 0;
    }

    .footer-payment-methods,
    .site-footer-bottom {
        min-width: 0;
    }

    .site-footer-bottom {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 374px) {
    .nav-inner,
    .inner-header-inner {
        padding-inline: 0.75rem;
    }

    .brand-sub {
        display: none;
    }

    .inner-header-inner > .btn-primary {
        max-width: 54vw;
        padding-inline: 0.8rem;
    }

    .mobile-menu-content {
        padding-inline: 1.25rem;
    }
}

/* Homepage sticky lead CTA and modal. */
body.sticky-lead-modal-open {
    overflow: hidden;
}

.sticky-lead-cta {
    position: fixed;
    z-index: 45;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    left: 1rem;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.sticky-lead-cta-button {
    min-width: min(20rem, 100%);
    padding: 0.9rem 2.1rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: linear-gradient(135deg, #8052FF, #6B3FE0);
    box-shadow: 0 12px 30px rgba(74, 38, 155, 0.28);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    pointer-events: auto;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.sticky-lead-cta-button:hover,
.sticky-lead-cta-button:focus-visible {
    background: linear-gradient(135deg, #8D65FF, #7038E6);
    box-shadow: 0 16px 35px rgba(74, 38, 155, 0.36);
    transform: translateY(-2px);
}

.sticky-lead-cta-button:focus-visible,
.sticky-lead-modal-close:focus-visible,
.sticky-lead-modal input:focus-visible,
.sticky-lead-modal select:focus-visible,
.sticky-lead-modal textarea:focus-visible,
.sticky-lead-modal button[type="submit"]:focus-visible {
    outline: 3px solid rgba(128, 82, 255, 0.42);
    outline-offset: 3px;
}

/* Reserve footer space for the fixed homepage CTA so its legal copy can scroll above the button. */
.home-page .site-footer {
    padding-bottom: calc(7rem + env(safe-area-inset-bottom));
}

.sticky-lead-modal {
    position: fixed;
    z-index: 60;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    overflow-y: auto;
    background: rgba(22, 20, 28, 0.62);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 180ms ease;
}

.sticky-lead-modal[hidden] {
    display: none;
}

.sticky-lead-modal.is-open {
    opacity: 1;
}

.sticky-lead-modal-panel {
    width: min(100%, 42rem);
    max-height: min(46rem, calc(100dvh - 2.5rem));
    overflow-y: auto;
    padding: 1.5rem;
    border: 1px solid rgba(128, 82, 255, 0.19);
    border-radius: 1.5rem;
    background: linear-gradient(145deg, #FFFFFF, #F7F5FF);
    box-shadow: 0 24px 70px rgba(22, 20, 28, 0.34);
    color: #16141C;
    transform: translateY(0.75rem) scale(0.985);
    transition: transform 180ms ease;
}

.sticky-lead-modal.is-open .sticky-lead-modal-panel {
    transform: translateY(0) scale(1);
}

.sticky-lead-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.sticky-lead-modal-eyebrow {
    margin: 0 0 0.3rem;
    color: #7038E6;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sticky-lead-modal h2 {
    margin: 0;
    color: #16141C !important;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700 !important;
}

.sticky-lead-modal-header p:last-child {
    margin: 0.45rem 0 0;
    color: #625D70;
    font-size: 0.94rem;
}

.sticky-lead-modal-close {
    display: inline-grid;
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 1px solid #E4DEF3;
    border-radius: 50%;
    background: #fff;
    color: #4A4658;
    font-size: 1.2rem;
    transition: background 180ms ease, color 180ms ease;
}

.sticky-lead-modal-close:hover {
    background: #EFEAFB;
    color: #7038E6;
}

.sticky-lead-form {
    display: grid;
    gap: 1rem;
}

.sticky-lead-form-grid,
.sticky-lead-phone-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.sticky-lead-phone-row {
    grid-template-columns: 9.7rem minmax(0, 1fr);
}

.sticky-lead-field,
.sticky-lead-services {
    min-width: 0;
}

.sticky-lead-field > label,
.sticky-lead-services legend {
    display: block;
    margin-bottom: 0.4rem;
    color: #322E3C;
    font-size: 0.84rem;
    font-weight: 750;
}

.sticky-lead-field > label span {
    color: #C53C3C;
}

.sticky-lead-modal input:not([type="checkbox"]),
.sticky-lead-modal select,
.sticky-lead-modal textarea {
    width: 100%;
    border: 1px solid #DAD3EB;
    border-radius: 0.75rem;
    background: #fff;
    color: #16141C;
    font: inherit;
}

.sticky-lead-modal input:not([type="checkbox"]),
.sticky-lead-modal textarea {
    padding: 0.72rem 0.85rem;
}

.sticky-lead-modal textarea {
    min-height: 5.5rem;
    resize: vertical;
}

.sticky-lead-modal input::placeholder,
.sticky-lead-modal textarea::placeholder {
    color: #878193;
}

.sticky-lead-modal input:focus,
.sticky-lead-modal select:focus,
.sticky-lead-modal textarea:focus {
    border-color: #8052FF;
    box-shadow: 0 0 0 3px rgba(128, 82, 255, 0.14);
    outline: 0;
}

.sticky-lead-country-code {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0 0.75rem;
    border: 1px solid #DAD3EB;
    border-radius: 0.75rem;
    background: #fff;
}

.sticky-lead-country-code img {
    width: 1.5rem;
    border-radius: 0.15rem;
}

.sticky-lead-country-code select {
    min-width: 0;
    padding: 0.72rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.sticky-lead-country-code:focus-within {
    border-color: #8052FF;
    box-shadow: 0 0 0 3px rgba(128, 82, 255, 0.14);
}

.sticky-lead-services {
    padding: 0;
    border: 0;
}

.sticky-lead-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.sticky-lead-service-grid label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.7rem;
    border: 1px solid #E4DEF3;
    border-radius: 0.7rem;
    background: rgba(239, 234, 251, 0.48);
    color: #4A4658;
    font-size: 0.82rem;
    cursor: pointer;
}

.sticky-lead-service-grid input {
    width: 1rem;
    height: 1rem;
    accent-color: #8052FF;
}

.sticky-lead-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.2rem;
}

.sticky-lead-form-footer p {
    margin: 0;
    color: #6F6A7C;
    font-size: 0.72rem;
    line-height: 1.4;
}

.sticky-lead-form-footer button[type="submit"] {
    flex: 0 0 auto;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: #8052FF;
    color: #fff;
    font-weight: 800;
    transition: background 180ms ease, transform 180ms ease;
}

.sticky-lead-form-footer button[type="submit"]:hover {
    background: #6B3FE0;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .sticky-lead-cta {
        bottom: max(0.75rem, env(safe-area-inset-bottom));
    }

    .sticky-lead-cta-button {
        width: 100%;
    }

    .sticky-lead-modal {
        place-items: end center;
        padding: 0.75rem;
    }

    .sticky-lead-modal-panel {
        max-height: calc(100dvh - 1.5rem);
        padding: 1.25rem;
        border-radius: 1.25rem;
    }

    .sticky-lead-form-grid,
    .sticky-lead-phone-row,
    .sticky-lead-service-grid {
        grid-template-columns: 1fr;
    }

    .sticky-lead-country-code {
        min-height: 2.85rem;
    }

    .sticky-lead-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .sticky-lead-form-footer button[type="submit"] {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sticky-lead-cta-button,
    .sticky-lead-modal,
    .sticky-lead-modal-panel,
    .sticky-lead-modal-close,
    .sticky-lead-form-footer button[type="submit"] {
        transition: none;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background: #D8D8D8;
}

::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

/* Base Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(22, 20, 28, 0.08);
    box-shadow: 0 8px 32px rgba(22, 20, 28, 0.06);
}

/* Premium Card Hover Effect */
.glass-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-hover:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(128, 82, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(128, 82, 255, 0.12);
}

/* Text Gradients */
.text-gradient-primary {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #8052ff;
}

/* Animation Utility Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.reveal.delay-100 { transition-delay: 0.1s; }
.reveal.delay-200 { transition-delay: 0.2s; }
.reveal.delay-300 { transition-delay: 0.3s; }
/* Infinite Logo Slider */
.slider-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    padding: 2rem 0;
    scrollbar-width: auto;
    scrollbar-color: #000000 #D8D8D8;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    /* background and borders removed as requested */
}

.slider-container::-webkit-scrollbar {
    height: 16px;
}

.slider-container::-webkit-scrollbar-track {
    background: #D8D8D8;
    border-radius: 6px;
}

.slider-container::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 6px;
}

.slider-container::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

/* The technology carousel is animated, so its native horizontal scrollbar
   should not be visible beneath the cards. */
#technologies .slider-container,
#tecnologias .slider-container {
    scrollbar-width: none;
}

#technologies .slider-container::-webkit-scrollbar,
#tecnologias .slider-container::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.slider-container::before,
.slider-container::after {
    /* Shadows removed as requested */
    display: none;
}

.slider-track {
    display: flex;
    gap: 2rem; /* Reduced gap for better card spacing */
    width: max-content;
    animation: scroll 60s linear infinite; /* Slower animation for cards */
    padding: 0 2rem;
    min-width: max-content;
}

.slider-item {
    min-width: 200px; /* Card width */
    transition: transform 0.3s ease;
}

.slider-item:hover {
    transform: translateY(-4px);
}

/* Card styles within slider */
.slider-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(22, 20, 28, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    backdrop-filter: blur(12px);
    height: 100%;
    box-shadow: 0 8px 24px rgba(22, 20, 28, 0.06);
    transition: all 0.3s ease;
}

.slider-item:hover .slider-card {
    background: #ffffff;
    border-color: rgba(128, 82, 255, 0.28);
    box-shadow: 0 16px 32px rgba(128, 82, 255, 0.12);
}

.slider-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.slider-item:hover .slider-icon-box {
    transform: scale(1.1);
}

.slider-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-ink);
}

/* Project Slider Styles */
.project-slide-item {
    min-width: 320px; /* Slightly larger for images */
    height: 220px;
    transition: transform 0.3s ease;
    flex: 0 0 320px;
}

.project-slide-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(22, 20, 28, 0.08);
    box-shadow: 0 8px 20px rgba(22, 20, 28, 0.08);
}

@media (max-width: 640px) {
    .slider-track {
        gap: 1rem;
        padding: 1rem;
    }

    .slider-item {
        min-width: min(82vw, 300px) !important;
    }

    .project-slide-item {
        flex-basis: min(82vw, 320px);
        height: min(54vw, 220px);
    }

    .slider-container {
        margin-inline: -0.25rem;
        width: calc(100% + 0.5rem);
    }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    .slider-track {
        animation: none;
    }
}

/* Recent projects: keep the gallery scrollable without showing a scrollbar. */
.projects-section {
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 18%, rgba(128, 82, 255, 0.12), transparent 34%),
        radial-gradient(circle at 88% 78%, rgba(37, 99, 168, 0.11), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(239, 234, 251, 0.42));
}

.projects-section-glow {
    position: absolute;
    z-index: -1;
    width: 24rem;
    height: 24rem;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.5;
    pointer-events: none;
}

.projects-section-glow-left {
    top: -9rem;
    left: -8rem;
    background: rgba(128, 82, 255, 0.22);
}

.projects-section-glow-right {
    right: -8rem;
    bottom: -12rem;
    background: rgba(37, 99, 168, 0.18);
}

.projects-section-grid {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.22;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(112, 56, 230, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 168, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.projects-slider {
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    border-radius: 1.25rem;
    outline: none;
}

.projects-slider::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.projects-slider:focus-visible {
    outline: 3px solid rgba(112, 56, 230, 0.35);
    outline-offset: 6px;
}

.projects-slider .project-image {
    border-color: rgba(112, 56, 230, 0.18);
    box-shadow: 0 12px 28px rgba(112, 56, 230, 0.12), 0 2px 8px rgba(37, 99, 168, 0.08);
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.projects-slider .project-slide-item:hover .project-image {
    border-color: rgba(112, 56, 230, 0.42);
    box-shadow: 0 18px 34px rgba(112, 56, 230, 0.18), 0 4px 12px rgba(37, 99, 168, 0.12);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1rem)); /* Adjust based on duplicate set */
    }
}

/* Slider Navigation Buttons */
.slider-prev, .slider-next {
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:active, .slider-next:active {
    transform: scale(0.95);
}

/* Country code dropdown readability (mobile/desktop) */
select[data-country-code-select] {
    color: var(--color-ink);
    background-color: transparent;
}

select[data-country-code-select] option {
    background-color: var(--color-surface);
    color: var(--color-ink);
}

/* Light theme: class names stay; white-on-dark utilities become ink-on-light */
.text-white {
    color: var(--color-ink) !important;
}

/* Purple CTA text stays white for clear contrast on the public theme. */
.nav-cta,
.nav-cta:hover,
.nav-cta:focus-visible {
    color: #FFFFFF !important;
}

.hover\:text-white:hover,
.group:hover .group-hover\:text-white {
    color: var(--color-ink) !important;
}

.w-24.bg-dark-900 {
    background-color: var(--color-surface);
    box-shadow: 0 8px 24px rgba(22, 20, 28, 0.06);
}

.border-white\/5,
.border-t.border-white\/5,
.border-b.border-white\/5,
.border-y.border-white\/5 {
    border-color: rgba(22, 20, 28, 0.08);
}

.border-white\/10 {
    border-color: rgba(22, 20, 28, 0.10);
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.72);
}

.bg-white\/10 {
    background-color: rgba(22, 20, 28, 0.04);
}

.bg-dark-800\/30,
.bg-dark-800\/35,
.bg-dark-800\/50 {
    background-color: var(--color-raised);
}

.bg-dark-900\/40,
.bg-dark-900\/50,
.bg-dark-900\/60,
.bg-dark-900\/70,
.bg-dark-900\/85 {
    background-color: var(--color-surface);
}

input.text-white,
textarea.text-white,
select.text-white {
    color: var(--color-ink);
}

/* True white on iris / accent fills and saturated badges */
a.bg-primary-500,
a.bg-primary-600,
a.bg-primary-700,
a.bg-accent-500,
a.bg-accent-600,
button.bg-primary-500,
button.bg-primary-600,
button.bg-primary-700,
button.bg-accent-500,
button.bg-accent-600,
.bg-primary-500.text-white,
.bg-primary-600.text-white,
.bg-primary-700.text-white,
.bg-accent-500.text-white,
.bg-accent-600.text-white,
.bg-gradient-to-br.text-white,
[class*="600/90"].text-white {
    color: var(--color-on-primary) !important;
}

a.hover\:bg-primary-600:hover,
a.hover\:bg-primary-700:hover,
a.hover\:bg-accent-600:hover {
    color: var(--color-on-primary) !important;
}

/* Package cards: individual accents, floating prices, and outlined CTAs. */
.package-card {
    --package-accent: #7038E6;
    --package-soft: rgba(112, 56, 230, 0.12);
    --package-shadow: rgba(112, 56, 230, 0.2);
    border: 1px solid color-mix(in srgb, var(--package-accent) 24%, transparent);
    background: color-mix(in srgb, var(--package-accent) 7%, #FFFFFF);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.package-card:hover {
    border-color: color-mix(in srgb, var(--package-accent) 48%, transparent);
    box-shadow: 0 18px 36px var(--package-shadow);
    transform: translateY(-4px);
}

.package-card-surface {
    overflow: visible !important;
    background: color-mix(in srgb, var(--package-accent) 5%, #FFFFFF) !important;
    border-color: color-mix(in srgb, var(--package-accent) 22%, transparent) !important;
}

.package-purple { --package-accent: #6D28D9; --package-soft: rgba(109, 40, 217, 0.14); --package-shadow: rgba(109, 40, 217, 0.2); }
.package-violet { --package-accent: #A21CAF; --package-soft: rgba(162, 28, 175, 0.14); --package-shadow: rgba(162, 28, 175, 0.2); }
.package-orange { --package-accent: #BE123C; --package-soft: rgba(190, 18, 60, 0.14); --package-shadow: rgba(190, 18, 60, 0.2); }
.package-teal { --package-accent: #0F766E; --package-soft: rgba(15, 118, 110, 0.14); --package-shadow: rgba(15, 118, 110, 0.2); }
.package-gold { --package-accent: #A16207; --package-soft: rgba(161, 98, 7, 0.14); --package-shadow: rgba(161, 98, 7, 0.2); }
.package-blue { --package-accent: #1D4ED8; --package-soft: rgba(29, 78, 216, 0.14); --package-shadow: rgba(29, 78, 216, 0.2); }

.package-price {
    top: -1.15rem !important;
    right: 1rem !important;
    border-color: color-mix(in srgb, var(--package-accent) 42%, #FFFFFF) !important;
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 10px 24px var(--package-shadow) !important;
}

.package-price p:first-child,
.package-price span { color: var(--package-accent) !important; }

.package-price p:last-child { color: #6F6A7C !important; }

.package-icon {
    background: var(--package-soft) !important;
    color: var(--package-accent) !important;
    border-color: color-mix(in srgb, var(--package-accent) 18%, transparent) !important;
}

.package-check { color: var(--package-accent) !important; }

.package-button {
    color: var(--package-accent) !important;
    background: rgba(255, 255, 255, 0.42) !important;
    border: 1.5px solid color-mix(in srgb, var(--package-accent) 52%, transparent) !important;
    box-shadow: 0 5px 12px color-mix(in srgb, var(--package-accent) 10%, transparent);
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.package-button:hover,
.package-button:focus-visible {
    color: #FFFFFF !important;
    background: var(--package-accent) !important;
    border-color: var(--package-accent) !important;
    box-shadow: 0 10px 20px var(--package-shadow);
    transform: translateY(-2px);
}

.package-button:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--package-accent) 35%, transparent);
    outline-offset: 3px;
}

/* Final CTA: contained ambient motion and soft section transitions. */
.final-cta-section {
    isolation: isolate;
    background: linear-gradient(135deg, #EEE9FB 0%, #E4DCF7 48%, #E8F0FB 100%);
}

.final-cta-wash,
.final-cta-rays,
.final-cta-bubbles,
.final-cta-transition {
    position: absolute;
    pointer-events: none;
}

.final-cta-wash {
    z-index: -4;
    inset: -30%;
    background: radial-gradient(circle at 28% 45%, rgba(112, 56, 230, 0.2), transparent 28%), radial-gradient(circle at 76% 56%, rgba(37, 99, 168, 0.14), transparent 26%);
    animation: final-cta-wash-drift 18s ease-in-out infinite alternate;
}

.final-cta-rays {
    z-index: -3;
    top: 50%;
    left: 50%;
    width: min(75rem, 120vw);
    aspect-ratio: 1;
    border-radius: 50%;
    opacity: 0.28;
    background: repeating-conic-gradient(from 0deg, rgba(112, 56, 230, 0.16) 0deg 2deg, transparent 2deg 15deg);
    transform: translate(-50%, -50%);
    animation: final-cta-rays-rotate 42s linear infinite;
    mask-image: radial-gradient(circle, black 0%, transparent 67%);
}

.final-cta-bubbles {
    z-index: -2;
    inset: 0;
    overflow: hidden;
}

.final-cta-bubble {
    position: absolute;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.48), rgba(128, 82, 255, 0.08) 58%, transparent 72%);
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.3), 0 10px 26px rgba(112, 56, 230, 0.1);
    opacity: 0.72;
    animation: final-cta-bubble-float 12s ease-in-out infinite;
}

.final-cta-bubble-one { width: 5rem; height: 5rem; top: 17%; left: 10%; animation-delay: -2s; }
.final-cta-bubble-two { width: 2rem; height: 2rem; top: 64%; left: 22%; animation-delay: -6s; }
.final-cta-bubble-three { width: 7rem; height: 7rem; top: 8%; right: 12%; animation-delay: -9s; }
.final-cta-bubble-four { width: 3.5rem; height: 3.5rem; right: 25%; bottom: 16%; animation-delay: -4s; }
.final-cta-bubble-five { width: 1.5rem; height: 1.5rem; right: 8%; bottom: 28%; animation-delay: -7s; }

.final-cta-transition {
    z-index: -1;
    right: 0;
    left: 0;
    height: 5rem;
}

.final-cta-transition-top {
    top: 0;
    background: linear-gradient(to bottom, var(--color-canvas), transparent);
}

.final-cta-transition-bottom {
    bottom: 0;
    background: linear-gradient(to top, var(--color-canvas), transparent);
}

.final-cta-button {
    color: #43206F !important;
    box-shadow: 0 10px 24px rgba(112, 56, 230, 0.16);
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.final-cta-button:hover,
.final-cta-button:focus-visible {
    background-color: #FFFFFF !important;
    box-shadow: 0 16px 32px rgba(112, 56, 230, 0.26);
    transform: translateY(-4px) scale(1.03);
}

.final-cta-button i { transition: transform 220ms ease; }

.final-cta-button:hover i,
.final-cta-button:focus-visible i { transform: translateX(4px); }

@keyframes final-cta-bubble-float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -18px, 0) scale(1.08); }
}

@keyframes final-cta-rays-rotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes final-cta-wash-drift {
    0% { transform: translate3d(-2%, -1%, 0) scale(1); }
    100% { transform: translate3d(2%, 1%, 0) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
    .final-cta-wash,
    .final-cta-rays,
    .final-cta-bubble { animation: none; }

    .final-cta-button,
    .final-cta-button i { transition: none; }
}

/* Shared footer: dark professional treatment with contained ambient effects. */
.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #D9D4E8;
    background: linear-gradient(135deg, #191725 0%, #211C34 52%, #171B2C 100%) !important;
}

.site-footer::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, #7038E6, #A21CAF 48%, #2563A8);
    opacity: 0.9;
}

.site-footer-glow,
.site-footer-grid {
    position: absolute;
    pointer-events: none;
}

.site-footer-glow {
    z-index: -2;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.22;
}

.site-footer-glow-left {
    top: -12rem;
    left: -8rem;
    background: #7038E6;
}

.site-footer-glow-right {
    right: -10rem;
    bottom: -14rem;
    background: #2563A8;
}

.site-footer-grid {
    z-index: -1;
    inset: 0;
    opacity: 0.08;
    background-image: linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.site-footer-content {
    position: relative;
    z-index: 1;
}

.site-footer .text-white,
.site-footer .site-footer-brand-name,
.site-footer .site-footer-heading {
    color: #FFFFFF !important;
}

.site-footer-brand-name {
    letter-spacing: -0.02em;
    line-height: 1.1;
    white-space: nowrap;
}

.site-footer-brand-name-muted {
    color: #BDB7D0;
    font-weight: 500;
}

.site-footer-description {
    color: #BDB7D0 !important;
    line-height: 1.7;
}

.site-footer-contact {
    color: #AAA3C0 !important;
    line-height: 1.65;
}

.site-footer-contact strong {
    color: #E3DDF0 !important;
}

.site-footer-countries {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 1rem;
    color: #BDB5D0;
    font-size: 0.8125rem;
    line-height: 1.35;
}

.site-footer-country {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 180ms ease;
}

.site-footer-country img {
    display: block;
    width: 1.35rem;
    height: 0.9rem;
    border-radius: 0.18rem;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.site-footer-country:hover {
    color: #F4F0FF;
}

.site-footer a {
    position: relative;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer .site-footer-brand {
    width: fit-content;
}

.site-footer-links a {
    display: inline-flex;
    align-items: center;
    color: #BDB7D0 !important;
}

.site-footer-links a::after {
    width: 0;
    height: 1px;
    margin-left: 0;
    content: "";
    background: #A78BFA;
    transition: width 180ms ease, margin-left 180ms ease;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible,
.site-footer-contact a:hover,
.site-footer-contact a:focus-visible {
    color: #FFFFFF !important;
    transform: translateX(3px);
}

.site-footer-links a:hover::after,
.site-footer-links a:focus-visible::after {
    width: 1rem;
    margin-left: 0.5rem;
}

.site-footer a:focus-visible {
    outline: 2px solid #C4B5FD;
    outline-offset: 4px;
    border-radius: 0.25rem;
}

.site-footer-payment-methods {
    color: #FFFFFF;
}

.site-footer .footer-payment-methods {
    border-top-color: rgba(196, 181, 253, 0.2);
}

.site-footer .footer-payment-label { color: #F1ECFA; }
.site-footer .footer-payment-powered { color: #A9A2BC; }
.site-footer .footer-card-brand { border-color: rgba(196, 181, 253, 0.24); background: rgba(255, 255, 255, 0.08); color: #F1ECFA; }

.site-footer-bottom {
    border-top-color: rgba(196, 181, 253, 0.18) !important;
    color: #918AA8 !important;
    line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
    .site-footer a,
    .site-footer-links a::after,
    .site-footer-country {
        transition: none;
    }
}

/* Hero availability status: a visible green live indicator with a tactile hover state. */
.hero-badge {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-color: rgba(22, 129, 70, 0.34) !important;
    box-shadow: 0 8px 22px rgba(22, 129, 70, 0.12), 0 0 0 1px rgba(34, 197, 94, 0.08) !important;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.hero-badge::after {
    position: absolute;
    z-index: -1;
    top: -80%;
    bottom: -80%;
    left: -28%;
    width: 18%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(24deg) translateX(-300%);
    animation: hero-badge-sheen 7s ease-in-out infinite;
}

.hero-badge:hover {
    border-color: rgba(22, 129, 70, 0.62) !important;
    background-color: #EAF7EE !important;
    box-shadow: 0 12px 28px rgba(22, 129, 70, 0.18), 0 0 0 4px rgba(34, 197, 94, 0.14), 0 0 24px rgba(22, 163, 74, 0.2) !important;
    transform: translateY(-2px);
}

.hero-badge > span:first-child.hero-badge-status {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: 0.7rem;
    height: 0.7rem;
    background: #16A34A !important;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14), 0 0 14px rgba(22, 163, 74, 0.42) !important;
    animation: hero-badge-status-pulse 2.2s ease-in-out infinite;
}

@keyframes hero-badge-live {
    0%, 100% { box-shadow: 0 8px 22px rgba(22, 129, 70, 0.12), 0 0 0 1px rgba(34, 197, 94, 0.08); }
    50% { box-shadow: 0 10px 28px rgba(22, 129, 70, 0.2), 0 0 0 4px rgba(34, 197, 94, 0.1), 0 0 24px rgba(22, 163, 74, 0.12); }
}

@keyframes hero-badge-status-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.14), 0 0 10px rgba(22, 163, 74, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.08), 0 0 18px rgba(22, 163, 74, 0.48); }
}

@keyframes hero-badge-sheen {
    0%, 45% { transform: rotate(24deg) translateX(-300%); }
    70%, 100% { transform: rotate(24deg) translateX(850%); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .hero-badge-status,
    .hero-badge::after {
        animation: none;
        transition: none;
    }
}

/* 90-day guarantee trust signal in the homepage hero. */
.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: min(100%, 31rem);
    padding: 0.8rem 1rem 0.8rem 0.8rem;
    border: 1px solid rgba(112, 56, 230, 0.2);
    border-radius: 1rem;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.86), rgba(239, 234, 251, 0.74));
    box-shadow: 0 10px 24px rgba(112, 56, 230, 0.08);
}

.hero-guarantee-copy {
    min-width: 0;
}

.hero-guarantee-copy h2 {
    margin: 0;
    color: #43206F !important;
    font-size: 0.98rem;
    font-weight: 800 !important;
    line-height: 1.25;
}

.hero-guarantee-copy p {
    margin: 0.25rem 0 0;
    color: #625D70;
    font-size: 0.78rem;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .hero-guarantee {
        align-items: flex-start;
        width: 100%;
        margin-top: 1.5rem;
        padding: 0.75rem;
    }

    .hero-guarantee-copy h2 {
        font-size: 0.9rem;
    }

    .hero-guarantee-copy p {
        font-size: 0.75rem;
    }
}

@media (max-width: 374px) {
    .hero-guarantee {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .hero-guarantee-copy {
        width: 100%;
    }
}
