/* ============================================
   TÁTICA IMOB - PRETO E DOURADO ELEGANTE
   Dourado Luxuoso #D4AF37
   ============================================ */

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

:root {
    /* Cores Principais - Dourado Luxuoso */
    --primary-gold: #D4AF37;
    --primary-gold-light: #E8C952;
    --primary-gold-dark: #C09525;
    
    /* CTA Dourado Vibrante */
    --cta-gold: #FFD700;
    --cta-gold-light: #FFED4E;
    --cta-gold-dark: #DAA520;
    
    /* Dourado Secundário */
    --gold-secondary: #C9A961;
    --gold-tertiary: #B8860B;
    --gold-accent: #F4E5C3;
    
    /* Preto Profundo */
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    
    /* Texto */
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --text-muted: #808080;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #C09525 100%);
    --gradient-glow: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(192, 149, 37, 0.05) 100%);
    
    /* Gradientes CTA Dourado */
    --gradient-cta: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    --gradient-cta-glow: 0 0 40px rgba(255, 215, 0, 0.4);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(212, 175, 55, 0.15);
    --shadow-md: 0 4px 16px rgba(212, 175, 55, 0.2);
    --shadow-lg: 0 8px 32px rgba(212, 175, 55, 0.25);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.35);
    
    /* Sombras CTA Dourado */
    --shadow-cta: 0 4px 16px rgba(255, 215, 0, 0.25);
    --shadow-cta-hover: 0 8px 32px rgba(255, 215, 0, 0.4);
    
    /* Bordas */
    --border-color: rgba(212, 175, 55, 0.25);
    --border-radius: 16px;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ============================================
   HEADER BANNER
   ============================================ */

.header-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 25%, #FFD700 50%, #E8C952 75%, #DAA520 100%);
    padding: 24px 0;
    text-align: center;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

.header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, transparent 50%, rgba(255, 255, 255, 0.15) 100%);
    pointer-events: none;
}

.header-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: headerShine 8s ease-in-out infinite;
}

@keyframes headerShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-title {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
    letter-spacing: 0.8px;
    line-height: 1.5;
    margin: 0;
    text-transform: uppercase;
    text-shadow: none;
}

.header-title strong {
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.5px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 40px 0 30px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    width: 140px;
    height: auto;
    opacity: 1;
    background: transparent;
    mix-blend-mode: lighten;
    transition: var(--transition-normal);
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.highlight-big {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.hero-limited {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
    margin-bottom: 32px;
    font-style: italic;
}

/* Trusted By Section */
.trusted-by {
    margin-top: 40px;
    margin-bottom: 32px;
    padding: 32px 24px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--border-radius);
    position: relative;
}

.trusted-by::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cta-gold), transparent);
    opacity: 0.3;
}

.trusted-label {
    text-align: center;
    color: var(--cta-gold);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    position: relative;
}

.trusted-label::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-cta);
    margin: 12px auto 0;
    border-radius: 2px;
}

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

.logo-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.08);
}

.logo-circle:hover {
    border-color: var(--cta-gold);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: var(--transition-normal);
}

.logo-circle:hover img {
    filter: grayscale(0%) brightness(1);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

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

@media (max-width: 480px) {
    .btn-large {
        padding: 12px 20px;
        font-size: 15px;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    
    .cta-btn {
        padding: 9px 16px;
        font-size: 13px;
    }
}

.btn-primary {
    background: var(--gradient-cta);
    color: #000000;
    font-weight: 700;
    box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-cta-hover);
    background: var(--cta-gold-light);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.cta-btn {
    background: var(--gradient-cta);
    color: #000000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-fast);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-cta-hover);
    background: var(--cta-gold-light);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 40px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-darker);
}

/* Reduz espaço da primeira seção após hero */
.hero + .section {
    padding-top: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.highlight-danger {
    color: #ff4444;
    font-weight: 700;
    position: relative;
    white-space: nowrap;
}

/* ============================================
   PROBLEMS GRID
   ============================================ */

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition-normal);
}

.problem-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 48px;
    color: #d4af38;
    margin-bottom: 20px;
}

.problem-icon i {
    color: #d4af38;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

.impact-box {
    background: var(--gradient-glow);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 48px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.impact-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.impact-intro {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

.impact-stat-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.impact-number-big {
    font-size: 80px;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
}

.impact-number-highlight {
    font-size: 96px;
    font-weight: 800;
    color: #ff4444;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
    letter-spacing: -2px;
    position: relative;
}

.impact-number-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff4444, transparent);
    border-radius: 2px;
}

.impact-text-main {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.impact-conclusion {
    font-size: 18px;
    color: var(--text-primary);
    margin: 16px 0 8px;
    line-height: 1.5;
}

.impact-conclusion strong {
    color: var(--cta-gold);
    font-weight: 800;
    font-size: 20px;
}

.impact-source {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 12px;
}

.impact-source strong {
    color: var(--primary-gold);
    font-weight: 700;
    font-style: normal;
}

/* ============================================
   IMPACT GRID
   ============================================ */

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 968px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

.impact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition-normal);
}

.impact-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.impact-icon {
    font-size: 64px;
    margin-bottom: 16px;
    color: #d4af38;
}

.impact-icon i {
    color: #d4af38;
}

.impact-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
}

.impact-value {
    font-size: 80px;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
}

.impact-suffix {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-left: 4px;
}

.impact-label {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .impact-label {
        font-size: 15px;
        padding: 0 10px;
    }
}

.impact-highlight {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.impact-highlight i {
    font-size: 32px;
    color: var(--primary-gold);
}

.impact-highlight p {
    font-size: 18px;
    margin: 0;
}

.impact-highlight strong {
    color: var(--primary-gold);
}

/* ============================================
   SOLUTION BOX
   ============================================ */

.solution-box {
    background: var(--gradient-glow);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.solution-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-gold);
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    padding: 16px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.solution-list li:hover {
    background: rgba(212, 175, 55, 0.1);
}

.solution-list i {
    font-size: 24px;
    color: var(--primary-gold);
}

/* ============================================
   BENEFITS GRID
   ============================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIAL
   ============================================ */

.testimonial-box {
    background: var(--gradient-glow);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 64px 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-icon {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 24px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-text strong {
    color: var(--primary-gold);
    font-style: normal;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
}

.author-role {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.timeline-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px 32px;
    flex: 1;
    transition: var(--transition-normal);
}

.timeline-content:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-gold);
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* ============================================
   FAQ
   ============================================ */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--gradient-glow);
}

.cta-box {
    background: var(--bg-card);
    border: 2px solid var(--primary-gold);
    border-radius: var(--border-radius);
    padding: 64px 48px;
    box-shadow: var(--shadow-lg);
}

.cta-content {
    text-align: center;
    margin-bottom: 40px;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
}

.cta-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.cta-form input {
    padding: 16px 20px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-fast);
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

.form-limited {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 16px;
    opacity: 1;
    mix-blend-mode: lighten;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 15px;
}

.footer h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--primary-gold);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
}

.footer-contact i {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

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

@media (max-width: 968px) {
    .header-banner {
        padding: 20px 0;
    }
    
    .header-title {
        font-size: 17px;
        letter-spacing: 0.4px;
    }
    
    .header-title strong {
        font-weight: 800;
    }
    
    .hero-logo {
        margin-bottom: 12px;
    }
    
    .hero-logo img {
        width: 120px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .timeline-item {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-banner {
        padding: 16px 0;
    }
    
    .header-title {
        font-size: 13px;
        letter-spacing: 0.3px;
        line-height: 1.5;
    }
    
    .header-title strong {
        font-weight: 800;
    }
    
    .hero-logo {
        margin-bottom: 12px;
    }
    
    .hero-logo img {
        width: 100px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .hero + .section {
        padding-top: 25px;
    }
    
    .highlight-danger {
        white-space: normal;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .impact-value {
        font-size: 60px;
    }
    
    .impact-suffix {
        font-size: 48px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .impact-box {
        padding: 32px 24px;
    }
    
    .impact-number-big {
        font-size: 64px;
    }
    
    .impact-number-highlight {
        font-size: 64px;
    }
    
    .impact-text-main {
        font-size: 18px;
    }
    
    .impact-conclusion {
        font-size: 16px;
    }
    
    .impact-conclusion strong {
        font-size: 18px;
    }
    
    .logo-circle {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
    
    .logos-container {
        gap: 16px;
    }
    
    .trusted-by {
        padding: 32px 24px;
        margin-top: 48px;
    }
    
    .trusted-label {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
}