.index-test-page {
    --test-black: #050505;
    --test-white: #ffffff;
    --test-blue: #001b5f;
    --test-blue-dark: #001b5f;
    --test-gray: #e5e7eb;
    --test-shadow: 8px 8px 0 #050505;
    --test-shadow-sm: 5px 5px 0 #050505;
    font-family: "Gothic A1", sans-serif;
    color: var(--test-black);
    background:
        radial-gradient(circle at top left, rgba(0, 87, 255, 0.22), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}

.index-test-page * {
    box-sizing: border-box;
}

.index-test-page html {
    scroll-behavior: smooth;
}

.index-test-page body,
.index-test-page {
    overflow-x: hidden;
}

.index-test-page .skip-link {
    position: absolute;
    left: 1rem;
    top: 0;
    z-index: 2000;
    transform: translateY(-140%);
    padding: 0.8rem 1rem;
    background: var(--test-black);
    color: var(--test-white);
    border: 3px solid var(--test-white);
    font-weight: 800;
    text-decoration: none;
}

.index-test-page .skip-link:focus {
    transform: translateY(0);
}

.index-test-page a,
.index-test-page button,
.index-test-page input,
.index-test-page textarea,
.index-test-page select {
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.index-test-page a:focus-visible,
.index-test-page button:focus-visible,
.index-test-page input:focus-visible,
.index-test-page textarea:focus-visible,
.index-test-page select:focus-visible {
    outline: 3px solid var(--test-blue);
    outline-offset: 3px;
}

.index-test-page main[id],
.index-test-page section[id] {
    scroll-margin-top: 6rem;
}

.index-test-page .site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 4px solid var(--test-black);
}

.index-test-page .navbar {
    background: transparent;
}

.index-test-page .navbar-brand {
    gap: 0.85rem;
}

.index-test-page .brand-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--test-blue);
    color: var(--test-white);
    border: 3px solid var(--test-black);
    box-shadow: var(--test-shadow-sm);
    font-family: "Bebas Neue", cursive;
    font-size: 1.55rem;
    letter-spacing: 0.05em;
}

.index-test-page .brand-text {
    color: var(--test-black);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.index-test-page .navbar-toggler {
    border: 3px solid var(--test-black);
    border-radius: 0;
    box-shadow: var(--test-shadow-sm);
}

.index-test-page .nav-link {
    color: var(--test-black) !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.index-test-page .nav-link:hover,
.index-test-page .nav-link:focus-visible {
    color: var(--test-blue) !important;
}

.index-test-page .language-switch-btn,
.index-test-page .quote-btn,
.index-test-page .hero-primary-btn,
.index-test-page .hero-secondary-btn,
.index-test-page .showcase-link,
.index-test-page .contact-submit {
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    border-radius: 0;
    border: 3px solid var(--test-black);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: var(--test-shadow-sm);
}

.index-test-page .quote-btn,
.index-test-page .hero-primary-btn,
.index-test-page .showcase-link {
    background: var(--test-blue);
    color: var(--test-white);
}

.index-test-page .quote-btn:hover,
.index-test-page .hero-primary-btn:hover,
.index-test-page .showcase-link:hover {
    background: var(--test-blue-dark);
    color: var(--test-white);
    transform: translate(-2px, -2px);
}

.index-test-page .language-switch-btn,
.index-test-page .hero-secondary-btn {
    background: var(--test-white);
    color: var(--test-black);
}

.index-test-page .language-switch-btn:hover,
.index-test-page .hero-secondary-btn:hover {
    background: var(--test-black);
    color: var(--test-white);
    transform: translate(-2px, -2px);
}

.index-test-page .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.45rem 0.85rem;
    background: var(--test-blue);
    color: var(--test-white) !important;
    border: 3px solid var(--test-black);
    box-shadow: var(--test-shadow-sm);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.index-test-page .hero-section {
    padding: 2rem 0 4rem;
    background:
        linear-gradient(135deg, var(--test-black) 0 42%, var(--test-blue) 42% 100%);
}

.index-test-page .hero-shell {
    position: relative;
}

.index-test-page .hero-copy-card {
    background: var(--test-white);
    border: 4px solid var(--test-black);
    box-shadow: 12px 12px 0 var(--test-black);
    padding: clamp(1.4rem, 4vw, 2.5rem);
}

.index-test-page .hero-title {
    margin: 1rem 0;
    font-family: "Bebas Neue", cursive;
    font-size: clamp(3rem, 9vw, 6.3rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
}

.index-test-page .hero-title::after {
    content: "";
    display: block;
    width: min(220px, 50%);
    height: 8px;
    margin-top: 1rem;
    background: linear-gradient(90deg, var(--test-blue), transparent);
    transform: rotate(-1deg);
}

.index-test-page .hero-text {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 36rem;
}

.index-test-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.index-test-page .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.index-test-page .trust-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.55rem 0.85rem;
    background: #eef4ff;
    border: 2px solid var(--test-black);
    font-weight: 800;
    box-shadow: 4px 4px 0 var(--test-black);
}

.index-test-page .hero-visual-frame {
    position: relative;
    background: var(--test-white);
    border: 4px solid var(--test-black);
    box-shadow: 12px 12px 0 var(--test-blue-dark);
    padding: 1rem;
}

.index-test-page .hero-image {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 87, 255, 0.16), rgba(0, 27, 95, 0.08));
}

.index-test-page .frame-sticker {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.35rem 0.75rem;
    background: var(--test-blue);
    color: var(--test-white);
    border: 3px solid var(--test-black);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.index-test-page .sticker-top {
    top: -18px;
    left: 18px;
    transform: rotate(-4deg);
}

.index-test-page .sticker-bottom {
    right: 18px;
    bottom: -18px;
    transform: rotate(3deg);
}

.index-test-page .section-heading {
    margin: 0 auto 3rem;
    max-width: 860px;
}

.index-test-page .section-heading h2 {
    font-family: "Bebas Neue", cursive;
    font-size: clamp(2.7rem, 7vw, 4.8rem);
    line-height: 0.95;
    margin: 1rem 0;
}

.index-test-page .section-heading p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #334155;
}

.index-test-page .why-section,
.index-test-page .pricing-section,
.index-test-page .contact-section-test {
    background: #f7f9ff;
}

.index-test-page .services-section,
.index-test-page .trust-section {
    background: var(--test-black);
    color: var(--test-white);
}

.index-test-page .our-work-section-test,
.index-test-page .process-section-test {
    background: var(--test-white);
}

.index-test-page .services-section .section-heading p,
.index-test-page .trust-section .section-heading p,
.index-test-page .services-section .section-heading h2,
.index-test-page .trust-section .section-heading h2 {
    color: var(--test-white);
}

.index-test-page .brutal-card,
.index-test-page .service-card-test,
.index-test-page .portfolio-card-test,
.index-test-page .process-card-test,
.index-test-page .trust-box {
    background: var(--test-white);
    border: 4px solid var(--test-black);
    box-shadow: var(--test-shadow);
}

.index-test-page .brutal-card,
.index-test-page .service-card-test,
.index-test-page .portfolio-card-test,
.index-test-page .process-card-test {
    padding: 1.5rem;
    height: 100%;
}

.service-card-test h3{
    color: #001b5f;
}

.index-test-page .brutal-card h3,
.index-test-page .service-card-test h3,
.index-test-page .portfolio-card-test h4,
.index-test-page .process-card-test h3 {
    font-family: "Bebas Neue", cursive;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.85rem;
}

.index-test-page .service-card-test {
    position: relative;
}

.index-test-page .service-accent,
.index-test-page .project-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.35rem 0.7rem;
    background: var(--test-blue);
    color: var(--test-white);
    border: 2px solid var(--test-black);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 var(--test-black);
    margin-bottom: 1rem;
}

.index-test-page .service-link-test {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    color: var(--test-blue-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.index-test-page .service-link-test::after {
    content: "→";
    font-size: 1.1rem;
}

.index-test-page .showcase-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}

.index-test-page .showcase-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.index-test-page .showcase-btn {
    width: 100%;
    padding: 1rem;
    background: var(--test-white);
    border: 3px solid var(--test-black);
    box-shadow: var(--test-shadow-sm);
    color: var(--test-black);
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.index-test-page .showcase-btn.active,
.index-test-page .showcase-btn:hover {
    background: var(--test-blue);
    color: var(--test-white);
}

.index-test-page .showcase-display {
    background: #edf3ff;
    border: 4px solid var(--test-black);
    box-shadow: 12px 12px 0 var(--test-black);
    padding: clamp(1.4rem, 3vw, 2.5rem);
}

.index-test-page .showcase-panel {
    display: none;
}

.index-test-page .showcase-panel.active {
    display: block;
}

.index-test-page .showcase-panel[hidden] {
    display: none !important;
}

.index-test-page .showcase-panel h3 {
    font-family: "Bebas Neue", cursive;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.95;
    margin-bottom: 1rem;
}

.index-test-page .showcase-panel p,
.index-test-page .showcase-panel li,
.index-test-page .portfolio-card-test p,
.index-test-page .process-card-test p,
.index-test-page .brutal-card p,
.index-test-page .service-card-test p {
    color: #334155;
    line-height: 1.65;
}

.index-test-page .showcase-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.2rem;
    padding: 0;
    margin: 0 0 2rem;
    list-style: none;
}

.index-test-page .showcase-feature-list li {
    position: relative;
    padding-left: 1rem;
    font-weight: 700;
}

.index-test-page .showcase-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--test-blue);
    border: 2px solid var(--test-black);
}

.index-test-page .portfolio-card-test img {
    width: 100%;
    border: 3px solid var(--test-black);
}

.index-test-page .portfolio-card-test a {
    color: var(--test-blue-dark);
    font-weight: 900;
}

.index-test-page .price-line {
    color: var(--test-blue);
    font-weight: 900;
    text-transform: uppercase;
}

.index-test-page .process-card-test {
    position: relative;
}

.index-test-page .process-card-test span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: var(--test-blue);
    color: var(--test-white);
    border: 3px solid var(--test-black);
    font-weight: 900;
    box-shadow: 4px 4px 0 var(--test-black);
    margin-bottom: 1rem;
}

.index-test-page .trust-grid-test {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.index-test-page .trust-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 1rem;
    text-align: center;
    font-weight: 900;
    color: var(--test-black);
}

.index-test-page .contact-shell-test {
    background: var(--test-black);
    color: var(--test-white);
    border: 4px solid var(--test-black);
    box-shadow: 12px 12px 0 var(--test-blue);
    padding: clamp(1.4rem, 4vw, 2.5rem);
}

.index-test-page .contact-shell-test h2 {
    font-family: "Bebas Neue", cursive;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 0.95;
    margin: 1rem 0;
}

.index-test-page .contact-shell-test p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.7;
}

.index-test-page .contact-form-shell-test {
    background: var(--test-white);
    border: 4px solid var(--test-black);
    box-shadow: 10px 10px 0 var(--test-blue-dark);
    padding: 1.2rem;
}

.index-test-page .contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.index-test-page .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.index-test-page .form-field-full,
.index-test-page .contact-submit,
.index-test-page .form-status {
    grid-column: 1 / -1;
}

.index-test-page .label-text {
    color: var(--test-black);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.index-test-page .form-text-box {
    width: 100%;
    min-height: 50px;
    padding: 0.85rem 1rem;
    background: var(--test-white);
    border: 3px solid var(--test-black);
    color: var(--test-black);
    border-radius: 0;
}

.index-test-page .form-text-box::placeholder {
    color: #64748b;
}

.index-test-page textarea.form-text-box {
    min-height: 138px;
    resize: vertical;
}

.index-test-page .form-status {
    min-height: 1.2rem;
    margin: 0;
    color: var(--test-black) !important;
    font-weight: 800;
}

.index-test-page .form-status-success {
    color: var(--test-blue-dark) !important;
}

.index-test-page .form-status-error {
    color: #991b1b !important;
}

.index-test-page .contact-submit {
    justify-self: start;
    background: var(--test-blue);
    color: var(--test-white) !important;
}

.index-test-page .contact-submit:hover,
.index-test-page .contact-submit:focus-visible {
    background: var(--test-blue-dark);
    color: var(--test-white);
    transform: translate(-2px, -2px);
}

.index-test-page .footer-test {
    background: var(--test-black);
    color: var(--test-white);
    border-top: 4px solid var(--test-blue);
}

.label-sample-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.index-test-page .footer-grid-test {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.18);
}

.index-test-page .footer-brand-block .section-tag {
    margin-bottom: 1rem;
}

.index-test-page .footer-copy {
    max-width: 24rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.index-test-page .footer-heading {
    margin: 0 0 1rem;
    font-family: "Bebas Neue", cursive;
    font-size: 1.9rem;
    letter-spacing: 0.03em;
}

.index-test-page .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.index-test-page .footer-links-list a,
.index-test-page .footer-back-top {
    color: var(--test-white);
    font-weight: 800;
    text-decoration: none;
}

.index-test-page .footer-links-list a:hover,
.index-test-page .footer-links-list a:focus-visible,
.index-test-page .footer-back-top:hover,
.index-test-page .footer-back-top:focus-visible {
    color: #8fb1ff;
}

.index-test-page .footer-bottom-test {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    color: rgba(255, 255, 255, 0.86);
}

.index-test-page .footer-back-top {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-card-test{
    display: flex;
    flex-direction: column;
    min-height: 350px;
    background: var(--test-white);
    border: 4px solid var(--test-black);
    box-shadow: var(--test-shadow);
    padding: 1.5rem;
}

.testimonial-text{
   
    color: #334155;
    line-height: 1.65;
}
.testimonial-author{
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-author img{
    float: left;
    width: 50px;
    height: 50px;
}

.testimonial-author p{
    float: right;
    color: #334155;
    font-weight: 700;
}


.logo-carousel {
  overflow: hidden;
  padding: 40px 0;
  padding-bottom: 0;
  background: rgb(0, 0, 0);
  white-space: nowrap;
  position: relative;
}

/* Optional gradient masks to fade the edges out smoothly */
.logo-carousel::before,
.logo-carousel::after {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  content: "";
  z-index: 2;
}
.logo-carousel::before { left: 0; background: linear-gradient(to right, rgb(0, 0, 0), transparent); }
.logo-carousel::after { right: 0; background: linear-gradient(to left, rgb(0, 0, 0), transparent); }

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* Pause the animation when a user hovers over the logos */
.logo-track:hover {
  animation-play-state: paused;
}

.logo-slide {
  padding: 0 30px; /* Space between logos */
  display: flex;
  align-items: center;
}

.logo-slide img {
background: #0000;
  height: 200px; /* Standardize your logo heights */
  width: auto;
  display: block;
  object-fit:contain;
}

/* The loop: moves halfway through the total width, then resets seamlessly */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


@media (max-width: 991px) {
    .index-test-page .showcase-layout {
        grid-template-columns: 1fr;
    }

    .index-test-page .showcase-tabs {
        flex-direction: row;
        overflow-x: auto;
    }

    .index-test-page .showcase-btn {
        min-width: max-content;
    }

    .index-test-page .trust-grid-test {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .index-test-page .footer-grid-test {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .index-test-page .hero-section {
        padding-top: 1.25rem;
    }

    .index-test-page .hero-actions {
        flex-direction: column;
    }

    .index-test-page .hero-actions .btn,
    .index-test-page .quote-btn,
    .index-test-page .language-switch-btn,
    .index-test-page .contact-submit {
        width: 100%;
    }

    .index-test-page .contact {
        grid-template-columns: 1fr;
    }

    .index-test-page .showcase-feature-list {
        grid-template-columns: 1fr;
    }

    .index-test-page .trust-grid-test {
        grid-template-columns: 1fr;
    }

    .index-test-page .footer-grid-test,
    .index-test-page .footer-bottom-test {
        grid-template-columns: 1fr;
        display: grid;
    }

    .index-test-page .footer-bottom-test {
        justify-content: start;
    }

    .index-test-page .hero-title {
        font-size: 3.15rem;
    }

    .index-test-page .section-heading h2,
    .index-test-page .contact-shell-test h2 {
        font-size: 2.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }

    .index-test-page *,
    .index-test-page *::before,
    .index-test-page *::after {
        transition: none !important;
    }
}

.bc-chatbot {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.9rem;
}

.bc-chatbot__bubble {
    min-width: 72px;
    min-height: 72px;
    border: 3px solid var(--test-black);
    background: var(--test-blue);
    color: var(--test-white);
    box-shadow: var(--test-shadow-sm);
    font-family: "Bebas Neue", cursive;
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.6rem 0.95rem;
}

.bc-chatbot__bubble:hover,
.bc-chatbot__bubble:focus-visible {
    background: var(--test-black);
    color: var(--test-white);
    transform: translate(-2px, -2px);
}

.bc-chatbot__panel {
    width: min(25.5rem, calc(100vw - 2rem));
    border: 4px solid var(--test-black);
    background: var(--test-white);
    box-shadow: 12px 12px 0 var(--test-black);
    overflow: hidden;
}

.bc-chatbot__panel--hidden {
    display: none;
}

.bc-chatbot__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem 0.9rem;
    background: linear-gradient(135deg, var(--test-blue) 0%, #214bb8 100%);
    color: var(--test-white);
}

.bc-chatbot__eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.bc-chatbot__title {
    margin: 0.35rem 0 0;
    font-family: "Bebas Neue", cursive;
    font-size: 2rem;
    line-height: 0.95;
    letter-spacing: 0.03em;
}

.bc-chatbot__subtitle {
    margin: 0.55rem 0 0;
    font-size: 0.88rem;
    line-height: 1.45;
    max-width: 15rem;
}

.bc-chatbot__close {
    min-width: 44px;
    min-height: 44px;
    border: 3px solid var(--test-white);
    background: transparent;
    color: var(--test-white);
    font-size: 1.8rem;
    line-height: 1;
    padding: 0;
}

.bc-chatbot__close:hover,
.bc-chatbot__close:focus-visible {
    background: var(--test-white);
    color: var(--test-blue);
}

.bc-chatbot__messages {
    max-height: 24rem;
    overflow-y: auto;
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(0, 27, 95, 0.03), rgba(0, 27, 95, 0.08)),
        #f8fbff;
    display: grid;
    gap: 0.95rem;
}

.bc-chatbot__quick-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0.8rem 1rem 0;
    background: var(--test-white);
}

.bc-chatbot__prompt {
    min-height: 40px;
    border: 3px solid var(--test-black);
    background: #eef4ff;
    padding: 0.45rem 0.75rem;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--test-blue);
    box-shadow: 3px 3px 0 var(--test-black);
}

.bc-chatbot__prompt:hover,
.bc-chatbot__prompt:focus-visible {
    background: var(--test-blue);
    color: var(--test-white);
    transform: translate(-2px, -2px);
}

.bc-chatbot__message {
    max-width: 88%;
    border: 3px solid var(--test-black);
    box-shadow: 4px 4px 0 var(--test-black);
    padding: 0.75rem 0.85rem;
}

.bc-chatbot__message--bot {
    justify-self: start;
    background: var(--test-white);
}

.bc-chatbot__message--visitor {
    justify-self: end;
    background: #e9f1ff;
}

.bc-chatbot__message--loading {
    opacity: 0.9;
}

.bc-chatbot__message-label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--test-blue);
}

.bc-chatbot__message-text {
    margin: 0.45rem 0 0;
    font-size: 0.95rem;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
}

.bc-chatbot__status {
    margin: 0;
    padding: 0 1rem 0.65rem;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--test-blue);
}

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

.bc-chatbot__form {
    border-top: 3px solid var(--test-black);
    padding: 0.9rem 1rem 1rem;
    background: var(--test-white);
}

.bc-chatbot__input {
    width: 100%;
    min-height: 96px;
    resize: vertical;
    border: 3px solid var(--test-black);
    padding: 0.8rem 0.9rem;
    font-size: 0.95rem;
    line-height: 1.45;
    background: #fdfefe;
}

.bc-chatbot__input::placeholder {
    color: #65758c;
}

.bc-chatbot__form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.85rem;
}

.bc-chatbot__helper {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.45;
    color: #4b5563;
}

.bc-chatbot__send {
    min-width: 112px;
    min-height: 48px;
    border: 3px solid var(--test-black);
    background: var(--test-blue);
    color: var(--test-white);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--test-shadow-sm);
}

.bc-chatbot__send:hover,
.bc-chatbot__send:focus-visible {
    background: var(--test-black);
    color: var(--test-white);
    transform: translate(-2px, -2px);
}

.bc-chatbot__send:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    background: #94a3b8;
}

@media (max-width: 767.98px) {
    .bc-chatbot {
        right: 0.75rem;
        left: 0.75rem;
        bottom: 0.75rem;
        align-items: stretch;
    }

    .bc-chatbot__panel {
        width: 100%;
        box-shadow: 8px 8px 0 var(--test-black);
    }

    .bc-chatbot__bubble {
        align-self: flex-end;
        min-width: 64px;
        min-height: 64px;
        font-size: 1.05rem;
    }

    .bc-chatbot__messages {
        max-height: 19.5rem;
    }

    .bc-chatbot__form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .bc-chatbot__send {
        width: 100%;
    }
}
