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

:root {
    /* Paleta ProspectAds - Cor principal personalizada */
    --primary-color: #f7a620;
    --primary-dark: #d68910;
    --primary-light: #f9b84d;
    --secondary-color: #f7931e;
    --accent-color: #ff8c00;
    --text-dark: #FFFFFF;
    --text-gray: #E0E0E0;
    --text-light: #B0B0B0;
    --bg-white: #1A1A1A;
    --bg-gray: #0F0F0F;
    --bg-dark: #000000;
    --bg-card: #1F1F1F;
    --border-color: #2A2A2A;
    --gradient-start: #f7a620;
    --gradient-end: #d68910;
    --shadow-sm: 0 1px 2px 0 rgba(247, 166, 32, 0.2);
    --shadow-md: 0 4px 6px -1px rgba(247, 166, 32, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(247, 166, 32, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(247, 166, 32, 0.5);
}

html {
    scroll-behavior: smooth;
}

/* Ajuste de scroll para âncoras com header fixo */
#trafego,
#landing,
#automacao,
#consultoria,
#servicos,
#cases,
#faq,
#contato {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 20px;
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons - Padronizado */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-align: center;
    font-family: inherit;
    line-height: 1.5;
    will-change: transform;
    transform: translateZ(0);
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(247, 166, 32, 0.3);
    letter-spacing: 0.3px;
}

.btn--primary:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 6px 20px rgba(247, 166, 32, 0.4);
}

.btn--large {
    padding: 22px 48px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 16px;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 30px rgba(247, 166, 32, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn--large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn--large:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 
        0 12px 40px rgba(247, 166, 32, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% center;
}

.btn--large:hover::before {
    left: 100%;
}

.btn--large:hover::after {
    width: 300px;
    height: 300px;
}

.btn--header {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 12px;
    font-weight: 700;
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn--whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    padding: 20px 48px;
    font-size: 20px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn--whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s;
}

.btn--whatsapp:hover::before {
    left: 100%;
}

.btn--whatsapp:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0, 0, 0, 0.4);
    background: #20BA5A;
}


.btn--whatsapp svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: none;
}

.header__urgency-badge {
    position: absolute;
    top: 50%;
    right: 180px;
    transform: translateY(-50%);
    font-size: 12px;
    color: #ff6b35;
    font-weight: 700;
    padding: 6px 12px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.4);
    border-radius: 6px;
    white-space: nowrap;
    animation: pulse-urgency 2s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    z-index: 10;
}

.header__urgency-badge svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

@media (max-width: 1200px) {
    .header__urgency-badge {
        right: 160px;
    }
}

@media (max-width: 1100px) {
    .header__urgency-badge {
        right: 140px;
        font-size: 11px;
        padding: 5px 10px;
    }
}

@keyframes pulse-urgency {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@media (max-width: 968px) {
    .header__urgency-badge {
        display: none;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    position: relative;
}

.nav__logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo__icon {
    flex-shrink: 0;
}

.logo__text {
    font-size: 24px;
    font-weight: 700;
    color: #F5F5DC;
    letter-spacing: -0.5px;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav__menu li {
    margin: 0;
}

.nav__menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__menu a:hover {
    color: var(--primary-light);
}

.nav__menu a.btn--header:hover {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav__overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(247, 166, 32, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 166, 32, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-dark) 0%, #0a0a0a 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(247, 166, 32, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 0% 50%, rgba(247, 166, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(247, 166, 32, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: hero-glow 8s ease-in-out infinite alternate;
}

@keyframes hero-glow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(247, 166, 32, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.hero__decorative {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero__decorative::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(247, 166, 32, 0.1);
    border-radius: 50%;
    animation: pulse-ring 4s ease-in-out infinite;
}

.hero__decorative::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(247, 166, 32, 0.08);
    border-radius: 50%;
    animation: pulse-ring 5s ease-in-out infinite 1s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.hero__content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(247, 166, 32, 0.1);
    border: 1px solid rgba(247, 166, 32, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    animation: fade-in 1.2s ease-out 0.3s both;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero__title {
    font-size: 72px;
    margin-bottom: 40px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-dark);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fade-in-up 1s ease-out 0.2s both;
}

.hero__title br {
    display: block;
    margin: 12px 0;
}

.hero__highlight {
    position: relative;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    background-size: 200% auto;
    animation: gradient-shift 4s ease infinite;
    display: inline-block;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero__description {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.4px;
    animation: fade-in-up 1s ease-out 0.4s both;
}

.hero__description .hero__highlight {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(247, 166, 32, 0.3);
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    margin-top: 32px;
    animation: fade-in-up 1s ease-out 0.6s both;
}

.hero__microcopy {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
    margin-top: 16px;
    opacity: 0.9;
    letter-spacing: 0.3px;
    text-align: center;
}

.hero__urgency-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fade-in 1.2s ease-out 0.1s both;
    line-height: 1.4;
}

.hero__urgency-badge svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.hero__authority-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    animation: fade-in 1.2s ease-out 0.2s both;
}

.hero__authority-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(247, 166, 32, 0.1);
    border: 1px solid rgba(247, 166, 32, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}

.hero__authority-badge svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

.hero__trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(247, 166, 32, 0.1);
    border: 1px solid rgba(247, 166, 32, 0.3);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    animation: fade-in 1.2s ease-out 0.3s both;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__trust-badge svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.hero__guarantee {
    font-size: 16px;
    color: var(--primary-light);
    font-weight: 600;
    margin-top: 12px;
    letter-spacing: 0.2px;
    text-align: center;
    padding: 12px 24px;
    background: rgba(247, 166, 32, 0.1);
    border: 1px solid rgba(247, 166, 32, 0.3);
    border-radius: 8px;
    display: inline-block;
}

/* Seção de Dor Direta */
.pain-direct {
    padding: 120px 0;
    background: var(--bg-gray);
    min-height: 600px;
    position: relative;
}

.pain-direct::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 166, 32, 0.3), transparent);
}

.pain-direct__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pain-direct__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 50px;
    line-height: 1.3;
    min-height: 50px;
}

.pain-direct__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
    text-align: left;
    min-height: 400px;
}

.pain-direct__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
    min-height: 60px;
}

.pain-direct__item:hover {
    transform: translateX(8px) translateZ(0);
    box-shadow: var(--shadow-md);
}

.pain-direct__item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    margin-top: 2px;
}

.pain-direct__item p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.pain-direct__promise {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-top: 50px;
    line-height: 1.2;
}

.pain-direct__action {
    font-size: 20px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

.pain-direct__cta {
    margin-top: 40px;
    text-align: center;
}

.pain-direct__urgency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 12px 24px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.4);
    border-radius: 8px;
    animation: pulse-urgency 2s ease-in-out infinite;
    line-height: 1.4;
}

.pain-direct__urgency svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* Seção de Plataformas */
.platforms {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-card) 100%);
    position: relative;
}

.platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 166, 32, 0.3), transparent);
}

.platforms__title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platforms__subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.platforms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 0;
    align-items: stretch;
}

.platform__item {
    text-align: center;
    padding: 28px 24px;
    border-radius: 16px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    will-change: transform;
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.platform__item:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: 0 8px 20px rgba(247, 166, 32, 0.3);
    opacity: 0.95;
}

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

.platform__icon svg {
    width: 48px;
    height: 48px;
}

.platform__icon--tiktok {
    background: linear-gradient(135deg, #000000 0%, #161823 100%);
    border-radius: 8px;
    padding: 8px;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.platform__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.platforms__cta {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
}

.platforms__cta-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-weight: 500;
}

/* Seção da Dor */
.pain {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

.pain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 166, 32, 0.3), transparent);
}

.pain__title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
    color: var(--text-dark);
    padding: 0 20px;
}

.pain__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pain__negatives {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    align-items: stretch;
}

.pain__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    will-change: transform;
    transform: translateZ(0);
    min-height: 180px;
    height: 100%;
}

.pain__card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.pain__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.pain__card-icon svg {
    width: 28px;
    height: 28px;
}

.pain__card-text {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.pain__main-card {
    background: linear-gradient(135deg, rgba(247, 166, 32, 0.2), rgba(214, 137, 16, 0.15));
    border: 4px solid var(--primary-color);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    margin: 60px 0;
    box-shadow: 0 12px 40px rgba(247, 166, 32, 0.35), 0 0 0 1px rgba(247, 166, 32, 0.1);
    overflow: hidden;
}

.pain__main-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(20px);
    animation: pulse-glow 3s ease-in-out infinite;
    will-change: opacity, transform;
    transform: translateZ(0);
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.01);
    }
}

.pain__main-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(247, 166, 32, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pain__main-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    box-shadow: 0 8px 25px rgba(247, 166, 32, 0.5);
    position: relative;
    z-index: 1;
}

.pain__main-icon svg {
    width: 56px;
    height: 56px;
}

.pain__main {
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.pain__conclusion {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 0;
    line-height: 1.7;
    padding: 0 20px;
}

.pain__cta {
    margin-top: 50px;
    text-align: center;
    padding-top: 30px;
}

/* Seção de Solução */
.solution {
    padding: 120px 0;
    background: var(--bg-gray);
    position: relative;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 166, 32, 0.2), transparent);
}

.solution__content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.solution__negatives {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    align-items: stretch;
}

.solution__negative-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    will-change: transform;
    transform: translateZ(0);
    min-height: 160px;
    height: 100%;
}

.solution__negative-card:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: 0 8px 25px rgba(247, 166, 32, 0.2);
    opacity: 0.95;
}

.solution__negative-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(247, 166, 32, 0.2), rgba(214, 137, 16, 0.1));
    border-radius: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.solution__negative-icon svg {
    width: 32px;
    height: 32px;
}

.solution__negative-text {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.solution__highlight-card {
    background: linear-gradient(135deg, rgba(247, 166, 32, 0.1), rgba(214, 137, 16, 0.05));
    border: 4px solid var(--primary-color);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(247, 166, 32, 0.2);
    margin-bottom: 50px;
    position: relative;
}

.solution__highlight-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(12px);
}

.solution__highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 4px 15px rgba(247, 166, 32, 0.4);
}

.solution__highlight-icon svg {
    width: 56px;
    height: 56px;
    color: white;
}

.solution__highlight {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.solution__scope {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.solution__system {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.solution__system-text {
    font-size: 19px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
    text-align: center;
    letter-spacing: -0.3px;
}

.solution__cta {
    text-align: center;
    padding-top: 0;
    margin-top: 40px;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-gray);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 166, 32, 0.2), transparent);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
    align-items: stretch;
}

.service__card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
    min-height: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service__card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: var(--shadow-lg);
    opacity: 0.95;
}

.service__icon svg {
    color: var(--primary-light);
}

.service__icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service__icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-light);
}

.service__title {
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}

.service__description {
    color: var(--text-gray);
    line-height: 1.7;
    text-align: center;
    width: 100%;
}

.services__cta {
    margin-top: 60px;
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

.services__cta-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.services__cta-price {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.services__cta-price strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}

/* Seção de Diferencial */
.differentiator {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

.differentiator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 166, 32, 0.3), transparent);
}

.differentiator__content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.differentiator__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    align-items: stretch;
}

.differentiator__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    will-change: transform;
    transform: translateZ(0);
    min-height: 160px;
    height: 100%;
}

.differentiator__card:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: 0 8px 25px rgba(247, 166, 32, 0.2);
    opacity: 0.95;
}

.differentiator__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(247, 166, 32, 0.2), rgba(214, 137, 16, 0.1));
    border-radius: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.differentiator__icon svg {
    width: 32px;
    height: 32px;
}

.differentiator__card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.differentiator__card-text {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.differentiator__highlight {
    background: linear-gradient(135deg, rgba(247, 166, 32, 0.1), rgba(214, 137, 16, 0.05));
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.differentiator__highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.differentiator__closing {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

.differentiator__cta {
    margin-top: 0;
    text-align: center;
}

/* Cases Section */
.cases {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-gray) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(247, 166, 32, 0.4), rgba(247, 166, 32, 0.4), transparent) 1;
}

.cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(247, 166, 32, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cases .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cases__intro {
    font-size: 20px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.cases__authority {
    text-align: center;
    margin-bottom: 50px;
}

.cases__authority-text {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 0;
    align-items: stretch;
}

.case__card {
    background: var(--bg-card);
    padding: 40px 36px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    will-change: transform;
    transform: translateZ(0);
    min-height: 280px;
    position: relative;
    text-align: left;
}

.case__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 700;
    padding: 4px 10px;
    background: rgba(247, 166, 32, 0.15);
    border: 1px solid rgba(247, 166, 32, 0.4);
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case__card:hover::before {
    opacity: 1;
}

.case__card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(247, 166, 32, 0.1);
    border-color: rgba(247, 166, 32, 0.2);
}

.case__quote {
    margin-bottom: 24px;
    color: var(--primary-color);
    opacity: 0.4;
}

.case__quote svg {
    width: 40px;
    height: 40px;
}

.case__company {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
    letter-spacing: -0.3px;
}

.case__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    align-items: center;
}

.case__metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.case__metric-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.case__metric-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.case__before-after {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(247, 166, 32, 0.08);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.case__before,
.case__after {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.case__label {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case__text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
}

.case__testimonial {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
    flex-grow: 1;
    font-size: 17px;
    font-style: italic;
    letter-spacing: -0.2px;
    text-align: left;
}

.case__author {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: left;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}


.cases__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px 0 40px 0;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cases__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cases__stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.cases__stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cases__cta {
    margin-top: 40px;
    text-align: center;
    padding-top: 0;
    border-top: none;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cases__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.cases__cta-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--bg-gray);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 166, 32, 0.2), transparent);
}

.faq__list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__item.active {
    border-color: rgba(247, 166, 32, 0.4);
    box-shadow: 0 4px 12px rgba(247, 166, 32, 0.1);
}

.faq__question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: background-color 0.3s ease;
}

.faq__question:hover {
    background: rgba(247, 166, 32, 0.05);
}

.faq__question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq__icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq__answer p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    padding-top: 8px;
}

/* Contact Section */
.contact {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(247, 166, 32, 0.08) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(247, 166, 32, 0.4), rgba(247, 166, 32, 0.4), transparent) 1;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(247, 166, 32, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(247, 166, 32, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
}

.contact__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    padding: 80px 60px;
    border-radius: 24px;
    border: 2px solid rgba(247, 166, 32, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(247, 166, 32, 0.1);
    backdrop-filter: blur(10px);
}

.contact__description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: -0.2px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.contact__urgency-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 16px;
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 24px;
    padding: 12px 24px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.4);
    border-radius: 8px;
    animation: pulse-urgency 2s ease-in-out infinite;
    line-height: 1.4;
    width: 100%;
}

.contact__urgency-text svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.contact__trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(247, 166, 32, 0.1);
    border: 1px solid rgba(247, 166, 32, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact__trust-badge svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.contact__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.contact__microcopy {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.1px;
    margin-top: 8px;
}

/* Section Titles */
.section__title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 800;
}

.contact .section__title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.contact__urgency {
    text-align: center;
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.4);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.section__subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services__model {
    font-size: 18px;
    text-align: center;
    color: var(--primary-light);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

.services__price {
    font-size: 22px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    line-height: 1.6;
}

.services__price strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 28px;
}

.services__authority {
    text-align: center;
    margin-bottom: 24px;
}

.services__authority-text {
    font-size: 17px;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.services__trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.services__trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(247, 166, 32, 0.1);
    border: 1px solid rgba(247, 166, 32, 0.3);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}

.services__trust-badge svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.services__guarantee {
    font-size: 17px;
    text-align: center;
    color: var(--primary-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    line-height: 1.6;
    padding: 14px 28px;
    background: rgba(247, 166, 32, 0.1);
    border: 1px solid rgba(247, 166, 32, 0.3);
    border-radius: 10px;
    display: inline-block;
}

/* Footer */
.footer {
    padding: 100px 0 40px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(247, 166, 32, 0.3), rgba(247, 166, 32, 0.3), transparent) 1;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 166, 32, 0.2), transparent);
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.footer__logo-icon {
    flex-shrink: 0;
}

.footer__brand-name {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--text-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.8px;
}

.footer__tagline {
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 16px 0;
    max-width: 400px;
    font-weight: 400;
}

.footer__authority {
    margin-bottom: 16px;
}

.footer__authority-text {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.footer__contact-item:hover {
    color: var(--primary-color);
    transform: translateX(4px) translateZ(0);
}

.footer__contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer__links-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__links-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
}

.footer__links-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__links-group ul li {
    margin: 0;
}

.footer__links-group ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 15px;
    display: inline-block;
    position: relative;
    will-change: transform;
    transform: translateZ(0);
    font-weight: 400;
}

.footer__links-group ul li a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer__links-group ul li a:hover {
    color: var(--text-dark);
    transform: translateX(8px) translateZ(0);
}

.footer__links-group ul li a:hover::before {
    width: 6px;
}

.footer__bottom {
    padding-top: 50px;
    border-top: 1px solid rgba(247, 166, 32, 0.1);
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    opacity: 0.7;
}

.footer__bottom p {
    margin: 0;
    font-weight: 400;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

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

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 40px 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    z-index: 10001;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
    line-height: 1;
    will-change: transform;
    transform: translateZ(0);
}

.modal__close:hover {
    transform: scale(1.1) translateZ(0);
    opacity: 0.8;
}

.modal__title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
    padding-right: 40px;
}

.modal__body {
    color: var(--text-gray);
    line-height: 1.8;
}

.modal__body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 12px;
}

.modal__body p {
    margin-bottom: 16px;
}

.modal__body ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.modal__body ul li {
    margin-bottom: 8px;
}

.modal__body strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .platforms__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .header {
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(15px);
    }

    .nav {
        padding: 12px 20px;
    }

    .nav__logo a {
        gap: 10px;
    }

    .logo__icon {
        width: 30px;
        height: 30px;
    }

    .logo__text {
        font-size: 17px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav__menu a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
    }

    .nav__menu a.btn--header {
        margin-top: 16px;
        text-align: center;
        padding: 14px 24px;
        font-size: 14px;
        display: block;
        white-space: normal;
    }

    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .hero__badge {
        font-size: 13px;
        padding: 9px 18px;
        margin-bottom: 28px;
    }

    .hero__urgency-badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 20px;
        gap: 6px;
    }

    .hero__urgency-badge svg {
        width: 16px;
        height: 16px;
    }

    .hero__authority-badges {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }

    .hero__authority-badge {
        font-size: 13px;
        padding: 7px 14px;
        gap: 6px;
    }

    .hero__authority-badge svg {
        width: 14px;
        height: 14px;
    }

    .hero__trust-badge {
        font-size: 14px;
        padding: 10px 20px;
        margin-bottom: 28px;
        gap: 8px;
    }

    .hero__trust-badge svg {
        width: 16px;
        height: 16px;
    }

    .hero__title {
        font-size: 48px;
        line-height: 1.15;
        letter-spacing: -1.5px;
        margin-bottom: 32px;
    }

    .hero__description {
        font-size: 20px;
        margin-bottom: 48px;
    }

    .hero__description .hero__highlight {
        font-size: 22px;
    }

    .section__title {
        font-size: 32px;
    }

    .pain__title {
        font-size: 32px;
    }

    .pain__negatives {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: stretch;
    }

    .pain__card {
        padding: 20px;
        text-align: center;
        align-items: center;
    }

    .pain__main-card {
        padding: 40px 30px;
        margin: 40px 0;
    }

    .pain__main-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }

    .pain__main-icon svg {
        width: 48px;
        height: 48px;
    }

    .pain__main {
        font-size: 24px;
    }

    .solution__negatives {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: stretch;
    }

    .solution__negative-card {
        padding: 28px 20px;
        align-items: center;
    }

    .solution__highlight-card {
        padding: 45px 30px;
    }

    .solution__highlight {
        font-size: 24px;
    }

    .differentiator__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
        align-items: stretch;
    }

    .differentiator__card {
        padding: 28px 20px;
        text-align: center;
        align-items: center;
    }

    .differentiator__highlight {
        padding: 35px 30px;
    }

    .differentiator__closing {
        font-size: 20px;
    }

    .platforms__title {
        font-size: 28px;
    }

    .platforms__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .header {
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(15px);
    }

    .nav {
        padding: 10px 15px;
    }

    .nav__logo a {
        gap: 6px;
    }

    .logo__icon {
        width: 24px;
        height: 24px;
    }

    .logo__text {
        font-size: 14px;
    }

    .nav__menu a.btn--header {
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero__content {
        padding: 0;
    }

    .hero__badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 32px;
    }

    .hero__urgency-badge {
        font-size: 12px;
        padding: 8px 14px;
        margin-bottom: 20px;
        gap: 6px;
        flex-wrap: wrap;
    }

    .hero__urgency-badge svg {
        width: 14px;
        height: 14px;
    }

    .hero__authority-badges {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 16px;
        padding: 0 20px;
    }

    .hero__authority-badge {
        font-size: 12px;
        padding: 6px 12px;
        gap: 6px;
        width: 100%;
        justify-content: center;
    }

    .hero__authority-badge svg {
        width: 14px;
        height: 14px;
    }

    .hero__trust-badge {
        font-size: 13px;
        padding: 10px 18px;
        margin-bottom: 24px;
        gap: 8px;
        flex-wrap: wrap;
        margin-left: 20px;
        margin-right: 20px;
    }

    .hero__trust-badge svg {
        width: 16px;
        height: 16px;
    }

    .pain-direct__urgency {
        font-size: 14px;
        padding: 10px 20px;
        gap: 6px;
        flex-wrap: wrap;
    }

    .pain-direct__urgency svg {
        width: 16px;
        height: 16px;
    }

    .services__trust-badges {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .services__trust-badge {
        font-size: 14px;
        padding: 9px 16px;
        gap: 7px;
        width: 100%;
        justify-content: center;
    }

    .services__trust-badge svg {
        width: 16px;
        height: 16px;
    }

    .contact__urgency-text {
        font-size: 14px;
        padding: 10px 20px;
        gap: 6px;
        flex-wrap: wrap;
    }

    .contact__urgency-text svg {
        width: 16px;
        height: 16px;
    }

    .contact__trust-badge {
        font-size: 14px;
        padding: 12px 20px;
        gap: 8px;
        flex-wrap: wrap;
        margin-left: 20px;
        margin-right: 20px;
    }

    .contact__trust-badge svg {
        width: 18px;
        height: 18px;
    }

    .hero__title {
        font-size: 32px;
        line-height: 1.2;
        padding: 0 20px;
        letter-spacing: -0.8px;
        margin-bottom: 32px;
    }

    .hero__title br {
        margin: 12px 0;
    }

    .hero__description {
        font-size: 17px;
        padding: 0 20px;
        line-height: 1.65;
        margin-bottom: 48px;
        max-width: 100%;
    }

    .hero__description .hero__highlight {
        font-size: 19px;
    }

    .hero__cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        gap: 20px;
        margin-top: 0;
    }

    .hero__cta .btn {
        width: 100%;
        padding: 18px 32px;
        font-size: 17px;
        border-radius: 14px;
    }

    .hero__microcopy {
        font-size: 14px;
        padding: 0;
        margin-top: 20px;
        line-height: 1.6;
    }

    .hero__decorative::before,
    .hero__decorative::after {
        display: none;
    }

    .pain-direct {
        padding: 60px 0;
    }

    .pain-direct__title {
        font-size: 28px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .pain-direct__list {
        gap: 20px;
        padding: 0 20px;
    }

    .pain-direct__item {
        padding: 16px;
        text-align: left;
    }

    .pain-direct__item p {
        font-size: 16px;
        text-align: left;
    }

    .pain-direct__promise {
        font-size: 24px;
        padding: 0 20px;
    }

    .section__title {
        font-size: 24px;
        line-height: 1.3;
        padding: 0 15px;
    }

    .section__subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        align-items: stretch;
    }

    .cases__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
        align-items: stretch;
    }

    .service__card {
        padding: 24px 20px;
        text-align: center;
        align-items: center;
    }

    .case__card {
        padding: 32px 24px;
        text-align: left;
        min-height: 260px;
    }

    .case__company {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .case__before-after {
        padding: 16px;
        margin-bottom: 20px;
    }

    .case__label {
        font-size: 12px;
    }

    .case__text {
        font-size: 14px;
    }

    .service__icon svg,
    .platform__icon svg {
        width: 40px;
        height: 40px;
    }

    .service__title {
        font-size: 20px;
        text-align: center;
    }

    .service__description {
        font-size: 15px;
        text-align: center;
    }

    .case__quote {
        margin-bottom: 20px;
    }

    .case__quote svg {
        width: 36px;
        height: 36px;
    }

    .case__company {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .case__before-after {
        padding: 16px;
        margin-bottom: 20px;
    }

    .case__label {
        font-size: 12px;
    }

    .case__text {
        font-size: 14px;
    }

    .case__testimonial {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .pain {
        padding: 60px 0;
    }

    .pain__title {
        font-size: 24px;
        line-height: 1.3;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .pain__content {
        padding: 0 20px;
        text-align: center;
    }

    .pain__negatives {
        gap: 12px;
        margin-bottom: 40px;
        padding: 0;
        align-items: stretch;
    }

    .pain__text {
        font-size: 18px;
        padding: 12px 0;
    }

    .pain__text::before {
        font-size: 16px;
        margin-right: 8px;
    }

    .pain__main {
        font-size: 20px;
        margin: 40px 0;
        line-height: 1.5;
        padding: 30px 20px;
    }

    .pain__conclusion {
        font-size: 16px;
        margin-top: 0;
        padding: 0;
    }

    .pain__cta {
        margin-top: 40px;
        padding-top: 20px;
    }

    .solution {
        padding: 60px 0;
    }

    .solution__content {
        padding: 0 20px;
        text-align: center;
    }

    .solution__negatives {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
        padding: 0;
        align-items: stretch;
    }

    .solution__negative-card {
        padding: 24px 20px;
        text-align: center;
    }

    .solution__negative-icon {
        width: 56px;
        height: 56px;
    }

    .solution__negative-icon svg {
        width: 28px;
        height: 28px;
    }

    .solution__negative-text {
        font-size: 16px;
    }

    .solution__highlight-card {
        padding: 40px 24px;
        margin-bottom: 40px;
    }

    .solution__highlight-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }

    .solution__highlight-icon svg {
        width: 48px;
        height: 48px;
    }

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

    .solution__scope {
        font-size: 16px;
    }

    .differentiator {
        padding: 60px 0;
    }

    .differentiator__content {
        padding: 0 20px;
        text-align: center;
    }

    .differentiator__closing {
        font-size: 18px;
        margin-top: 30px;
        line-height: 1.5;
    }

    .platforms {
        padding: 60px 0;
    }

    .platforms__title {
        font-size: 24px;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .platforms__subtitle {
        font-size: 14px;
        padding: 16px;
        margin-bottom: 40px;
    }

    .platforms__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 20px;
        align-items: stretch;
    }

    .platform__item {
        padding: 16px 12px;
    }

    .platform__icon svg {
        width: 36px;
        height: 36px;
    }

    .platform__icon--tiktok {
        width: 56px;
        height: 56px;
    }

    .platform__name {
        font-size: 12px;
    }

    .platforms__cta {
        padding-top: 30px;
    }

    .cases {
        padding: 60px 0;
    }

    .cases__intro {
        font-size: 16px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .cases__grid {
        gap: 20px;
    }

    .case__card {
        padding: 32px 24px;
        min-height: 260px;
    }

    .case__quote {
        margin-bottom: 20px;
    }

    .case__quote svg {
        width: 36px;
        height: 36px;
    }

    .cases__cta {
        padding: 0 20px;
        margin-top: 50px;
        padding-top: 40px;
    }

    .contact {
        padding: 80px 0;
    }

    .contact__content {
        padding: 50px 30px;
        border-radius: 20px;
    }

    .contact .section__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .contact__description {
        font-size: 17px;
        margin-bottom: 40px;
        line-height: 1.7;
    }

    .btn--whatsapp {
        padding: 18px 36px;
        font-size: 18px;
        width: 100%;
    }


    .modal__content {
        padding: 24px 20px;
        margin: 20px 10px;
        max-height: 85vh;
    }

    .modal__title {
        font-size: 22px;
        padding-right: 40px;
        margin-bottom: 20px;
    }

    .modal__body {
        font-size: 14px;
    }

    .modal__body h3 {
        font-size: 16px;
        margin-top: 24px;
        margin-bottom: 10px;
    }

    .faq {
        padding: 80px 0;
    }

    .faq__question {
        padding: 20px;
        gap: 16px;
    }

    .faq__question h3 {
        font-size: 16px;
    }

    .faq__item.active .faq__answer {
        padding: 0 20px 20px 20px;
    }

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

    .case__metrics {
        flex-direction: column;
        gap: 16px;
        padding: 14px;
    }

    .case__metric-value {
        font-size: 24px;
    }

    .step__description {
        font-size: 14px;
    }

    .services__price {
        font-size: 20px;
    }

    .services__price strong {
        font-size: 24px;
    }

    .services__guarantee {
        font-size: 15px;
        padding: 12px 20px;
    }

    .hero__guarantee {
        font-size: 14px;
        padding: 10px 20px;
    }

    .hero__urgency {
        font-size: 12px;
        padding: 6px 16px;
    }

    .footer {
        padding: 70px 0 30px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
        margin-bottom: 50px;
    }

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

    .footer__logo {
        justify-content: center;
    }

    .footer__brand-name {
        font-size: 28px;
    }

    .footer__tagline {
        max-width: 100%;
        text-align: center;
        font-size: 16px;
    }

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

    .footer__contact-item {
        justify-content: center;
    }

    .footer__links {
        align-items: center;
        gap: 40px;
    }

    .footer__links-group {
        text-align: center;
        align-items: center;
        gap: 18px;
    }

    .footer__links-group ul {
        align-items: center;
        gap: 16px;
    }

    .footer__bottom {
        padding: 40px 20px 0;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: white;
    animation: pulse 2s infinite;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateZ(0);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.02) translateZ(0);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
    will-change: transform, opacity;
}

/* SEO Hidden Text */
.seo-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Lead Qualification */
.lead-qualification {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 16px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    opacity: 0.8;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-gray);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 166, 32, 0.2), transparent);
}

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-it-works__step {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.how-it-works__step:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: 0 8px 25px rgba(247, 166, 32, 0.2);
}

.step__number {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: white;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(247, 166, 32, 0.4);
}

.how-it-works__step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.step__description {
    font-size: 15px;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-weight: 400;
}

.step__time {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(247, 166, 32, 0.1);
    border: 1px solid rgba(247, 166, 32, 0.25);
    border-radius: 50px;
    padding: 6px 14px;
}

/* Solution Differentiators */
.solution__differentiators {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.solution__differentiators-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.solution__differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.solution__differentiator-item {
    text-align: center;
    padding: 24px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.solution__differentiator-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.solution__differentiator-item p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

.solution__differentiators-closing {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero__authority-badges {
        flex-direction: column;
        gap: 10px;
    }

    .services__trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .how-it-works__steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .how-it-works__step {
        padding: 28px 20px;
    }

    .step__number {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .how-it-works__step h3 {
        font-size: 18px;
    }

    .solution__differentiators-title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .solution__differentiators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lead-qualification {
        font-size: 13px;
        padding: 0 20px;
    }
}