:root {
    --bg-dark: #1a0028;
    --bg-darker: #0d0014;
    --bg-card: #2a0040;
    --bg-light: #f5f0fa;

    --accent: #ea3d7c;
    --accent-hover: #cc3d70;
    --accent-glow: rgba(234, 61, 124, 0.35);
    --accent-border: rgba(234, 61, 124, 0.3);
    --brand: #660099;
    --brand-light: #bc49ff;

    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.72);
    --text-dark: #171f26;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --border-radius: 8px;
    --border-radius-lg: 16px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.highlight {
    color: var(--accent);
}

.text-dark {
    color: var(--text-dark);
}

.center {
    text-align: center;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-intro.text-dark {
    color: var(--text-dark);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 0, 40, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 72px;
    padding: 0.75rem 1.5rem;
}

.site-header-logo img {
    height: 56px;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
}

.site-nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
}

.site-nav-link:hover {
    color: var(--accent);
}

.site-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
}

.site-nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
    color: #fff;
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, #4d0073 100%);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.15rem 2.25rem;
    font-size: 1rem;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: clamp(520px, 85vh, 900px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(102, 0, 153, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(234, 61, 124, 0.25) 0%, transparent 55%),
        linear-gradient(160deg, var(--bg-darker) 0%, var(--bg-dark) 45%, #2d0050 100%);
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(188, 73, 255, 0.15) 0%, transparent 70%);
    top: 10%;
    right: -10%;
    pointer-events: none;
}

.hero-banner-inner {
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

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

.hero-logo img {
    height: 48px;
    width: auto;
}

.hero-title {
    font-size: clamp(1.65rem, 5vw, 3.25rem);
    max-width: 900px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-bottom: 2rem;
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.85rem 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-bullet i {
    color: var(--accent);
    flex-shrink: 0;
}

.hero-cta-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 640px;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    overflow-wrap: break-word;
}

.hero-cta-note span:last-child {
    min-width: 0;
}

.hero-cta-note .cta-emoji {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}

.hero-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hero-badges img {
    height: 40px;
    width: auto;
    opacity: 0.95;
}

/* Why / Problem section */
.why-section {
    padding: 7rem 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin: -2rem 0;
    position: relative;
    z-index: 5;
}

.why-header {
    margin-bottom: 2.5rem;
}

.why-list-box {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(102, 0, 153, 0.08);
    border: 1px solid rgba(102, 0, 153, 0.08);
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.why-list li i {
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.why-closing {
    margin-top: 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand);
    max-width: 700px;
}

/* Solution section */
.solution-section {
    padding: 7rem 0;
    background: var(--bg-dark);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.solution-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 600;
}

.check-list li span {
    min-width: 0;
    overflow-wrap: break-word;
}

.check-list li i {
    color: var(--accent);
    flex-shrink: 0;
}

.solution-visual {
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-visual i {
    width: 80px;
    height: 80px;
    color: var(--brand-light);
    margin: 0 auto 1.5rem;
}

.solution-img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(163, 0, 255, 0.35));
}

.solution-visual h3 {
    font-size: 1.5rem;
    color: var(--accent);
    text-transform: uppercase;
}

/* Features grid */
.features-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.feature-card {
    flex: 1 1 260px;
    max-width: 320px;
    min-height: 150px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-3px);
}

@keyframes slowPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}

.feature-card i,
.feature-card svg {
    width: 40px;
    height: 40px;
    color: var(--brand-light);
    margin-bottom: 1.25rem;
    animation: slowPulse 4s infinite ease-in-out;
}

.feature-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

/* Segments */
.segments-section {
    padding: 7rem 0;
    background: var(--bg-light);
    color: var(--text-dark);
}

.segments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.segment-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 200px;
    max-width: 280px;
    min-height: 180px;
    background-color: rgba(102, 0, 153, 0.1);
    background-size: cover;
    background-position: center;
    position: relative;
    isolation: isolate;
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    font-weight: 700;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.3;
    color: #fff;
    box-shadow: 0 4px 16px rgba(102, 0, 153, 0.15);
    overflow: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.segment-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(25, 0, 40, 0.4); /* Ainda mais claro a pedido */
    z-index: -1;
    transition: background-color 0.3s ease;
}

.segment-tag:hover::before {
    background-color: rgba(25, 0, 40, 0.2); /* Bem sutil no hover */
}

.segments-closing {
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: rgba(23, 31, 38, 0.85);
}

/* Assistant section */
.assistant-section {
    padding: 7rem 0;
    background: var(--bg-dark);
}

.assistant-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, #3a0058 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.assistant-box p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.assistant-topics {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.assistant-topics li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.assistant-topics li i {
    color: var(--accent);
    flex-shrink: 0;
}

.assistant-cta {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: rgba(234, 61, 124, 0.1);
    border: 1px solid var(--accent-border);
    border-radius: var(--border-radius);
    font-weight: 600;
    overflow-wrap: break-word;
}

.assistant-cta span:last-child {
    min-width: 0;
}

/* Services */
.services-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    transition: border-color 0.2s ease;
}

.service-card:hover {
    border-color: rgba(188, 73, 255, 0.35);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
    color: var(--brand-light);
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.services-closing {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    max-width: 1000px;
    margin: 0 auto;
}

/* FAQ */
.faq-section {
    padding: 7rem 0;
    background: var(--bg-light);
    color: var(--text-dark);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(102, 0, 153, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(102, 0, 153, 0.06);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1.35rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--brand);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.35rem;
    color: rgba(23, 31, 38, 0.82);
    line-height: 1.7;
    border-top: 1px solid rgba(102, 0, 153, 0.08);
    padding-top: 1rem;
    margin: 0 1.5rem 1.35rem;
}

/* CTA */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.cta-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, #3a0058 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.5;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-box .btn,
.cta-note {
    position: relative;
    z-index: 2;
}

.cta-note {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    max-width: 100%;
    overflow-wrap: break-word;
    text-align: left;
}

.cta-note span:last-child {
    min-width: 0;
}

/* Floating assistant */
.floating-assistant {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.floating-assistant-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.35rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(102, 0, 153, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-assistant-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 0, 153, 0.55);
}

.floating-assistant-btn i {
    width: 20px;
    height: 20px;
}

/* Footer */
.main-footer {
    padding: 3rem 0 2rem;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-logo img {
    height: 56px;
    width: auto;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-badges img {
    height: 32px;
    width: auto;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.88rem;
}

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

.footer-copy {
    width: 100%;
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Privacy page */
.privacy-page {
    padding: 5rem 0 4rem;
    background: var(--bg-light);
    color: var(--text-dark);
    min-height: 80vh;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--brand);
}

.privacy-content .privacy-date {
    font-size: 0.9rem;
    color: rgba(23, 31, 38, 0.6);
    margin-bottom: 2rem;
}

.privacy-content h2 {
    font-size: 1.1rem;
    margin: 2rem 0 0.75rem;
    text-transform: uppercase;
    color: var(--brand);
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.privacy-content ul {
    margin: 0 0 1rem 1.25rem;
}

.privacy-content li {
    margin-bottom: 0.4rem;
    line-height: 1.65;
}

.privacy-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--brand);
}

.privacy-back:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .solution-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .site-nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem 1.5rem;
        background: rgba(26, 0, 40, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-header.is-nav-open .site-nav {
        display: flex;
    }

    .site-header-inner {
        position: relative;
        flex-wrap: nowrap;
        padding: 0.75rem 0;
        gap: 1rem;
    }

    .site-header-logo img {
        height: 44px;
        max-width: min(180px, 55vw);
    }

    .assistant-box {
        padding: 2rem 1.25rem;
    }

    .cta-box {
        padding: 3rem 1.25rem;
    }

    .cta-note {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }

    .hero-banner-inner {
        padding-top: 3.5rem;
        padding-bottom: 3rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: 0.5rem;
    }

    .hero-glow {
        width: 280px;
        height: 280px;
        right: -40%;
    }

    .hero-bullets {
        grid-template-columns: 1fr;
    }

    .hero-cta-note {
        padding: 1rem 1.15rem;
        font-size: 0.9rem;
    }

    .why-section, .solution-section, .features-section, .segments-section, .assistant-section, .services-section, .faq-section, .cta-section {
        padding: 4rem 0;
    }

    .why-section {
        clip-path: none;
        margin: 0;
    }

    .why-list-box {
        padding: 1.25rem;
    }

    .why-list li {
        font-size: 0.98rem;
    }

    .why-list li span {
        min-width: 0;
        overflow-wrap: break-word;
    }

    .why-closing {
        font-size: 1rem;
        overflow-wrap: break-word;
    }

    .section-title {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
        letter-spacing: 0;
    }

    .section-intro {
        font-size: 1rem;
    }

    .segments-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .segment-tag {
        max-width: 100%;
        min-height: 100px;
        font-size: 1.05rem;
        flex: 1 1 auto;
    }

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

    .service-card {
        padding: 1.75rem 1.25rem;
    }

    .services-closing {
        font-size: 1rem;
        padding: 0 0.25rem;
    }

    .features-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-card {
        max-width: 100%;
        flex: 1 1 auto;
    }

    .assistant-topics {
        grid-template-columns: 1fr;
    }

    .assistant-topics li span {
        min-width: 0;
        overflow-wrap: break-word;
    }

    .faq-item summary {
        font-size: 0.95rem;
        padding: 1.15rem 1.15rem;
    }

    .faq-answer {
        margin: 0 1.15rem 1.15rem;
        padding: 0 0 1.15rem;
        font-size: 0.95rem;
    }

    .solution-img {
        max-width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .footer-logo img {
        height: 44px;
        max-width: min(200px, 70vw);
        margin: 0 auto;
    }
}
