:root {
    --bg-main: #050816;
    --bg-secondary: #0b1020;
    --bg-card: rgba(255,255,255,0.055);
    --bg-card-hover: rgba(255,255,255,0.085);
    --border-soft: rgba(255,255,255,0.12);
    --text-main: #ffffff;
    --text-muted: #aab4c8;
    --accent-primary: #00f2fe;
    --accent-secondary: #4facfe;
    --accent-green: #2df7a3;
    --accent-purple: #9b5cff;
    --danger: #ff5c7a;
    --radius-lg: 26px;
    --radius-md: 18px;
    --shadow-glow: 0 0 80px rgba(0,242,254,0.12);
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: var(--bg-main);
}

body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(0,242,254,0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(155,92,255,0.12), transparent 26%),
        linear-gradient(180deg, #050816 0%, #080c1c 48%, #050816 100%);
    color: var(--text-main);
    overflow-x: hidden;
}

body * {
    min-width: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.mobile-text,
.mobile-br {
    display: none;
}

.bg-grid {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: 100vw;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 82%);
    z-index: -2;
}

.bg-glow {
    position: fixed;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(79,172,254,0.16);
    filter: blur(120px);
    top: 10%;
    right: -180px;
    pointer-events: none;
    z-index: -1;
}

.site-header {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 26px 22px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-img {
    display: block;
    width: 220px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: none !important;
}

.logo-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 18px rgba(0,242,254,0.26));
}

.logo-mark svg {
    display: block;
    width: 44px;
    height: 44px;
}

.logo-word {
    display: inline-flex;
    align-items: baseline;
    font-size: 27px;
    letter-spacing: -1px;
    line-height: 1;
    white-space: nowrap;
}

.logo-word strong {
    color: var(--accent-primary);
    font-weight: 900;
}

.logo-word span {
    color: #dfe8ff;
    font-weight: 300;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    color: var(--text-muted);
    white-space: nowrap;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1;
    flex: 0 0 auto;
}

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

.cta-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #03101d;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 35px rgba(0,242,254,0.18);
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-client {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    color: #ffffff;
    box-shadow: none;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #03101d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0,242,254,0.22);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 80;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    box-shadow: 0 18px 42px rgba(0,242,254,0.32);
}

.back-to-top:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

@media (max-width: 1240px) {
    .site-header {
        gap: 14px;
    }

    .logo-img {
        width: 205px;
    }

    .nav-links {
        gap: 14px;
        font-size: 13px;
    }

    .cta-nav {
        padding: 10px 14px;
        font-size: 13px;
    }
}

.hero {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 42px 22px 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 410px);
    gap: 36px;
    align-items: start;
}

.hero-copy,
.hero > div,
.audit-form-container {
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(0,242,254,0.28);
    background: rgba(0,242,254,0.08);
    border-radius: 999px;
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-title,
.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin: 0 0 24px;
    font-weight: 900;
}

.hero-title span,
.hero h1 span {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 28px;
    max-width: 760px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.25;
    transition: all .2s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #04111e;
    box-shadow: 0 15px 45px rgba(0,242,254,0.18);
}

.btn-secondary {
    border: 1px solid var(--border-soft);
    background: rgba(255,255,255,0.045);
    color: var(--text-main);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--text-muted);
    font-size: 14px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
}

.audit-form-container {
    border: 1px solid rgba(255,255,255,0.14);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-glow);
    backdrop-filter: blur(18px);
}

.audit-form-container h3 {
    font-size: 25px;
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.audit-form-container p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 22px;
    color: var(--text-muted);
}

.audit-form-legacy {
    display: none !important;
}

.hero-chat-card {
    border: 1px solid rgba(0,242,254,0.22);
    background:
        linear-gradient(180deg, rgba(0,242,254,0.13), rgba(255,255,255,0.04)),
        rgba(8, 18, 36, 0.88);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(0, 242, 254, 0.16);
    padding: 28px;
    backdrop-filter: blur(18px);
    min-width: 0;
}

.hero-chat-topline {
    color: var(--accent-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-chat-card h3 {
    font-size: 31px;
    letter-spacing: -1px;
    line-height: 1.08;
    margin: 0 0 12px;
}

.hero-chat-card > p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.58;
    margin: 0 0 20px;
}

.hero-chat-stats {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 20px;
}

.hero-chat-stats div {
    background: rgba(5, 8, 22, 0.72);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 12px;
}

.hero-chat-stats strong,
.hero-chat-stats span {
    display: block;
}

.hero-chat-stats strong {
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 7px;
}

.hero-chat-stats span {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 14px;
    text-transform: uppercase;
}

.hero-chat-preview {
    background: rgba(5, 8, 22, 0.62);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 22px;
    padding: 14px;
}

.hero-chat-button {
    width: 100%;
}

.secondary-contact-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 34px 22px 78px;
}

.secondary-contact-card {
    margin: 24px auto 0;
    max-width: 760px;
}

@media (max-width: 900px) {
    .hero-chat-stats {
        grid-template-columns: 1fr;
    }

    .hero-chat-card {
        padding: 22px;
    }

    .secondary-contact-section {
        padding: 24px 18px 56px;
    }
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
    color: #dce7ff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(4,9,22,0.72);
    color: var(--text-main);
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
    font-size: 14px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(0,242,254,0.65);
    box-shadow: 0 0 0 4px rgba(0,242,254,0.08);
}

.captcha-wrapper {
    margin: 18px 0;
    overflow: hidden;
}

.btn-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    padding: 15px 18px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #04111e;
    font-weight: 900;
    font-size: 15px;
    font-family: inherit;
}

section {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 66px 22px;
}

.section-title {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-title.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title.centered p {
    margin-left: auto;
    margin-right: auto;
}

.section-kicker {
    color: var(--accent-primary);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -1.6px;
    line-height: 1.05;
    margin: 0 0 16px;
    font-weight: 900;
}

.section-title p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    border: 1px solid rgba(255,255,255,0.11);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all .2s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    border-color: rgba(0,242,254,0.22);
}

.service-card {
    cursor: pointer;
}

.card-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--accent-primary);
    background: rgba(0,242,254,0.09);
    border: 1px solid rgba(0,242,254,0.18);
}

.card h4 {
    font-size: 19px;
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 14.5px;
}

.card ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.card li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.card li:before {
    content: "✓";
    color: var(--accent-green);
    font-weight: 900;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.panel {
    border: 1px solid rgba(255,255,255,0.11);
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.032));
    border-radius: var(--radius-lg);
    padding: 30px;
    overflow: hidden;
    position: relative;
}

.panel h3 {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 15px;
    font-weight: 900;
}

.panel p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.steps {
    display: grid;
    gap: 14px;
}

.step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #04111e;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}

.step strong {
    display: block;
    margin-bottom: 5px;
}

.step span {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.chat-demo {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.bubble {
    max-width: 90%;
    padding: 13px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.45;
}

.bubble.user {
    justify-self: end;
    background: rgba(79,172,254,0.18);
    border: 1px solid rgba(79,172,254,0.24);
}

.bubble.ai {
    justify-self: start;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: #e8efff;
}

.integration-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.integration-pill {
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
}

.final-cta {
    width: 100%;
    text-align: center;
    padding: 68px 22px 84px;
}

.final-cta-box {
    max-width: var(--max-width);
    margin: 0 auto;
    border: 1px solid rgba(0,242,254,0.16);
    background:
        radial-gradient(circle at top left, rgba(0,242,254,0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(155,92,255,0.12), transparent 28%),
        rgba(255,255,255,0.045);
    border-radius: 30px;
    padding: 48px 24px;
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.6px;
    margin: 0 0 14px;
    font-weight: 900;
}

.final-cta p {
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 26px;
    line-height: 1.7;
    font-size: 17px;
}

footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    text-align: center;
    padding: 28px 20px;
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 42px;
    }

    .audit-form-container {
        max-width: 620px;
    }

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

    .feature-row {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --max-width: 100%;
    }
    .logo-img {
        width: 265px !important;
        max-width: 88vw !important;
        filter: none !important;
    }

    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline;
    }

    .mobile-br {
        display: block;
    }

    .bg-grid {
        background-size: 34px 34px;
    }

    .bg-glow {
        width: 320px;
        height: 320px;
        right: -160px;
        top: 80px;
    }

    
    
    .site-header {
        padding: 34px 16px 22px !important;
        justify-content: center !important;
    }

    .logo-container {
        justify-content: center;
        gap: 10px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }

    .logo-mark svg {
        width: 38px;
        height: 38px;
    }

    .logo-word {
        font-size: 25px;
        letter-spacing: -0.8px;
    }

    .cta-nav {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .hero {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 32px 18px 54px;
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        overflow: hidden;
    }

    .hero-copy,
    .hero > div {
        width: 100%;
        max-width: 100%;
    }

    .hero-badge {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.35;
        font-size: 12px;
        letter-spacing: 0.6px;
        padding: 11px 14px;
        margin: 0 auto 24px;
        border-radius: 999px;
    }

    .hero-title,
    .hero h1 {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 24px;
        font-size: 42px;
        line-height: 1.02;
        letter-spacing: -1.6px;
        text-align: center;
        word-break: normal;
        overflow-wrap: normal;
    }

    .hero-title span,
    .hero h1 span {
        display: inline;
    }

    .hero p {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 28px;
        font-size: 16px;
        line-height: 1.7;
        text-align: center;
    }

    .hero-actions {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        justify-items: stretch;
        margin-bottom: 26px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        justify-content: center;
        white-space: normal;
        overflow-wrap: anywhere;
        padding: 15px 18px;
    }

    .hero-trust {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: stretch;
    }

    .trust-pill {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .audit-form-container {
        width: 100%;
        max-width: 100%;
        padding: 22px;
        border-radius: 22px;
        text-align: left;
        overflow: hidden;
    }

    .audit-form-container h3 {
        font-size: 24px;
        text-align: left;
    }

    .audit-form-container p {
        text-align: left;
    }

    section {
        width: 100%;
        max-width: 100%;
        padding: 54px 18px;
        margin: 0;
        overflow: hidden;
    }

    .section-title {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title.centered {
        text-align: center;
    }

    .section-title h2 {
        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -1.2px;
    }

    .section-title p {
        font-size: 16px;
        line-height: 1.65;
    }

    .grid-cards {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-row {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card {
        width: 100%;
        padding: 22px;
    }

    .panel {
        width: 100%;
        padding: 24px 20px;
        border-radius: 22px;
    }

    .panel h3 {
        font-size: 28px;
        line-height: 1.12;
    }

    .step {
        grid-template-columns: 38px 1fr;
        gap: 12px;
        padding: 14px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .bubble {
        max-width: 100%;
    }

    .integration-strip {
        width: 100%;
        justify-content: center;
    }

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

    .final-cta {
        width: 100%;
        padding: 48px 18px 64px;
        overflow: hidden;
    }

    .final-cta-box {
        width: 100%;
        padding: 36px 20px;
        border-radius: 24px;
    }

    footer {
        width: 100%;
        padding: 26px 18px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 18px 16px 4px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .logo-mark svg {
        width: 36px;
        height: 36px;
    }

    .logo-word {
        font-size: 24px;
    }

    .hero {
        padding: 30px 16px 50px;
    }

    .hero-badge {
        font-size: 11.5px;
        padding: 11px 12px;
    }

    .hero-title,
    .hero h1 {
        font-size: 39px;
        line-height: 1.03;
        letter-spacing: -1.4px;
    }

    .hero p {
        font-size: 15.5px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 15px 16px;
    }

    .audit-form-container {
        padding: 20px;
    }

    .captcha-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .captcha-wrapper .g-recaptcha {
        transform: scale(0.86);
        transform-origin: left top;
    }

    .section-title h2 {
        font-size: 31px;
    }
}

@media (max-width: 390px) {
    .logo-word {
        font-size: 22px;
    }

    .hero {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-title,
    .hero h1 {
        font-size: 35px;
        letter-spacing: -1.1px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero p {
        font-size: 15px;
    }

    .audit-form-container {
        padding: 18px;
    }
}
/* =====================================================
   FIX MOBILE FINAL - EVITA CORTES HORIZONTALES
===================================================== */

.desktop-badge {
    display: inline;
}

.mobile-badge {
    display: none;
}

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
        background: #050816 !important;
    }

    body {
        position: relative;
    }

    .bg-grid,
    .bg-glow {
        max-width: 100vw;
        overflow: hidden;
    }

    .site-header,
    main,
    section,
    .hero,
    .hero-copy,
    .audit-form-container,
    .final-cta,
    .final-cta-box {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .site-header {
        padding: 24px 16px 8px !important;
        justify-content: center !important;
    }

    .logo-container {
        margin: 0 auto;
    }

    .cta-nav,
    .nav-links {
        display: none !important;
    }

    .hero {
        padding: 32px 18px 54px !important;
        overflow: visible !important;
        text-align: center;
    }

    .hero-copy {
        overflow: visible !important;
    }

    .desktop-badge {
        display: none;
    }

    .mobile-badge {
        display: inline;
    }

    .hero-badge {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 14px !important;
        margin: 0 auto 28px !important;
        text-align: center !important;
        white-space: normal !important;
        overflow: visible !important;
        line-height: 1.35 !important;
        font-size: 12px !important;
        letter-spacing: 0.4px !important;
    }

    .hero-title,
    .hero h1 {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 26px !important;
        padding: 0 !important;
        text-align: center !important;
        font-size: 38px !important;
        line-height: 1.06 !important;
        letter-spacing: -1.1px !important;
        overflow: visible !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .hero-title span,
    .hero h1 span {
        display: inline-block !important;
        max-width: 100% !important;
    }

    .hero p {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 30px !important;
        padding: 0 !important;
        text-align: center !important;
        font-size: 16px !important;
        line-height: 1.75 !important;
        white-space: normal !important;
        overflow: visible !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .hero-actions {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        overflow: visible !important;
    }

    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        white-space: normal !important;
        overflow: visible !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }

    .hero-trust {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .trust-pill {
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .audit-form-container {
        margin-top: 10px !important;
        overflow: visible !important;
    }
}

@media (max-width: 480px) {

    .hero {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
   .logo-img {
        width: 245px !important;
        max-width: 88vw !important;
        filter: none !important;
    }

    .hero-title,
    .hero h1 {
        font-size: 35px !important;
        line-height: 1.07 !important;
        letter-spacing: -0.9px !important;
    }

    .hero-badge {
        font-size: 11.5px !important;
    }

    .hero p {
        font-size: 15.5px !important;
        line-height: 1.7 !important;
    }
}

@media (max-width: 390px) {

    .hero {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
    
    .logo-img {
        width: 155px;
    }

    .hero-title,
    .hero h1 {
        font-size: 32px !important;
    }

    .hero-badge {
        font-size: 11px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
/* =====================================================
   FIX MOBILE REAL - CONTENIDO HERO SIN CORTES
===================================================== */

@media (max-width: 768px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        background-color: #050816 !important;
    }

    body {
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-header,
    main,
    section,
    .hero,
    .hero-copy,
    .audit-form-container,
    .final-cta,
    .final-cta-box {
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .site-header {
        width: 100% !important;
        padding: 28px 16px 12px !important;
        margin: 0 auto !important;
        justify-content: center !important;
    }

    .logo-container {
        margin: 0 auto !important;
    }

    .cta-nav,
    .nav-links {
        display: none !important;
    }

    .hero {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 36px 16px 56px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 34px !important;
        text-align: center !important;
        overflow: visible !important;
    }

    .hero-copy {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    /*
       Clave del fix:
       Todos los textos y botones principales del hero
       quedan centrados dentro de un ancho seguro.
    */
    .hero-badge,
    .hero-title,
    .hero p,
    .hero-actions,
    .hero-trust {
        width: 100% !important;
        max-width: 340px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    .hero-badge {
        display: block !important;
        padding: 13px 14px !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        white-space: normal !important;
        overflow: visible !important;
        line-height: 1.35 !important;
        font-size: 12px !important;
        letter-spacing: 0.35px !important;
        border-radius: 999px !important;
    }

    .desktop-badge {
        display: none !important;
    }

    .mobile-badge {
        display: inline !important;
    }

    .hero-title,
    .hero h1 {
        display: block !important;
        padding: 0 !important;
        margin-bottom: 28px !important;
        text-align: center !important;
        font-size: 38px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.9px !important;
        white-space: normal !important;
        overflow: visible !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .hero-title span,
    .hero h1 span {
        display: inline-block !important;
        max-width: 100% !important;
        white-space: normal !important;
    }

    .hero p {
        display: block !important;
        padding: 0 !important;
        margin-bottom: 32px !important;
        text-align: center !important;
        font-size: 16px !important;
        line-height: 1.75 !important;
        white-space: normal !important;
        overflow: visible !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }

    .hero-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-bottom: 28px !important;
    }

    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 15px 16px !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        white-space: normal !important;
        overflow: visible !important;
        overflow-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .hero-trust {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .trust-pill {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: normal !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    .audit-form-container {
        width: 100% !important;
        max-width: 340px !important;
        margin: 8px auto 0 !important;
        padding: 22px !important;
        overflow: visible !important;
        border-radius: 22px !important;
    }

    .audit-form-container h3,
    .audit-form-container p {
        text-align: left !important;
    }
}

@media (max-width: 480px) {

    .hero {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-badge,
    .hero-title,
    .hero p,
    .hero-actions,
    .hero-trust,
    .audit-form-container {
        max-width: 330px !important;
    }

    .hero-title,
    .hero h1 {
        font-size: 35px !important;
        line-height: 1.08 !important;
    }

    .hero p {
        font-size: 15.5px !important;
        line-height: 1.72 !important;
    }
}

@media (max-width: 390px) {

    .hero {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .hero-badge,
    .hero-title,
    .hero p,
    .hero-actions,
    .hero-trust,
    .audit-form-container {
        max-width: 310px !important;
    }

    .hero-title,
    .hero h1 {
        font-size: 32px !important;
        line-height: 1.09 !important;
    }

    .hero-badge {
        font-size: 11px !important;
    }

    .hero p {
        font-size: 15px !important;
    }
}
/* =====================================================
   MOBILE SIZE UP - LOGO Y TEXTOS MÁS GRANDES
===================================================== */

@media (max-width: 768px) {

    .site-header {
        padding-top: 34px !important;
        padding-bottom: 18px !important;
    }

    .logo-img {
        width: 245px !important;
        max-width: 82vw !important;
    }

    .hero {
        padding-top: 34px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .hero-badge,
    .hero-title,
    .hero p,
    .hero-actions,
    .hero-trust,
    .audit-form-container {
        max-width: 380px !important;
    }

    .hero-badge {
        font-size: 13.5px !important;
        line-height: 1.42 !important;
        padding: 17px 20px !important;
        margin-bottom: 42px !important;
        letter-spacing: 0.45px !important;
    }

    .hero-title,
    .hero h1 {
        font-size: 44px !important;
        line-height: 1.08 !important;
        letter-spacing: -1.2px !important;
        margin-bottom: 36px !important;
    }

    .hero p {
        font-size: 18px !important;
        line-height: 1.78 !important;
        margin-bottom: 38px !important;
        color: #c6cedd !important;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 16px !important;
        padding: 18px 22px !important;
        min-height: 58px !important;
    }

    .trust-pill {
        font-size: 15px !important;
        padding: 12px 16px !important;
    }

    .audit-form-container {
        padding: 26px !important;
    }

    .audit-form-container h3 {
        font-size: 27px !important;
    }

    .audit-form-container p {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    .form-group label {
        font-size: 14px !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 15px !important;
        padding: 15px 16px !important;
    }

    .btn-submit {
        font-size: 16px !important;
        padding: 17px 20px !important;
    }
}

@media (max-width: 480px) {

    .logo-img {
        width: 232px !important;
        max-width: 84vw !important;
    }

    .hero {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .hero-badge,
    .hero-title,
    .hero p,
    .hero-actions,
    .hero-trust,
    .audit-form-container {
        max-width: 360px !important;
    }

    .hero-badge {
        font-size: 13px !important;
        padding: 16px 18px !important;
        margin-bottom: 38px !important;
    }

    .hero-title,
    .hero h1 {
        font-size: 41px !important;
        line-height: 1.08 !important;
        margin-bottom: 34px !important;
    }

    .hero p {
        font-size: 17.5px !important;
        line-height: 1.78 !important;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 15.5px !important;
        padding: 17px 20px !important;
    }
}

@media (max-width: 390px) {

     .logo-img {
        width: 225px !important;
        max-width: 88vw !important;
        filter: none !important;
    }

    .hero {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-badge,
    .hero-title,
    .hero p,
    .hero-actions,
    .hero-trust,
    .audit-form-container {
        max-width: 340px !important;
    }

    .hero-title,
    .hero h1 {
        font-size: 38px !important;
        line-height: 1.09 !important;
    }

    .hero-badge {
        font-size: 12.5px !important;
        padding: 15px 16px !important;
    }

    .hero p {
        font-size: 16.8px !important;
        line-height: 1.75 !important;
    }
}
/* =========================
   ALERTA VISUAL VINCIA
========================= */

.vincia-alert-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(5, 8, 22, 0.72);
    backdrop-filter: blur(12px);
    animation: vinciaFadeIn .22s ease;
}

.vincia-alert-overlay.closing {
    animation: vinciaFadeOut .22s ease forwards;
}

.vincia-alert-card {
    width: 100%;
    max-width: 470px;
    position: relative;
    text-align: center;
    border-radius: 28px;
    padding: 38px 30px 32px;
    background:
        radial-gradient(circle at top left, rgba(0,242,254,0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,0.18), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045)),
        #0b1020;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 30px 100px rgba(0,0,0,0.42), 0 0 80px rgba(0,242,254,0.13);
    overflow: hidden;
}

.vincia-alert-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.45;
    pointer-events: none;
}

.vincia-alert-close {
    position: absolute;
    right: 16px;
    top: 14px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    background: rgba(255,255,255,0.08);
}

.vincia-alert-close:hover {
    background: rgba(255,255,255,0.14);
}

.vincia-alert-icon {
    width: 76px;
    height: 76px;
    position: relative;
    z-index: 1;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    font-size: 42px;
    font-weight: 900;
    color: #04111e;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    box-shadow: 0 18px 50px rgba(0,242,254,0.26);
}

.vincia-alert-card.error .vincia-alert-icon {
    background: linear-gradient(135deg, #ff5c7a, #ff9f43);
}

.vincia-alert-kicker {
    position: relative;
    z-index: 1;
    margin-bottom: 9px;
    color: #00f2fe;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vincia-alert-card.error .vincia-alert-kicker {
    color: #ff9f43;
}

.vincia-alert-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
    font-weight: 900;
}

.vincia-alert-card p {
    position: relative;
    z-index: 1;
    margin: 0 auto 24px;
    max-width: 390px;
    color: #c7d2e5;
    font-size: 16px;
    line-height: 1.65;
}

.vincia-alert-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 22px;
    border-radius: 999px;
    color: #04111e;
    font-weight: 900;
    font-size: 15px;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    box-shadow: 0 16px 45px rgba(0,242,254,0.18);
}

.vincia-alert-btn:hover {
    transform: translateY(-1px);
}

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

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

@media (max-width: 480px) {
    .vincia-alert-card {
        padding: 34px 24px 28px;
        border-radius: 24px;
    }

    .vincia-alert-card h3 {
        font-size: 26px;
    }

    .vincia-alert-card p {
        font-size: 15.5px;
    }

    .vincia-alert-icon {
        width: 68px;
        height: 68px;
        font-size: 38px;
    }
}

/* =========================
   CHAT IA COMERCIAL
========================= */
.chat-ia-section {
    position: relative;
    overflow: hidden;
}

.chat-ia-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
    gap: 26px;
    align-items: start;
}

.chat-ia-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.chat-plan-card {
    min-height: 285px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: rgba(255,255,255,0.055);
    cursor: pointer;
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.chat-plan-card:hover,
.chat-plan-card:has(input:checked) {
    transform: translateY(-2px);
    border-color: rgba(0,242,254,0.55);
    background: rgba(0,242,254,0.08);
}

.chat-plan-card.featured {
    border-color: rgba(79,172,254,0.46);
}

.chat-plan-card input {
    width: 18px;
    height: 18px;
    accent-color: #00f2fe;
}

.chat-plan-top {
    display: grid;
    gap: 10px;
}

.chat-plan-top strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
}

.chat-plan-top em {
    color: #00f2fe;
    font-style: normal;
    font-size: 24px;
    font-weight: 900;
}

.chat-plan-card span:last-child {
    color: #c7d2e5;
    font-size: 14.5px;
    line-height: 1.68;
}

.chat-ia-form-card {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 26px;
    background: rgba(8, 16, 32, 0.84);
    box-shadow: 0 28px 70px rgba(0,0,0,0.24);
}

.chat-ia-form-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.15;
}

.chat-ia-form-card > p {
    margin: 0 0 20px;
    color: #c7d2e5;
    line-height: 1.65;
}

.chat-ia-form-card textarea {
    min-height: 130px;
}

.chat-help {
    display: block;
    margin-top: 8px;
    color: #94a3b8;
    font-size: 12.5px;
    line-height: 1.5;
}

.chat-terms {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 14px 0 16px;
    color: #dbeafe;
    font-size: 13.5px;
    line-height: 1.5;
}

.chat-terms input {
    margin-top: 3px;
    accent-color: #00f2fe;
}

.iti {
    width: 100%;
}

@media (max-width: 1180px) {
    .chat-ia-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .chat-ia-plans {
        grid-template-columns: 1fr;
    }

    .chat-plan-card {
        min-height: auto;
    }

    .chat-ia-form-card {
        padding: 22px;
    }
}
