/* =========================================================================
   ENTERness - Plataforma Omnichannel para Saúde
   ========================================================================= */

:root {
    /* Colors - Premium Dark Mode / B2B SaaS Healthcare theme */
    --bg-dark: #070B14;
    --bg-darker: #04060b;
    --bg-card: rgba(17, 24, 39, 0.4);
    --border-glass: rgba(255, 255, 255, 0.08);

    --primary: #00E5FF;
    /* Vibrant Cyan */
    --primary-hover: #00B8D9;
    --secondary: #2979FF;
    /* Trust Blue */
    --accent: #E11D48;
    /* Alert/Heartbeat Red */

    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --text-dark: #1F2937;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--secondary), var(--primary));
    --gradient-glow: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(7, 11, 20, 0) 70%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    --shadow-glow: 0 0 20px rgba(0, 229, 255, 0.2);

    /* Theme Variables */
    --title-gradient: linear-gradient(to right, #fff, #9CA3AF);
    --hero-gradient: linear-gradient(135deg, #FFF 0%, #9CA3AF 100%);
    --nav-scrolled: rgba(7, 11, 20, 0.85);
    --logo-enter: #fff;
    --feature-card-bg: rgba(255, 255, 255, 0.05);
    --client-logo-filter: grayscale(100%) brightness(1);
    --client-logo-filter-hover: grayscale(0%) brightness(1);
}

[data-theme="light"] {
    --bg-dark: #F8FAFC;
    --bg-darker: #FFFFFF;
    --bg-card: rgba(255, 255, 255, 0.7);
    --border-glass: rgba(0, 0, 0, 0.1);

    --primary: #009DC4;
    --primary-hover: #007A99;
    --secondary: #1E40AF;

    --text-main: #111827;
    --text-muted: #4B5563;

    --shadow-glow: 0 0 20px rgba(0, 157, 196, 0.15);

    --title-gradient: linear-gradient(to right, #111827, #4B5563);
    --hero-gradient: linear-gradient(135deg, #111827 0%, #4B5563 100%);
    --nav-scrolled: rgba(255, 255, 255, 0.9);
    --logo-enter: #111827;
    --feature-card-bg: rgba(0, 0, 0, 0.03);
    --client-logo-filter: invert(1) grayscale(100%) brightness(0.2);
    --client-logo-filter-hover: invert(1) grayscale(0%) brightness(0.8);
}

/* =========================================================================
   Reset & Base
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.container-sm {
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* =========================================================================
   Typography Utilities
   ========================================================================= */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================================================
   Buttons & Badges
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-primary-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-primary-outline:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--feature-card-bg);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    color: var(--text-main);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(41, 121, 255, 0.15);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.badge-outline {
    background: transparent;
}

/* =========================================================================
   Navbar
   ========================================================================= */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
}

.theme-toggle:hover {
    color: var(--primary);
    background: rgba(0, 229, 255, 0.1);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: var(--nav-scrolled);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

.logo-enter {
    color: var(--logo-enter);
}

.logo-ness {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
}

/* Dashboard Mockup (Hero Visual) */
.glass-dashboard {
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.glass-dashboard::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), rgba(41, 121, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.dashboard-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
}

.dots {
    display: flex;
    gap: 6px;
    margin-right: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #FF5F56;
}

.dot.yellow {
    background: #FFBD2E;
}

.dot.green {
    background: #27C93F;
}

.dashboard-header .title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dashboard-body {
    display: flex;
    height: 350px;
}

.sidebar {
    width: 60px;
    border-right: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 1.5rem;
}

.side-item {
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.side-item.active {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-header::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.messages {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.msg {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
}

.msg.received {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.msg.sent {
    background: rgba(41, 121, 255, 0.2);
    border: 1px solid rgba(41, 121, 255, 0.3);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.msg.ai-suggestion {
    background: rgba(0, 229, 255, 0.1);
    border: 1px dashed var(--primary);
    color: var(--primary);
    align-self: flex-end;
    font-style: italic;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom-right-radius: 4px;
}

/* =========================================================================
   Challenges Section
   ========================================================================= */
.challenges {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.challenge-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.challenge-card:hover::before {
    transform: scaleX(1);
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: rgba(31, 41, 55, 0.6);
}

.challenge-card .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(41, 121, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(41, 121, 255, 0.2);
}

.challenge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

/* =========================================================================
   Benefits Section
   ========================================================================= */
.benefits {
    position: relative;
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.benefit-row:last-child {
    margin-bottom: 0;
}

.benefit-row.reverse .benefit-content {
    order: 2;
}

.benefit-row.reverse .benefit-visual {
    order: 1;
}

.benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-main);
    font-size: 1rem;
}

.benefit-list li i {
    color: var(--primary);
    margin-top: 4px;
    background: rgba(0, 229, 255, 0.1);
    padding: 0.3rem;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Visuals for Benefits */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.feature-card .card-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.progress-bar-mockup {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.progress-bar-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 70%;
    background: var(--gradient-primary);
}

.progress-bar-mockup.short::after {
    width: 40%;
}

/* Integration Mesh Animation */
.integration-mesh {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mesh-center {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
    z-index: 10;
    position: relative;
}

.mesh-center::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px dashed var(--primary);
    animation: rotate 10s linear infinite;
}

.mesh-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.node-1 {
    top: 10%;
    left: 20%;
}

.node-2 {
    top: 20%;
    right: 10%;
}

.node-3 {
    bottom: 10%;
    left: 25%;
}

.node-4 {
    bottom: 20%;
    right: 20%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Workflow Card */
.workflow-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.workflow-card .step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 1rem 2rem;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.workflow-card .step.highlight {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.workflow-card .step-arrow {
    color: var(--border-glass);
}


/* =========================================================================
   Consultative Implementation
   ========================================================================= */
.implementation {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-glass);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.timeline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================================================
   Segments (Social Proof Area)
   ========================================================================= */
.segments {
    padding: 4rem 0;
}

.segments-title {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.segment {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
}

.segment:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.segment i {
    font-size: 2rem;
    color: var(--primary);
}

.segment span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
}

/* Clients Grid Section */
.clients-section {
    padding-top: 5rem;
    border-top: 1px dashed var(--border-glass);
}

.clients-title {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clients-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.client-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
    opacity: 0.6;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.client-logo img {
    max-height: 75px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: var(--client-logo-filter);
    transition: var(--transition);
}

.client-logo:hover img {
    filter: var(--client-logo-filter-hover);
}

.client-logo:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateY(-3px);
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

/* =========================================================================
   Final CTA
   ========================================================================= */
.cta-final {
    padding: 8rem 0;
}

.glass-cta {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(41, 121, 255, 0.1));
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.glass-cta>* {
    position: relative;
    z-index: 1;
}

.glass-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.glass-cta p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.demo-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.input-modern {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.input-modern:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.cta-guarantee {
    font-size: 0.85rem !important;
    color: var(--text-muted);
    margin: 0 !important;
}

.cta-guarantee i {
    color: #27C93F;
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-partners {
    margin-top: 2.5rem;
}

.partners-title {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.partners-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.partners-logos img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: var(--client-logo-filter);
    transition: var(--transition);
    opacity: 0.7;
}

.partners-logos img:hover {
    filter: var(--client-logo-filter-hover);
    opacity: 1;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.social-icons a:hover {
    color: var(--primary);
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .benefit-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .benefit-row.reverse .benefit-content {
        order: 1;
    }

    .benefit-row.reverse .benefit-visual {
        order: 2;
    }

    .benefit-list li {
        justify-content: center;
        text-align: left;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .timeline::before {
        display: none;
    }

    .clients-grid {
        flex-wrap: wrap;
        gap: 2.5rem;
    }

    .client-logo {
        flex: 0 0 calc(33.333% - 2.5rem);
    }
}

@media (max-width: 768px) {
    .nav-hidden-mobile {
        display: none;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .glass-cta {
        padding: 2.5rem 1.5rem;
    }

    .demo-form {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .dashboard-body {
        height: auto;
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
        flex-direction: row;
        justify-content: center;
        padding: 1rem 0;
    }

    .clients-grid {
        gap: 1.5rem;
    }

    .client-logo {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .client-logo img {
        max-height: 55px;
    }
}