/* ===================================================
   ODUO ASSESSORIA — Landing Page
   Dark, Premium, High-Conversion
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Colors — ODuo brand */
    --black-base: #071425;
    --black-card: #0d2138;
    --black-footer: #04101c;
    --gray-dark: #112842;
    --gray-medium: #8A8A8A;
    --gray-light: #CCCCCC;
    --orange: #E8731A;
    --orange-hover: #FF8C33;
    --orange-glow: rgba(232, 115, 26, 0.3);
    --orange-soft: rgba(232, 115, 26, 0.12);
    --orange-border: rgba(232, 115, 26, 0.3);
    --white: #FFFFFF;
    --green-success: #22C55E;
    --red-error: #EF4444;
    --blue-deep: #0d2544;
    --blue-deep-2: #16305a;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-input: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Layout */
    --container-max: 1200px;
    --section-py: 100px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    /* Transitions */
    --t-fast: 0.2s ease;
    --t-base: 0.3s ease;
    --t-slow: 0.5s ease;
}

/* ==================== RESET ==================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-light);
    background-color: var(--black-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

p {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

ul, ol {
    list-style: none;
}

[hidden] {
    display: none !important;
}

::selection {
    background-color: var(--orange);
    color: var(--white);
}

/* ==================== UTILITIES ==================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

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

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: all var(--t-base);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn--primary {
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 16px var(--orange-glow);
}

.btn--primary:hover {
    background-color: var(--orange-hover);
    box-shadow: 0 0 28px rgba(232, 115, 26, 0.5);
    transform: translateY(-2px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--primary:focus-visible {
    outline: 2px solid var(--orange-hover);
    outline-offset: 3px;
}

.btn--sm {
    padding: 11px 22px;
    font-size: 12px;
    letter-spacing: 0.8px;
}

.btn--lg {
    padding: 20px 40px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
    padding: 18px 24px;
    font-size: 14px;
}

.btn__icon {
    transition: transform var(--t-base);
}

.btn:hover .btn__icon {
    transform: translateX(4px);
}

.btn.is-loading {
    opacity: 0.7;
    cursor: wait;
    pointer-events: none;
    transform: none !important;
}

/* ==================== BADGE ==================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: var(--orange-soft);
    color: var(--orange);
    border: 1px solid var(--orange-border);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: fit-content;
}

.badge i {
    font-size: 12px;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    background-color: transparent;
    transition: all var(--t-base);
    border-bottom: 1px solid transparent;
}

.header.is-scrolled {
    background-color: rgba(7, 20, 37, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--border-subtle);
    padding: 12px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    transition: opacity var(--t-base);
}

.header__logo:hover {
    opacity: 0.85;
}

.header__logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: var(--black-base);
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    top: -300px;
    right: -300px;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle at center, rgba(232, 115, 26, 0.18) 0%, rgba(232, 115, 26, 0.05) 30%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    filter: blur(20px);
}

.hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.hero__form-wrapper {
    min-width: 0;
}

.hero__title {
    font-size: clamp(1.75rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-light);
    max-width: 580px;
    line-height: 1.6;
}

.hero__subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.hero__metrics {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 24px;
    margin-top: 8px;
    border-top: 1px solid var(--border-subtle);
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric__number {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.02em;
}

.metric__label {
    font-size: 13px;
    color: var(--gray-light);
    font-weight: 400;
}

/* ==================== FORM CARD ==================== */
.form-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    background-color: var(--black-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    animation: cardFadeIn 1s ease-out;
}

.form-card__glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.9;
    pointer-events: none;
}

.form-card__glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80px;
    background: radial-gradient(ellipse at top, rgba(232, 115, 26, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

.form-card__header {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.form-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 10px;
}

.form-card__subtitle {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.5;
}

/* ==================== FORM ==================== */
.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-light);
    font-family: var(--font-body);
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--gray-dark);
    border: 1px solid var(--border-input);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 14px;
    font-family: var(--font-body);
    transition: all var(--t-fast);
}

.form__input::placeholder {
    color: var(--gray-medium);
}

.form__input:hover:not(:focus) {
    border-color: rgba(255, 255, 255, 0.2);
}

.form__input:focus {
    outline: none;
    border-color: var(--orange);
    background-color: #16314f;
    box-shadow: 0 0 0 3px rgba(232, 115, 26, 0.15);
}

.form__input.is-invalid {
    border-color: var(--red-error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 44px;
    cursor: pointer;
}

.form__select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8731A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.form__select option {
    background-color: var(--gray-dark);
    color: var(--white);
}

.form__error {
    display: none;
    font-size: 12px;
    color: var(--red-error);
    margin-top: 2px;
    line-height: 1.3;
}

.form__error.is-visible {
    display: block;
}

.form__safety {
    font-size: 12px;
    color: var(--gray-medium);
    text-align: center;
    margin-top: 6px;
    line-height: 1.5;
}

.form__safety i {
    color: var(--orange);
    margin-right: 4px;
}

/* Submit button (full-width form button) — subtle pulse */
.form .btn--primary {
    margin-top: 6px;
}

/* Form success state */
.form-success {
    text-align: center;
    padding: 32px 8px;
    animation: fadeInUp 0.6s ease-out;
}

.form-success__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(34, 197, 94, 0.12);
    border: 2px solid var(--green-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--green-success);
    animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-success__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.form-success__text {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.5;
}

.form-error-box {
    padding: 14px 16px;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    color: var(--red-error);
    font-size: 13px;
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
    animation: fadeInUp 0.3s ease-out;
}

.form-error-box > i {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-error-box__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.form-error-box__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--t-fast);
    width: fit-content;
}

.form-error-box__link:hover {
    color: #1ebe5a;
    text-decoration: underline;
}

/* ==================== FLOATING WHATSAPP ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: all var(--t-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe5a;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:focus-visible {
    outline: 3px solid #FFFFFF;
    outline-offset: 3px;
}

.whatsapp-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 26px;
    }
}

/* ==================== LOGOS BAR ==================== */
.logos-bar {
    padding: 60px 0;
    background-color: var(--black-base);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.logos-bar__title {
    text-align: center;
    font-size: 12px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 36px;
    font-weight: 500;
}

.logos-bar__marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logos-bar__track {
    display: flex;
    gap: 64px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 16px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    opacity: 0.7;
    transition: all var(--t-base);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.logo-item:hover {
    opacity: 1;
    color: var(--orange);
    transform: scale(1.05);
}

/* ==================== SECTION HEADER ==================== */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-header__subtitle {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ==================== PROBLEMS ==================== */
.problems {
    background-color: var(--black-base);
    position: relative;
}

.problems__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.problem-card {
    background-color: var(--black-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: all var(--t-base);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.problem-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(232, 115, 26, 0.2);
}

.problem-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-soft);
    border: 1px solid rgba(232, 115, 26, 0.2);
    border-radius: var(--radius-sm);
    color: var(--orange);
    font-size: 22px;
    margin-bottom: 22px;
    transition: all var(--t-base);
}

.problem-card:hover .problem-card__icon {
    background-color: rgba(232, 115, 26, 0.18);
    transform: scale(1.05);
}

.problem-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.problem-card__desc {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

.problems__cta {
    text-align: center;
    margin-top: 56px;
}

.link-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-size: 16px;
    font-weight: 600;
    transition: all var(--t-base);
    position: relative;
    padding: 4px 0;
}

.link-orange::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
}

.link-orange:hover {
    color: var(--orange-hover);
}

.link-orange:hover::after {
    transform: scaleX(1);
}

.link-orange i {
    transition: transform var(--t-base);
}

.link-orange:hover i {
    transform: translateX(4px);
}

/* ==================== METHODOLOGY ==================== */
.methodology {
    background-color: var(--black-card);
    position: relative;
}

.methodology__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.methodology__steps::before {
    content: '';
    position: absolute;
    top: 90px;
    left: 18%;
    right: 18%;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--orange) 0,
        var(--orange) 6px,
        transparent 6px,
        transparent 14px
    );
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.step-card {
    position: relative;
    background-color: var(--gray-dark);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    text-align: left;
    transition: all var(--t-base);
    z-index: 1;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 115, 26, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--t-base);
    pointer-events: none;
}

.step-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.step-card:hover::before {
    opacity: 1;
}

.step-card__number {
    display: block;
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.7;
    letter-spacing: -0.02em;
}

.step-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-soft);
    border: 1px solid rgba(232, 115, 26, 0.25);
    border-radius: var(--radius-sm);
    color: var(--orange);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.step-card__desc {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==================== CASES / TESTIMONIALS ==================== */
.cases {
    background-color: var(--black-base);
    position: relative;
    overflow: hidden;
}

.cases__glow {
    position: absolute;
    top: 10%;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(232, 115, 26, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.cases .container {
    position: relative;
    z-index: 1;
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.case-card {
    position: relative;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-deep-2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: all var(--t-base);
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.7;
}

.case-card::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(232, 115, 26, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 115, 26, 0.45);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 115, 26, 0.15);
}

.case-card__quote {
    position: relative;
    padding-left: 40px;
}

.case-card__quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    color: var(--orange);
    opacity: 0.7;
}

.case-card__quote p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.65;
    font-style: italic;
}

.case-card__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 40px;
}

.case-card__name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.case-card__company {
    font-size: 12px;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-card__numbers {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.case-number {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.case-number__label {
    font-size: 10px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.case-number__value {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.case-number__value--before {
    color: var(--red-error);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    opacity: 0.9;
}

.case-number__value--after {
    color: var(--green-success);
}

.case-card__arrow {
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
}

.cases__cta {
    text-align: center;
    margin-top: 56px;
}

/* ==================== RESULTS ==================== */
.results {
    position: relative;
    background-color: var(--black-base);
    overflow: hidden;
}

.results__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 550px;
    background: radial-gradient(ellipse at center, rgba(232, 115, 26, 0.13) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    filter: blur(30px);
}

.results .container {
    position: relative;
    z-index: 1;
}

.results__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 16px;
    position: relative;
}

.result-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-subtle), transparent);
}

.result-item__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.02em;
}

.result-item__label {
    font-size: 15px;
    color: var(--gray-light);
    font-weight: 400;
}

/* ==================== CTA FINAL ==================== */
.cta-final {
    background-color: var(--black-card);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.7;
}

.cta-final::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(232, 115, 26, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    filter: blur(20px);
}

.cta-final .container {
    position: relative;
    z-index: 1;
}

.cta-final__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.cta-final__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--white);
}

.cta-final__subtitle {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final .btn--lg {
    animation: glow-pulse 2.8s ease-in-out infinite;
}

.cta-final__urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 10px 22px;
    background-color: var(--orange-soft);
    border: 1px solid var(--orange-border);
    border-radius: var(--radius-pill);
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-final__urgency i {
    animation: bolt-flash 1.5s ease-in-out infinite;
}

/* ==================== THANK YOU PAGE ==================== */
.body--thanks {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.body--thanks main {
    flex: 1;
}

.header--solid {
    background-color: rgba(7, 20, 37, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
}

.thanks {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thanks__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.12) 0%, rgba(232, 115, 26, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.thanks__container {
    position: relative;
    z-index: 1;
}

.thanks__card {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 48px;
    background: linear-gradient(135deg, var(--black-card) 0%, #112e4e 100%);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.thanks__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green-success), transparent);
}

.thanks__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    background-color: rgba(34, 197, 94, 0.12);
    border: 2px solid var(--green-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--green-success);
    animation: successPop 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s backwards;
}

.thanks__badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 16px;
    background-color: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-pill);
    color: var(--green-success);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.thanks__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.thanks__text {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.thanks__next {
    text-align: left;
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 32px;
}

.thanks__next-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.thanks__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.thanks__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.55;
}

.thanks__list li i {
    color: var(--orange);
    font-size: 14px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-soft);
    border: 1px solid rgba(232, 115, 26, 0.25);
    border-radius: 8px;
    margin-top: 1px;
}

.thanks__list strong {
    color: var(--white);
    font-weight: 600;
}

.thanks__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.thanks__actions .btn--whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    animation: none;
}

.thanks__actions .btn--whatsapp:hover {
    background-color: #1ebe5a;
    box-shadow: 0 0 28px rgba(37, 211, 102, 0.55);
}

.thanks__actions .btn--whatsapp i {
    font-size: 20px;
}

.thanks__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-medium);
    font-size: 13px;
    transition: color var(--t-base);
}

.thanks__back:hover {
    color: var(--orange);
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--black-footer);
    padding: 48px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.footer__logo {
    height: 56px;
    width: auto;
    opacity: 0.85;
    margin-bottom: 4px;
}

.footer__tagline {
    font-size: 14px;
    color: var(--gray-light);
}

.footer__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--t-base);
}

.footer__social-link:hover {
    color: var(--orange-hover);
}

.footer__copyright {
    font-size: 12px;
    color: var(--gray-medium);
    margin-top: 8px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 4px 16px var(--orange-glow);
    }
    50% {
        box-shadow: 0 4px 36px rgba(232, 115, 26, 0.6);
    }
}

@keyframes bolt-flash {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.15);
    }
}

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

/* ---------- 1200px and below ---------- */
@media (max-width: 1200px) {
    :root {
        --section-py: 80px;
    }

    .hero__container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .form-card {
        padding: 32px 28px;
    }

    .metric__number {
        font-size: 28px;
    }
}

/* ---------- 1024px and below ---------- */
@media (max-width: 1024px) {
    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 640px;
    }

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

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__metrics {
        justify-content: center;
    }

    .methodology__steps {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .methodology__steps::before {
        display: none;
    }

    .cases__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 24px;
    }

    .results__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .result-item:nth-child(2)::after {
        display: none;
    }

    .result-item:not(:last-child)::after {
        display: none;
    }
}

/* ---------- 768px and below ---------- */
@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    .container {
        padding: 0 20px;
    }

    .header {
        padding: 14px 0;
    }

    .header.is-scrolled {
        padding: 10px 0;
    }

    .header__logo img {
        height: 56px;
    }

    .btn--sm {
        padding: 9px 16px;
        font-size: 11px;
    }

    .btn--lg {
        padding: 16px 28px;
        font-size: 14px;
    }

    .hero {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .hero > .container {
        padding-left: 24px;
        padding-right: 24px;
        max-width: 100%;
    }

    .hero__container {
        gap: 48px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        justify-items: stretch;
    }

    .hero__content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        align-items: center;
    }

    .hero__form-wrapper {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero__title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        max-width: 100%;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__metrics {
        gap: 24px;
        padding-top: 20px;
    }

    .metric__number {
        font-size: 26px;
    }

    .metric__label {
        font-size: 12px;
    }

    .form-card {
        padding: 28px 22px;
        border-radius: var(--radius-md);
    }

    .form-card__title {
        font-size: 19px;
    }

    .form-card__subtitle {
        font-size: 13px;
    }

    .form__input {
        padding: 13px 14px;
    }

    .logos-bar {
        padding: 48px 0;
    }

    .logos-bar__track {
        gap: 44px;
    }

    .logo-item {
        font-size: 17px;
        height: 40px;
    }

    .problems__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .problem-card {
        padding: 28px 24px;
    }

    .section-header {
        margin-bottom: 44px;
    }

    .step-card {
        padding: 28px 22px;
    }

    .step-card__number {
        font-size: 44px;
    }

    .thanks {
        padding: 130px 0 80px;
    }

    .thanks__card {
        padding: 40px 28px;
    }

    .thanks__icon {
        width: 84px;
        height: 84px;
        font-size: 40px;
    }

    .thanks__next {
        padding: 24px 20px;
    }

    .thanks__text {
        font-size: 15px;
    }

    .case-card {
        padding: 28px 22px;
        gap: 18px;
    }

    .case-card__quote,
    .case-card__author {
        padding-left: 32px;
    }

    .case-card__quote p {
        font-size: 14px;
    }

    .case-number__value {
        font-size: 17px;
    }

    .cta-final__subtitle {
        font-size: 16px;
    }

    .cta-final__urgency {
        font-size: 12px;
        padding: 9px 18px;
    }
}

/* ---------- 480px and below ---------- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 115px;
        padding-bottom: 68px;
    }

    .hero > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero__title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .hero__metrics {
        gap: 16px;
        justify-content: space-around;
        width: 100%;
    }

    .metric {
        min-width: 80px;
        text-align: center;
        align-items: center;
    }

    .metric__number {
        font-size: 22px;
    }

    .form-card {
        padding: 24px 18px;
    }

    .form-card__title {
        font-size: 18px;
    }

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

    .case-card {
        padding: 24px 20px;
    }

    .case-card__numbers {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .case-card__arrow {
        transform: rotate(90deg);
        align-self: center;
    }

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

    .thanks__card {
        padding: 32px 20px;
    }

    .thanks__actions .btn--whatsapp {
        width: 100%;
        padding: 16px 24px;
    }

    .results__grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .result-item {
        padding: 16px;
    }

    .footer {
        padding: 36px 0;
    }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .logos-bar__track {
        animation: none;
    }

    .cta-final .btn--lg {
        animation: none;
    }

    .cta-final__urgency i {
        animation: none;
    }
}
