* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF9900;
    --primary-dark: #E88B00;
    --primary-light: #FFB84D;
    --secondary: #232F3E;
    --secondary-light: #37475A;
    --accent: #10B981;
    --danger: #EF4444;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #94A3B8;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-dark: #0F172A;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #FF9900 0%, #E88B00 100%);
    --gradient-secondary: linear-gradient(135deg, #232F3E 0%, #37475A 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
    transition: bottom 0.3s ease-in-out;
    text-align: center;
    border-top: 2px solid var(--primary);
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta .btn {
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.1) 0%, transparent 70%);
    animation: float-circle 20s ease-in-out infinite;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -100px;
    animation-delay: 7s;
}

.circle-3 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float-circle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Button Animation */
.pulse-btn {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3); }
    50% { box-shadow: 0 8px 24px rgba(255, 153, 0, 0.6); }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Risk Disclaimer Banner */
.risk-banner {
    background: #FEF3C7;
    border-bottom: 2px solid #F59E0B;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.risk-banner p {
    font-size: 13px;
    color: #92400E;
    text-align: center;
    margin: 0;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 48px;
    z-index: 999;
    padding: 16px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 20px 0 80px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: var(--gradient-success);
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Investment Highlight */
.investment-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border: 2px solid #F59E0B;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
    transition: transform 0.3s;
}

.investment-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3);
}

.highlight-icon {
    font-size: 48px;
    animation: bounce-gentle 2s ease-in-out infinite;
    color: #FF9900;
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.highlight-content {
    flex: 1;
}

.highlight-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.highlight-value {
    font-size: 36px;
    font-weight: 900;
    color: #D97706;
    margin-bottom: 4px;
}

.highlight-subtext {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Hero Form */
.hero-form {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary);
    margin-bottom: 24px;
}

.lead-form h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-input {
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid var(--border);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: white;
    width:100%!important;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    margin-bottom: 12px;
}

.form-disclaimer-small {
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
}

.hero-cta-secondary {
    text-align: center;
}

.btn-text {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-text:hover {
    color: var(--primary);
    transform: translateY(4px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(255, 153, 0, 0.3);
}

.btn-large:hover {
    box-shadow: 0 12px 32px rgba(255, 153, 0, 0.4);
}

.cta-center {
    margin-top: 48px;
    text-align: center;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Full Width Stock Card */
.stock-card-full {
    background: white;
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: relative;
    margin-top: 40px;
    max-height: 140px;
}

.stock-card-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 48px;
    align-items: center;
}

.stock-info-group {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stock-header-compact h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
    line-height: 1;
}

.stock-header-compact p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 4px 0 0 0;
}

.stock-price-compact {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.stock-price-compact .currency {
    font-size: 28px;
    margin-right: 4px;
    color: var(--text-secondary);
}

.mini-chart-compact {
    height: 80px;
    min-width: 300px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.mini-chart-compact::after {
    content: '\f201  Ver gráfico completo';
    font-family: 'Font Awesome 6 Free', 'Inter', sans-serif;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(16, 185, 129, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.mini-chart-compact:hover {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.mini-chart-compact:hover::after {
    opacity: 1;
}

.stock-stats-compact {
    display: flex;
    gap: 32px;
    padding-left: 32px;
    border-left: 2px solid var(--border);
}

.stock-stats-compact .stat {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.stock-stats-compact .stat-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stock-stats-compact .stat-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 4px;
}

.stock-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: relative;
}

.live-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.stock-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.stock-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.stock-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.stock-change {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.stock-change.positive {
    background: #D1FAE5;
    color: #065F46;
}

.stock-change.negative {
    background: #FEE2E2;
    color: #991B1B;
}

.stock-price {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
}

.stock-price .currency {
    font-size: 32px;
    margin-right: 4px;
    color: var(--text-secondary);
}

#stockPrice.price-update {
    animation: price-flash 0.6s ease-in-out;
}

@keyframes price-flash {
    0% { color: var(--text-primary); }
    50% { color: #10B981; transform: scale(1.05); }
    100% { color: var(--text-primary); transform: scale(1); }
}

.mini-chart {
    height: 120px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
    border-radius: 12px;
    margin-bottom: 24px;
    position: relative;
}

.stock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 4px;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    display: flex;
    gap: 16px;
    bottom: -40px;
    right: 0;
}

.float-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-width: 140px;
    animation: float 3s ease-in-out infinite;
}

.float-card:nth-child(2) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.metric-icon {
    font-size: 24px;
    margin-bottom: 8px;
    color: #FF9900;
}

.metric-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Why Invest Section */
.why-invest-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.why-invest-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-invest-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-invest-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
}

.why-invest-image:hover img {
    transform: scale(1.05);
}

.stat-overlay {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 8px;
}

.why-invest-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.reason-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reason-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.reason-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.reason-icon {
    font-size: 40px;
    flex-shrink: 0;
    color: #FF9900;
}

.reason-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.reason-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Banner */
.stats-banner {
    padding: 80px 0;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.stat-icon-big {
    font-size: 56px;
    margin-bottom: 20px;
    color: #FF9900;
}

.stat-big-number {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-big-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    font-style: italic;
}

.data-disclaimer-notice {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 2px solid #F59E0B;
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 32px;
    text-align: center;
    font-size: 14px;
    color: #92400E;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.data-disclaimer-notice i {
    color: #F59E0B;
    font-size: 18px;
}

.data-source-label {
    background: #FEF3C7;
    border-left: 3px solid #F59E0B;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: #92400E;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.data-source-label i {
    color: #F59E0B;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Analysis Section */
.analysis-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.analysis-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s;
    border: 2px solid transparent;
    overflow: hidden;
}

.analysis-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.analysis-card:hover .card-image img {
    transform: scale(1.1);
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.3) 100%);
}

.analysis-card > *:not(.card-image) {
    padding: 0 40px;
}

.analysis-card > h3 {
    padding-top: 32px;
}

.analysis-card > .feature-list,
.analysis-card > .financial-metrics {
    padding-bottom: 40px;
}

.card-icon {
    font-size: 48px;
    margin: 24px 0;
    color: #FF9900;
}

.analysis-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.analysis-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
}

.feature-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-success);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
}

.feature-list.risk-list li::before {
    content: '⚠';
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.risk-text {
    color: var(--danger);
    font-weight: 600;
}

.financial-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 8px;
}

.metric-name {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

/* How to Start Section */
.how-to-start-section {
    padding: 100px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.step-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.step-card:hover .step-image img {
    transform: scale(1.1) rotate(2deg);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Data Section */
.data-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.data-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.data-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border);
}

.data-card.large {
    grid-row: span 2;
}

.data-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.data-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.chart-container {
    height: 400px;
    margin-bottom: 24px;
}

/* Business Segments */
.business-segments {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.segment-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.segment-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.segment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.segment-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.segment-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.segment-info p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.segment-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.segment-bar {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.segment-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.time-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.time-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid var(--border);
    background: white;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.time-btn:hover,
.time-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
}

.data-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.metrics-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sentiment-display {
    text-align: center;
}

.sentiment-score {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.sentiment-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.sentiment-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    font-size: 14px;
    font-weight: 600;
    min-width: 60px;
}

.bar-fill {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.bar-inner {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.bar-inner.buy {
    background: var(--gradient-success);
}

.bar-inner.hold {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.bar-inner.sell {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

/* Education Section */
.education-section {
    padding: 100px 0;
    background: white;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.edu-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.edu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.edu-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.edu-card:hover::before {
    transform: scaleX(1);
}

.edu-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.edu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.edu-card:hover .edu-image img {
    transform: scale(1.1);
}

.edu-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    margin: 24px 0 16px 32px;
}

.edu-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 32px 16px;
    color: var(--text-primary);
}

.edu-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 32px 32px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.cta-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.9;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-highlight {
    margin-bottom: 40px;
}

.cta-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.4);
    animation: pulse-scale 2s ease-in-out infinite;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    outline: none;
}

.form-disclaimer {
    font-size: 13px;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.disclaimer-section h2 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.disclaimer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.disclaimer-block {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid var(--danger);
}

.disclaimer-block h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--danger);
}

.disclaimer-block p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-section p {
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 8px;
}

.footer-risk {
    font-weight: 700;
    color: var(--primary);
}

/* Hover Effects */
.data-card {
    transition: all 0.3s;
}

.data-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-invest-content,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        flex-direction: column-reverse;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .analysis-grid,
    .education-grid,
    .disclaimer-content {
        grid-template-columns: 1fr;
    }
    
    .data-dashboard {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .circle {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-form {
        padding: 24px;
    }
    
    .lead-form h3 {
        font-size: 24px;
    }
    
    .sticky-cta .btn {
        font-size: 14px;
        padding: 14px 24px;
    }
    
    .sticky-cta .btn svg {
        display: none;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .floating-cards {
        position: static;
        margin-top: 24px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    /* Full Width Stock Card - Mobile */
    .stock-card-full {
        padding: 20px;
        max-height: none;
        margin-top: 32px;
    }
    
    .stock-card-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stock-info-group {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: space-between;
    }
    
    .stock-price-compact {
        font-size: 36px;
    }
    
    .stock-price-compact .currency {
        font-size: 20px;
    }
    
    .mini-chart-compact {
        height: 60px;
        min-width: 100%;
    }
    
    .stock-stats-compact {
        flex-direction: column;
        gap: 16px;
        padding-left: 0;
        border-left: none;
        padding-top: 16px;
        border-top: 2px solid var(--border);
    }
    
    .stock-stats-compact .stat {
        min-width: auto;
    }
}


/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 2000;
    transition: bottom 0.5s ease-in-out;
    border-top: 1px solid var(--border);
}

.cookie-banner.visible {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px;
}

.btn-outline {
    background: white;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--text-secondary);
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}


/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.checkbox-group input[type='checkbox'] {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-group a:hover {
    text-decoration: underline;
}


/* Phone validation error */
.error-message {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.4;
}

.form-input.error {
    border-color: #EF4444 !important;
}

.form-input.success {
    border-color: #10B981 !important;
}

/* Phone input validation states */
.form-input.valid {
    border-color: #10B981 !important;
    background-color: rgba(16, 185, 129, 0.05);
}

.form-input.invalid {
    border-color: #F59E0B !important;
    background-color: rgba(245, 158, 11, 0.05);
}

.form-input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-input.valid:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Phone input specific styles */
.form-input[type="tel"] {
    font-family: 'Monaco', 'Courier New', monospace;
    letter-spacing: 0.5px;
    font-size: 16px;
}

/* Error message styles */
.error-message {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Ensure numeric keyboard on mobile */
.form-input[inputmode="numeric"] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
}

.form-input[inputmode="numeric"]::-webkit-inner-spin-button,
.form-input[inputmode="numeric"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1001;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.chat-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 153, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 153, 0, 0.5);
}

.chat-toggle i {
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.chat-toggle .fa-times {
    display: none;
}

.chat-widget.open .chat-toggle .fa-comment-dots {
    display: none;
}

.chat-widget.open .chat-toggle .fa-times {
    display: block;
}

.chat-toggle-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    animation: chat-pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes chat-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0; }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 520px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
}

.chat-widget.open .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--gradient-primary);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.chat-header-info h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.chat-header-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin: 4px 0 0 0;
}

.chat-online-dot {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    margin-left: auto;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
    animation: pulse-dot 2s ease-in-out infinite;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 280px;
    max-height: 320px;
    background: #FAFAFA;
}

.chat-message {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    animation: message-in 0.3s ease;
}

@keyframes message-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message.bot {
    background: white;
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.chat-message.user {
    background: var(--gradient-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
    background: white;
    border-radius: 18px;
    border-bottom-left-radius: 6px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.chat-typing span {
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    animation: typing-dot 1.4s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.chat-input-area {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid var(--border);
}

.chat-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 24px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    outline: none;
}

.chat-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.chat-input::placeholder {
    color: var(--text-light);
}

.chat-send {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.chat-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
}

.chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chat-send i {
    color: white;
    font-size: 18px;
}

.chat-input-hint {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
}

.chat-disclaimer {
    background: #FEF3C7;
    border-top: 1px solid #F59E0B;
    padding: 10px 16px;
    font-size: 10px;
    color: #92400E;
    text-align: center;
    line-height: 1.4;
}

.chat-disclaimer i {
    margin-right: 4px;
}

.chat-success {
    text-align: center;
    padding: 40px 24px;
}

.chat-success i {
    font-size: 56px;
    color: #10B981;
    margin-bottom: 16px;
}

.chat-success h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.chat-success p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.chat-success .disclaimer-text {
    font-size: 11px;
    color: #92400E;
    background: #FEF3C7;
    padding: 10px;
    border-radius: 8px;
    margin-top: 16px;
}

.chat-success .disclaimer-text i {
    font-size: 12px;
    margin-right: 4px;
}
.chat-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin: 16px 0;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.chat-whatsapp-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.chat-whatsapp-btn i {
    font-size: 20px;
}

/* Mobile responsiveness for chat */
@media (max-width: 480px) {
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .chat-window {
        width: calc(100vw - 32px);
        right: -8px;
        max-height: 70vh;
    }
    
    .chat-toggle {
        width: 56px;
        height: 56px;
    }
    
    .chat-toggle i {
        font-size: 24px;
    }
}

