/* Base Styles from Original */
* {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

body {
    --bg: #fff;
    --textNormal: #2d3748;
    --textTitle: #222;
    --textLink: #333;
    --hr: rgba(0, 0, 0, 0.2);
    --field-border: #080809;
    --field-back: #fff;
    color: var(--textNormal);
    background-color: var(--bg);
    margin: 0;
    line-height: 1.8;
    font-size: 20px;
}

html {
    scroll-behavior: smooth;
    text-align: left;
}

.container {
    max-width: 1200px;
    padding: 0 1rem;
    margin-left: auto;
    margin-right: auto;
}

.small-container {
    max-width: 800px;
    padding: 0 1rem;
    margin-left: auto;
    margin-right: auto;
}


/* Black Container / Hero Background */
.black {
    background: #000;
    color: #fff;
    width: 100%;
    max-width: 100%;
    padding-right: 10%;
    padding-left: 10%;
}

/* Navigation */
.nav {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1000;
}

.nav > .nav-header {
    display: inline;
}

.nav > .nav-header > .nav-title {
    display: inline-block;
    padding: 10px;
}

.logo-container {
    width: 65px;
    height: 65px;
    perspective: 1000px;
}

.logo-flip {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.logo-container:hover .logo-flip {
    transform: rotateY(180deg);
}

.logo {
    width: 65px;
    height: 65px;
    position: absolute;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.logo-front {
    background-color: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.logo-back {
    transform: rotateY(180deg);
    object-fit: cover;
}

.nav > .nav-links {
    display: inline;
    float: right;
    font-size: 22px;
    margin-top: 10px;
}

.nav > .nav-links > a {
    font-size: 18px;
    display: inline-block;
    margin: 10px;
    text-decoration: none;
    color: var(--field-back);
}

/* Hamburger Menu Button */
.nav > .nav-btn {
    display: none;
}

.nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
    cursor: pointer;
}

.nav > .nav-btn > label:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.nav > .nav-btn > label > span:last-child {
    margin-bottom: 0;
}

.nav > #nav-check {
    display: none;
}

/* CTA Button in Nav */
.cta {
    text-align: center;
    color: #000 !important;
    background: #ecc94b;
    padding: 10px;
    width: auto;
    padding: 10px 24px;
    font-weight: 700;
    border-radius: 4px;
}

.cta:hover {
    background: #FFD54F;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: #000;
    width: 100%;
    max-width: 100%;
    padding: 70px;
    margin-bottom: 45px;
}

.hero * {
    color: var(--bg);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.hero p {
    font-size: 20px;
    color: #cccccc;
    max-width: 600px;
    line-height: 1.6;
}

.left {
    text-align: left;
}

.margin-bottom {
    margin-bottom: 2rem;
}

.margin-top {
    margin-top: 2rem;
}

.no-margin-bottom {
    margin-bottom: 0;
}

/* Flex Grid for Cards */
.flex-row {
    margin-left: -1rem;
    margin-right: -1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flex-small {
    padding-left: 1rem;
    padding-right: 1rem;
    flex-basis: 100%;
    margin-bottom: 1rem;
}

@media (min-width: 600px) {
    .flex-small {
        flex: 1;
        margin-bottom: 0;
    }
}

/* Cards */
.card {
    background-color: #fff;
    color: #000;
    border: 1px solid rgba(238, 238, 238, 0.933);
    padding: 40px 30px;
    margin: 10px;
    box-shadow: -1px 5px 16px rgba(198, 198, 198, 0.671);
    border-radius: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.card p {
    color: #000;
    margin-bottom: 20px;
    font-size: 18px;
}

.card a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    transition: opacity 0.3s;
}

.card a:hover {
    opacity: 0.6;
}

/* Up class to move cards up */
.up {
    margin-top: -95px;
}

/* Trust Section */
.cl {
    width: 80%;
    max-width: 80%;
    border: none;
}

.vertical-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Client logos: sizing, spacing and responsive rules */
.client-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.client-logo {
    filter: grayscale(100%);
    width: 140px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.95;
    transition: filter 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
}

.client-logo:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-4px);
}

@media (max-width: 900px) {
    .client-logo { width: 120px; }
}

@media (max-width: 600px) {
    .client-logo { width: 80px; margin: 10px 5px; }
    .cl { width: 100% !important; max-width: 100% !important; }
    .client-logos { gap: 15px; }
}

.top {
    margin-top: 5%;
}

/* Content Sections */
h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--textTitle);
    margin: 1.5rem 0;
}

p {
    color: var(--textNormal);
    font-size: 20px;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

p a {
    border-bottom: 1px dotted #848585;
    color: inherit;
    text-decoration: none;
}

p a:hover {
    color: var(--textTitle);
}

/* Lists */
.validate {
    list-style: none;
    text-align: left;
    padding-left: 0 !important;
}

.validate li {
    font-size: 22px;
    margin-bottom: 12px;
}

ul {
    margin: 0 0 1.5rem;
}

/* Quotation / CTA Box */
.quotation {
    background-color: #fff;
    border: 2px solid var(--textNormal);
    color: var(--textNormal);
    padding: 60px;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 0;
}

.quotation h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.quotation p {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
}

.cnv2 {
    text-align: center;
    color: #000 !important;
    background: #ecc94b;
    width: auto;
    padding: 16px 40px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
}

.cnv2:hover {
    background: #FFD54F;
    transform: scale(1.05);
}

/* Footer / Copyright */
.copyright {
    margin-top: 80px !important;
    text-align: center !important;
    display: block;
    margin: 0 auto 50px;
    padding-bottom: 40px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer a {
    font-size: 15px;
    color: var(--textNormal);
    display: inline-block;
    margin-right: 1.5rem;
    margin-left: 5px;
    text-decoration: none;
}

.footer a:hover {
    color: var(--textTitle);
}

.copyright a {
    color: var(--textNormal);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--textTitle);
}

/* Responsive */
@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    .black {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero {
        padding: 40px 20px !important;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 30px;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
    }

    .card {
        padding: 25px 20px;
        margin: 5px;
    }

    .quotation {
        padding: 30px 20px;
    }

    .quotation h3 {
        font-size: 24px;
    }

    .cl {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .up {
        margin-top: 20px;
    }

    /* Hamburger Menu */
    .nav > .nav-btn {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 0;
    }

    .nav > .nav-links {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #000;
        height: 0;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 65px;
        left: 0;
        z-index: 999;
    }

    .nav > .nav-links > a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 15px 20px;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav > #nav-check:checked ~ .nav-links {
        height: auto;
        overflow-y: auto;
    }
}

@media (min-width: 600px) {
    h2 {
        font-size: 32px;
    }
}

@media (min-width: 600px) and (max-width: 900px) {
    .hero {
        padding: 50px 30px !important;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .card {
        padding: 35px 25px;
    }
}

/* Language Switcher */
.lang-switch {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-switch:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

/* Reviews Section */
.reviews-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 80px;
    color: var(--textTitle);
}

.review-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.review-stars {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1;
}

.review-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--textNormal);
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    margin-top: auto;
}

.review-author strong {
    font-size: 18px;
    color: var(--textTitle);
    font-weight: 600;
}

.review-author span {
    font-size: 15px;
    color: #718096;
}

@media (max-width: 600px) {
    .reviews-title {
        font-size: 28px;
        margin-bottom: 20px;
        margin-top: 50px;
    }
    
    .review-text {
        font-size: 17px;
    }
}

/* Use Cases Section - Accordion */
.use-cases {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.use-case-item {
    background: #f7fafc;
    border-left: 4px solid #ecc94b;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.use-case-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.use-case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

.use-case-header:hover {
    background-color: rgba(236, 201, 75, 0.1);
}

.use-case-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.use-case-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.use-case-title {
    margin: 0;
    font-size: 19px;
    color: var(--textTitle);
    font-weight: 600;
}

.use-case-toggle {
    font-size: 24px;
    color: #ecc94b;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.use-case-item.active .use-case-toggle {
    transform: rotate(180deg);
}

.use-case-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
}

.use-case-item.active .use-case-content {
    max-height: 3000px;
    padding: 0 25px 25px 25px;
    transition: max-height 0.5s ease-in, padding 0.5s ease-in;
}

.use-case-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #718096;
}

.use-case-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.use-case-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--textNormal);
}

.use-case-screenshot {
    width: 100%;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.use-case-results {
    background: #fff;
    border-radius: 6px;
    padding: 18px;
    margin-top: 15px;
}

.use-case-results h4 {
    margin: 0 0 12px 0;
    font-size: 17px;
    color: var(--textTitle);
}

.use-case-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-results li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
}

.use-case-results li::before {
    content: "✓";
    color: #48bb78;
    font-weight: bold;
    font-size: 20px;
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.use-case-tag {
    background: #edf2f7;
    color: #4a5568;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-cta-text {
    font-size: 20px;
    font-weight: 600;
}

.sticky-cta-button {
    background: #ecc94b;
    color: #000;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    white-space: nowrap;
}

.sticky-cta-button:hover {
    background: #FFD54F;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .sticky-cta-text {
        font-size: 16px;
    }
    
    .sticky-cta-button {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Contact Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #000;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-option-card {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-option-card:hover {
    border-color: #ecc94b;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-option-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-option-card h3 {
    font-size: 20px;
    margin: 10px 0;
    color: var(--textTitle);
}

.contact-option-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 25px 20px 10px;
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2d3748;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 6px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.contact-link:hover {
    color: #000;
    background: #fff;
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-link-icon {
    font-size: 18px;
}

.contact-form-container {
    animation: fadeIn 0.3s;
}

.calendly-container {
    animation: fadeIn 0.3s;
}

.back-button {
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 0;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.back-button:hover {
    color: #000;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--textTitle);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ecc94b;
}

.submit-button {
    background: #ecc94b;
    color: #000;
    border: none;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #FFD54F;
    transform: scale(1.02);
}

/* Form status messages */
#form-status {
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.status-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Consent checkbox label */
.consent-label {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.consent-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0;
}

#consent-text {
    flex: 1;
}

@media (max-width: 600px) {
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-option-card {
        padding: 25px 15px;
    }
    
    .contact-option-icon {
        font-size: 36px;
    }
    
    .contact-option-card h3 {
        font-size: 18px;
    }
    
    .contact-option-card p {
        font-size: 14px;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Certification badges (uses local SVGs in `content/`) */
.certifications { display:flex; gap:8px; align-items:center; font-size:14px; color:inherit; position:relative; }
.certify-badges { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.certified-label { font-weight:700; color:#fff; margin-right:6px; font-size:15px; display:inline-block; }
.badge { display:inline-flex; gap:10px; align-items:center; padding:6px 12px; background: rgba(255,255,255,0.03); color: #fff; border-radius:999px; font-size:15px; border: 1px solid rgba(255,255,255,0.06); min-height:40px; }
.badge-logo { display:block; width:24px; height:24px; object-fit:contain; }
.badge-text { display:inline-block; line-height:1; font-weight:600; font-size:15px; }
.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; }

@media (max-width:420px) {
    .certifications { flex-direction: column; align-items: flex-start; gap: 10px; }
    .certify-badges { gap:8px; }
    .badge { padding:8px 10px; font-size:12px; min-height:38px; }
    .badge-logo { width:20px; height:20px; }
    .badge-text { font-size:12px; }
    .certified-label { font-size: 14px; }
}

/* ====================================
   DataLayer Toast Notifications
   ==================================== */

.datalayer-toast-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 10000;
    max-width: 380px;
    pointer-events: none;
    font-family: 'Courier New', 'Consolas', 'Monaco', monospace;
}

.datalayer-toast {
    background: #242424;
    border-radius: 0;
    padding: 0;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border: 1px solid #3c3c3c;
    opacity: 0;
    transform: translateX(350px);
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: all;
    border-left: 3px solid #5f9edf;
}

.datalayer-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.datalayer-toast-success {
    border-left-color: #74b566;
}

.datalayer-toast-info {
    border-left-color: #5f9edf;
}

.datalayer-toast-warning {
    border-left-color: #e5c07b;
}

.datalayer-toast-action {
    border-left-color: #e06c75;
}

.datalayer-toast-media {
    border-left-color: #c678dd;
}

.toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    background: #2d2d2d;
    padding: 6px 10px;
    border-bottom: 1px solid #3c3c3c;
}

.toast-title {
    font-weight: 400;
    font-size: 11px;
    color: #cccccc;
    letter-spacing: 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.toast-title::before {
    content: '> ';
    color: #7f848e;
    margin-right: 4px;
    font-weight: 700;
}

.toast-count {
    background: rgba(95, 158, 223, 0.15);
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 9px;
    font-weight: 400;
    color: #7f848e;
    font-family: 'Consolas', monospace;
    border: 1px solid rgba(95, 158, 223, 0.2);
}

.toast-code {
    background: #1e1e1e;
    border-radius: 0;
    padding: 10px;
    overflow-x: auto;
    max-height: 140px;
    border: none;
}

.toast-code pre {
    margin: 0;
    font-size: 10px;
    line-height: 1.5;
}

.toast-code code {
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    white-space: pre;
    display: block;
}

/* Syntax highlighting for JSON in toast */
.toast-code code::before {
    content: '';
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

/* Mobile responsive - Hide dataLayer toasts on mobile */
@media (max-width: 768px) {
    .datalayer-toast-container {
        display: none !important;
    }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    .datalayer-toast {
        background: #242424;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    }
    
    .toast-code {
        background: #1e1e1e;
    }
}

/* Hover effects */
.datalayer-toast:hover {
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(95, 158, 223, 0.2);
    border-left-width: 4px;
}

/* Custom scrollbar for code */
.toast-code::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

.toast-code::-webkit-scrollbar-track {
    background: #2d2d2d;
    border-radius: 0;
}

.toast-code::-webkit-scrollbar-thumb {
    background: #424242;
    border-radius: 0;
}

.toast-code::-webkit-scrollbar-thumb:hover {
    background: #4e4e4e;
}