/* ========================================
   VARIANTA 2: BOLD ENERGETIC - Puternic & Direct
   Colors: Deep Purple (#6C2BD9), Gold (#FFB800), Black (#0F0F0F)
   ======================================== */

:root {
    --primary: #6C2BD9;
    --primary-dark: #5519B8;
    --primary-light: #8C51E3;
    --accent: #FFB800;
    --accent-dark: #E6A500;
    --black: #0F0F0F;
    --gray-900: #1A1A1A;
    --gray-800: #2A2A2A;
    --gray-600: #666666;
    --gray-400: #9CA3AF;
    --white: #FFFFFF;
    --shadow-primary: rgba(108, 43, 217, 0.3);
    --shadow-accent: rgba(255, 184, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
    color: var(--black);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn-primary,
.btn-secondary,
.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 30px var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-primary);
}

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

.btn-secondary {
    background: var(--black);
    color: white;
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--black);
    box-shadow: 0 12px 32px var(--shadow-accent);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px var(--shadow-accent);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */

.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 8px 24px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.7);
}

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

.hero {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108,43,217,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.badge-icon {
    font-size: 1.25rem;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.hero-title {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid #F0F0F0;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

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

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlay-card {
    position: absolute;
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.2);
    animation: float-card 3s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    left: -50px;
}

.card-2 {
    bottom: 20%;
    right: -50px;
    animation-delay: 1.5s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.card-title {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.card-amount {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
}

.progress-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 8px;
}

.progress-bar {
    width: 180px;
    height: 8px;
    background: #E5E7EB;
    border-radius: 50px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 50px;
    animation: progress-grow 2s ease-in-out infinite;
}

@keyframes progress-grow {
    0% {
        width: 0%;
    }
    100% {
        width: 85%;
    }
}

/* ========================================
   POWER STRIP
   ======================================== */

.power-strip {
    background: var(--black);
    color: white;
    padding: 48px 0;
}

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

.power-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.power-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.power-text strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.power-text span {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process {
    padding: 100px 0;
    background: white;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-head h2 {
    margin-bottom: 16px;
}

.section-head p {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.process-timeline {
    display: grid;
    gap: 48px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) > * {
    direction: ltr;
}

.timeline-visual {
    position: relative;
}

.timeline-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.timeline-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    box-shadow: 0 8px 24px var(--shadow-primary);
}

.timeline-content h3 {
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ========================================
   FORM CTA
   ======================================== */

.form-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E5E7EB 100%);
}

.form-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.form-header h2 {
    margin-bottom: 12px;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}


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

.bold-form .form-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.bold-form .step-label {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.08em;
    font-size: 0.9rem;
}

.bold-form .progress-dots {
    display: inline-flex;
    gap: 10px;
}

.bold-form .progress-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.18);
    box-shadow: inset 0 0 0 2px rgba(255, 184, 0, 0.2);
    transition: all 0.3s ease;
}

.bold-form .progress-dots .dot.is-active {
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(255, 184, 0, 0.18);
}

.bold-form .progress-dots .dot.is-complete {
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(108, 43, 217, 0.18);
}

.bold-form .form-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bold-form .form-step {
    display: none;
    flex-direction: column;
    gap: 28px;
    animation: boldFadeIn 0.3s ease forwards;
}

.bold-form .form-step.is-active {
    display: flex;
}

.bold-form .form-row {
    display: grid;
    gap: 24px;
}

.bold-form .form-row.two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group label {
    font-weight: 800;
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
}

.input-group input[type="text"],
.input-group input[type="tel"] {
    padding: 16px 20px;
    border: 2px solid rgba(255, 184, 0, 0.35);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(15, 15, 15, 0.85);
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(255, 184, 0, 0.12);
}

.input-group input[type="text"]:focus,
.input-group input[type="tel"]:focus {
    outline: none;
    border-color: #FFB800;
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.18);
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.field-header label {
    margin: 0;
}

.inline-helper {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    background: rgba(255, 184, 0, 0.12);
    padding: 4px 12px;
    border-radius: 8px;
}

.amount-input-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(15, 15, 15, 0.92);
    border: 2px solid rgba(255, 184, 0, 0.35);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: inset 0 1px 4px rgba(255, 184, 0, 0.2);
}

.amount-prefix {
    font-weight: 900;
    color: #FFB800;
    letter-spacing: 0.08em;
}

.amount-input-wrapper input[type="number"] {
    border: none;
    font-size: 1.45rem;
    font-weight: 800;
    width: 100%;
    background: transparent;
    outline: none;
    color: #ffffff;
}

.amount-input-wrapper input[type="number"]::-webkit-outer-spin-button,
.amount-input-wrapper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.amount-input-wrapper input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.field-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.bold-form .range-slider {
    width: 100%;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(108, 43, 217, 0.35) 0%, rgba(255, 184, 0, 0.2) 100%);
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

.bold-form .range-slider::-webkit-slider-runnable-track {
    height: 16px;
    border-radius: 999px;
}

.bold-form .range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #FFE699);
    border: 4px solid #0f0f0f;
    box-shadow: 0 12px 26px rgba(255, 184, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: -8px;
}

.bold-form .range-slider:hover::-webkit-slider-thumb {
    transform: scale(1.06);
    box-shadow: 0 16px 32px rgba(255, 184, 0, 0.55);
}

.bold-form .range-slider::-moz-range-track {
    height: 16px;
    border-radius: 999px;
    background: transparent;
}

.bold-form .range-slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #FFE699);
    border: 4px solid #0f0f0f;
    box-shadow: 0 12px 26px rgba(255, 184, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bold-form .range-slider:hover::-moz-range-thumb {
    transform: scale(1.06);
    box-shadow: 0 16px 32px rgba(255, 184, 0, 0.55);
}

.slider-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.styled-select {
    position: relative;
}

.styled-select select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(108, 43, 217, 0.4);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(15, 15, 15, 0.92);
    color: #ffffff;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(108, 43, 217, 0.3);
    padding-right: 3rem;
}

.styled-select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #FFB800;
    transform: translateY(-35%);
    pointer-events: none;
}

.styled-select select:focus {
    border-color: #FFB800;
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.18);
}

.result-highlight {
    position: relative;
    padding: 32px;
    border-radius: 24px;
    background: radial-gradient(140% 150% at 5% 0%, rgba(108, 43, 217, 0.85) 0%, rgba(15, 15, 15, 0.9) 45%, rgba(255, 184, 0, 0.25) 100%);
    border: 2px solid rgba(255, 184, 0, 0.45);
    box-shadow: 0 26px 64px rgba(15, 15, 15, 0.45);
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
}

.result-highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.result-chip {
    align-self: flex-start;
    background: rgba(255, 184, 0, 0.16);
    color: #FFE699;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.result-heading {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--accent);
    text-transform: uppercase;
}

.result-value {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    font-weight: 900;
    color: var(--accent);
}

.result-value span[data-output="monthly"] {
    line-height: 1;
}

.result-suffix {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.result-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.bold-form .form-navigation {
    display: flex;
    gap: 18px;
    align-items: center;
}

.bold-form .form-navigation .btn-secondary {
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
    background: rgba(15, 15, 15, 0.65);
}

.bold-form .form-navigation .btn-secondary:hover {
    background: rgba(108, 43, 217, 0.4);
    color: #ffffff;
}

.bold-form .form-navigation .btn-primary,
.bold-form .form-navigation .btn-accent {
    margin-left: auto;
}

.input-group input[type="text"],
.input-group input[type="tel"],
.styled-select select {
    backdrop-filter: blur(2px);
}
    .bold-form .form-navigation .btn-secondary.is-hidden,
    .bold-form .form-navigation .btn-primary.is-hidden,
    .bold-form .form-navigation .btn-accent.is-hidden {
        display: none !important;
    }

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 8px;
}

.form-disclaimer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

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

.faq {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item.active {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(108, 43, 217, 0.15);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
}

.faq-q h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.faq-btn {
    background: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-btn svg {
    color: white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-btn {
    background: var(--primary);
}

.faq-item.active .faq-btn svg {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-a {
    max-height: 600px;
}

.faq-a p,
.faq-a ul {
    padding: 0 28px 24px;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-a ul {
    list-style: none;
    padding-left: 48px;
    margin-top: 12px;
}

.faq-a li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

    .is-hidden {
        display: none !important;
    }
.faq-a li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

.faq-a strong {
    color: var(--black);
    font-weight: 700;
}

/* ========================================
   SOCIAL PROOF
   ======================================== */

.proof {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.proof-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

.proof-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.proof-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
}

.proof-stars {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.proof-card p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.proof-author strong {
    display: block;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 4px;
}

.proof-author span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

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

.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-legal {
    border-top: 1px solid var(--gray-800);
    padding-top: 32px;
}

.footer-legal h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-legal p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 24px;
}

.copyright a {
    color: var(--accent);
}

/* ========================================
   MODAL
   ======================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.show {
    display: flex;
}

.modal-box {
    background: white;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    max-width: 480px;
    animation: modal-pop 0.3s ease;
}

@keyframes modal-pop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

.modal-check {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-check svg {
    color: white;
}

.modal-box h3 {
    margin-bottom: 12px;
}

.modal-box p {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* ========================================
   STICKY BAR
   ======================================== */

.sticky-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: var(--black);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    padding: 20px 24px;
    z-index: 999;
    transition: bottom 0.3s ease;
}

.sticky-bar.show {
    bottom: 0;
}

.sticky-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-wrap span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-sticky {
    background: var(--accent);
    color: var(--black);
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

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

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

    .hero-visual {
        order: -1;
    }

    .card-1,
    .card-2 {
        left: 50%;
        transform: translateX(-50%);
    }

    .card-1 {
        top: -20px;
    }

    .card-2 {
        bottom: -20px;
        right: auto;
    }

    .power-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 0 40px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary,
    .btn-accent {
        width: 100%;
        justify-content: center;
    }

    .form-box {
        padding: 32px 20px;
    }

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

    .field-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .amount-input-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .result-value {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        font-size: 2.6rem;
    }

    .bold-form .form-navigation {
        flex-direction: column-reverse;
        gap: 12px;
        align-items: stretch;
    }

    .bold-form .form-navigation .btn-secondary,
    .bold-form .form-navigation .btn-primary,
    .bold-form .form-navigation .btn-accent {
        margin: 0;
    }

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

    .sticky-wrap {
        flex-direction: column;
        text-align: center;
    }

    .btn-sticky {
        width: 100%;
    }

    .timeline-visual img {
        height: 220px;
    }
}
