/* Root Variables */
:root {
    --primary: #FFD700;
    --secondary: #D4AF37;
    --accent: #CD7F32;
    --gold-light: #FFF8DC;
    --gold-dark: #B8860B;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(212, 175, 55, 0.05);
    --text-main: #FFFFFF;
    --text-muted: #D4C5A9;
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-highlight: rgba(255, 215, 0, 0.3);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 50px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.gradient-text {
    background: linear-gradient(135deg, #FFF 0%, var(--primary) 50%, var(--secondary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 5s linear infinite;
}

/* Layout & Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 2.5rem;
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    z-index: 101;
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-banner p {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 50vw;
    height: 50vw;
    background: var(--secondary);
    top: -20%;
    left: -10%;
    animation: float 15s infinite ease-in-out;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: var(--primary);
    bottom: -10%;
    right: -10%;
    animation: float 12s infinite ease-in-out reverse;
}

.orb-3 {
    width: 30vw;
    height: 30vw;
    background: var(--accent);
    top: 40%;
    left: 30%;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    opacity: 0.4;
    mix-blend-mode: overlay;
}

/* Glassmorphism */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    color: #1a1a1a;
    border: none;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5), 0 4px 15px rgba(212, 175, 55, 0.4);
    border-radius: 16px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFD700 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6), 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-hero {
    font-size: 1.1rem;
    padding: 1.5rem 3.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-sm:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 1.5rem 3rem;
}

/* CTA Wrapper */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Urgency Badge Bottom */
.urgency-badge-bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: rgba(205, 127, 50, 0.15);
    border: 1px solid var(--accent);
    color: #F4A460;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 3rem;
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.4);
    text-align: center;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-bronze 1.5s infinite;
    flex-shrink: 0;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Premium Headline */
.premium-headline {
    text-align: center;
    max-width: 900px;
    margin: 2.5rem auto;
}

.headline-main {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 500;
}

.headline-sub {
    font-size: clamp(0.85rem, 1.8vw, 1.2rem);
    color: #E2E8F0;
    font-weight: 400;
}

.gold-text {
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('hero-background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(0, 0, 0, 0.95) 70%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    margin-top: 20vh;
}

/* Counter Styles */
.counter-wrapper {
    display: inline-block;
    font-weight: 800;
    line-height: 1;
}

#counter {
    font-size: clamp(3rem, 6vw, 5rem);
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, var(--primary) 0%, #FFF 50%, var(--secondary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.counter-label {
    font-size: clamp(1rem, 2vw, 1.5rem);
    display: block;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: -0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.card:hover::after {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Compact Cards for "Who is this for" Section */
.compact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.compact-card {
    padding: 1.8rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.compact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.compact-card-number {
    position: absolute;
    top: -10px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

.compact-card-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow:
        0 0 12px rgba(255, 215, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.4);
}

@keyframes pulse-check {

    0%,
    100% {
        box-shadow:
            0 0 15px rgba(0, 240, 255, 0.6),
            0 0 30px rgba(0, 240, 255, 0.4),
            0 0 45px rgba(112, 0, 255, 0.2);
    }

    50% {
        box-shadow:
            0 0 20px rgba(0, 240, 255, 0.8),
            0 0 40px rgba(0, 240, 255, 0.6),
            0 0 60px rgba(112, 0, 255, 0.3);
    }
}

.compact-card h3 {
    font-size: 1.05rem;
    line-height: 1.4;
    margin: 0;
    color: white;
    font-weight: 600;
}

.compact-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Highlighted Subtitle Box */
.highlighted-subtitle {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(212, 175, 55, 0.15));
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 700px;
    position: relative;
    overflow: hidden;
}

.highlighted-subtitle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.highlighted-subtitle p {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
    line-height: 1.5;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Compact Benefits Cards */
.compact-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-compact-card {
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.benefit-compact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.benefit-compact-card .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-compact-card h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
}

.benefit-compact-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Results Section */
.results-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.03) 100%);
    padding: 4rem 0;
}

/* Testimonial Blocks */
.testimonial-block {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.testimonial-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: block;
}

.testimonial-info {
    text-align: center;
    padding: 0 1rem;
}

.result-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.result-name {
    font-weight: 600;
    color: white;
    font-size: 1.2rem;
}

.result-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.9rem;
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary);
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.result-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.testimonial-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.03) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 5rem 0;
}

.comparison-block {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.comparison-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.comparison-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.4;
    color: white;
    margin-bottom: 2.5rem;
    font-weight: 600;
    padding: 0 1rem;
}

.comparison-graph {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Bio Section */
.bio-section {
    position: relative;
}

.methodology-highlight {
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    border: 1px solid var(--primary);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.2);
}

.methodology-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.scale-example {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    display: inline-block;
    border: 1px dashed var(--glass-border);
}

.bio-content {
    margin-top: 3rem;
}

.bio-text {
    max-width: 900px;
    margin: 0 auto;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.timeline {
    margin-top: 3rem;
    border-left: 2px solid var(--glass-border);
    padding-left: 2rem;
    position: relative;
}

.timeline-item {
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.year {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

.cta-box {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.guarantee-badge {
    margin-top: 2rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to top, #000, transparent);
    margin-top: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-text {
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.4;
}

.cnpj {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Simple Strategy Section */
.simple-strategy-section {
    padding: 4rem 0;
}

.strategy-box {
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.strategy-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
    color: white;
    font-weight: 700;
}

.strategy-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.strategy-item:hover {
    transform: translateX(5px);
}

.x-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #CD7F32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow:
        0 0 15px rgba(205, 127, 50, 0.6),
        0 0 30px rgba(205, 127, 50, 0.4),
        0 0 45px rgba(205, 127, 50, 0.2);
    border: 2px solid rgba(205, 127, 50, 0.8);
    animation: pulse-x 2s infinite;
}

.strategy-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    font-weight: 400;
}

@keyframes pulse-x {

    0%,
    100% {
        box-shadow:
            0 0 15px rgba(205, 127, 50, 0.6),
            0 0 30px rgba(205, 127, 50, 0.4),
            0 0 45px rgba(205, 127, 50, 0.2);
    }

    50% {
        box-shadow:
            0 0 20px rgba(205, 127, 50, 0.8),
            0 0 40px rgba(205, 127, 50, 0.6),
            0 0 60px rgba(205, 127, 50, 0.3);
    }
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

@keyframes pulse-bronze {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(205, 127, 50, 0.7);
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
        box-shadow: 0 0 0 10px rgba(205, 127, 50, 0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(205, 127, 50, 0);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes gradient-flow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes gradient-rotate {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Utility Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 45px;
    }

    .top-banner {
        padding: 0.6rem 0;
    }

    .top-banner p {
        font-size: clamp(0.65rem, 2vw, 0.8rem);
        padding: 0 0.5rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .hero-section {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-content {
        margin-top: 15vh;
    }

    .btn-hero {
        font-size: 0.9rem;
        padding: 1.2rem 2.5rem;
        letter-spacing: 1px;
        max-width: 320px;
        line-height: 1.4;
    }

    .methodology-highlight {
        padding: 1.5rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        left: -2.1rem;
    }

    .compact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 2rem;
    }

    .compact-card {
        padding: 1.5rem;
        gap: 0.8rem;
    }

    .compact-card-check {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }

    .compact-card h3 {
        font-size: 0.95rem;
    }

    .compact-card p {
        font-size: 0.9rem;
    }

    .highlighted-subtitle {
        padding: 1.2rem 1.5rem;
    }

    .highlighted-subtitle p {
        font-size: 1.1rem;
    }

    .compact-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-compact-card {
        padding: 1.2rem;
    }


    .strategy-box {
        padding: 1.5rem;
    }

    .strategy-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 2rem;
    }

    .strategy-item {
        gap: 1rem;
    }

    .x-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .strategy-item p {
        font-size: 1rem;
    }

    /* Testimonial Mobile Styles */
    .testimonial-block {
        margin-bottom: 3rem;
    }

    .testimonial-image {
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }

    .result-value {
        font-size: 2rem;
    }

    .result-name {
        font-size: 1.1rem;
    }

    .testimonial-info p {
        font-size: 1rem;
    }

    .methodology-image {
        border-radius: 15px;
        margin: 1.5rem auto;
    }

    /* Comparison Mobile Styles */
    .comparison-section {
        padding: 3rem 0;
    }

    .comparison-block {
        margin-bottom: 3rem;
    }

    .comparison-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-bottom: 1.5rem;
    }

    .comparison-graph {
        border-radius: 15px;
    }
}