/* Premium HighPay Styles - Lemfi Inspired */

/* Smooth scrolling and transitions */
html {
    scroll-behavior: smooth;
}

*, *::before, *::after {
    transition: all 0.3s ease;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animation classes */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out;
}

.animate-slideInFromBottom {
    animation: slideInFromBottom 0.8s ease-out;
}

.animate-scaleIn {
    animation: scaleIn 0.5s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Hover animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(86, 38, 175, 0.3);
}

/* News slider animations */
.news-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Button smooth transitions */
.btn {
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Card animations */
.card, .feature-card, .service-card, .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

/* Navbar smooth animation */
.navbar-premium {
    background: #5626af !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    transition: var(--transition-normal);
    z-index: 1000;
    padding: 1.5rem 0;
}

.navbar-premium.scrolled, .navbar-premium.active, .navbar-premium.sticky {
    background: #5626af !important;
    box-shadow: 0 2px 8px rgba(86,38,175,0.08);
}

.navbar-nav .nav-link {
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Loading animations */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth form transitions */
.form-control {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(86, 38, 175, 0.15);
}

/* Footer link animations */
.footer-list a {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* Social link animations */
.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-orange);
}

/* Calculator smooth animations */
.calculator-container {
    transition: all 0.3s ease;
}

.currency-flag {
    transition: transform 0.3s ease;
}

.currency-flag:hover {
    transform: scale(1.1);
}

/* Stats counter smooth animation */
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

/* Mobile Responsive Improvements */
@media (max-width: 991.98px) {
    /* Navbar mobile fixes */
    .navbar-collapse {
        background: #5626af;
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin-top: 10px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: white !important;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Hamburger menu styling */
    .navbar-toggler {
        border: none;
        padding: 8px 12px;
        border-radius: 8px;
        background: rgba(86, 38, 175, 0.1);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
}

@media (max-width: 767.98px) {
    /* Hero section mobile */
    .hero-premium {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    /* Calculator mobile responsiveness */
    .calculator-container {
        padding: 20px;
        margin: 20px 0;
    }
    
    .calculator-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .calculator-input {
        margin-bottom: 15px;
    }
    
    .currency-select {
        font-size: 14px;
        padding: 12px;
    }
    
    /* Team section mobile fixes */
    .team-section .row {
        justify-content: center;
    }
    
    .team-card {
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .member-photo {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 50%;
        margin: 0 auto;
        display: block;
    }
    
    .team-info {
        text-align: center;
        padding: 20px;
    }
    
    .member-name {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .member-role {
        font-size: 1rem;
        color: var(--primary-purple);
        margin-bottom: 15px;
    }
    
    .member-bio {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--gray-600);
    }
    
    /* Cards mobile responsiveness */
    .feature-card, .service-card, .value-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    /* Testimonials mobile fixes */
    .testimonials-section {
        padding: 80px 0 !important;
        background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f4ff 100%) !important;
    }
    
    .testimonials-section .container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 10px !important;
    }
    
    .testimonials-section .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 25px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .testimonials-section .col-lg-4,
    .testimonials-section .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 5px !important;
        flex: 1 !important;
    }
    
    .testimonial-card {
        width: 100% !important;
        text-align: center !important;
        padding: 40px 30px !important;
        background: #ffffff !important;
        border-radius: 25px !important;
        box-shadow: 0 20px 60px rgba(86, 38, 175, 0.15) !important;
        border: 1px solid rgba(86, 38, 175, 0.08) !important;
        margin-bottom: 0 !important;
        margin: 0 !important;
        transform: translateY(0) !important;
        transition: all 0.3s ease !important;
        display: block !important;
        min-height: 300px !important;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(86, 38, 175, 0.15);
    }
    
    .testimonial-rating {
        margin-bottom: 25px;
        text-align: center;
    }
    
    .testimonial-text {
        font-size: 1.3rem !important;
        line-height: 1.9 !important;
        margin-bottom: 35px !important;
        color: #444 !important;
        font-style: italic !important;
        text-align: center !important;
        font-weight: 400 !important;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-top: 25px;
    }
    
    .author-photo {
        width: 80px !important;
        height: 80px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        border: 4px solid rgba(86, 38, 175, 0.15) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    }
    
    .author-info {
        text-align: left;
        flex: 1;
    }
    
    .author-name {
        font-size: 1.4rem !important;
        font-weight: 600 !important;
        margin-bottom: 8px !important;
        color: #333 !important;
        line-height: 1.3 !important;
    }
    
    .author-location {
        font-size: 1.1rem !important;
        color: #666 !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;
    }
    
    .stars {
        color: #ffc107 !important;
        font-size: 1.5rem !important;
        letter-spacing: 3px !important;
    }
    
    /* News item styling for images */
.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 15px;
}

.news-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 10px;
    display: inline-block;
}

.read-more-link:hover {
    color: var(--secondary-color);
}

/* Footer mobile */
    .footer-premium .row {
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 30px;
    }
    
    /* Page spacing fixes */
    .main-content {
        padding-bottom: 60px;
        min-height: calc(100vh - 200px);
    }
    
    .content-section {
        margin-bottom: 40px;
    }

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3) !important;
    z-index: 9999 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
}

.floating-contact-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4) !important;
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%) !important;
}

.floating-contact-btn i {
    color: white !important;
    font-size: 24px !important;
}

.floating-contact-btn::before {
    content: '' !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    background: rgba(37, 211, 102, 0.3) !important;
    animation: pulse 2s infinite !important;
    z-index: -1 !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.08);
    }
    20%, 40% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.05);
    }
    60% {
        transform: scale(0.97);
    }
    70% {
        transform: scale(1.02);
    }
    80% {
        transform: scale(0.98);
    }
    90% {
        transform: scale(1.01);
    }
}



/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(86, 38, 175, 0.3);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
}

body.dark-mode .dark-mode-toggle {
    background: rgba(45, 45, 45, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
    color: #f0f0f0;
}

.dark-mode-toggle:hover {
    transform: translateY(-50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(86, 38, 175, 0.5);
}

body.dark-mode .dark-mode-toggle:hover {
    background: rgba(60, 60, 60, 1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Default purple theme styles */
body, .hero-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.hero-premium {
    margin-top: 0 !important;
    padding-top: 120px !important;
}

@media (max-width: 991.98px) {
    .hero-premium {
        padding-top: 100px !important;
    }
}

.calculator-premium,
.crypto-rates-section,
.exchange-rates-section,
.features-section,
.how-it-works-section {
    background: rgba(86, 38, 175, 0.05);
    color: white;
}

.section-title,
.section-subtitle {
    color: white !important;
}

.feature-card,
.step-card,
.crypto-card,
.rate-card,
.calculator-card-premium {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-premium {
    background: #4c1d95 !important;
}

/* Dark mode styles */
body.dark-mode {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    color: #f0f0f0 !important;
}

body.dark-mode .navbar-premium {
    background: #1f1f1f !important;
    border-bottom: 1px solid #333 !important;
}

body.dark-mode .hero-premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
}

body.dark-mode .section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

body.dark-mode .section-subtitle {
    color: #d0d0d0 !important;
}

body.dark-mode .calculator-premium,
body.dark-mode .crypto-rates-section,
body.dark-mode .exchange-rates-section,
body.dark-mode .features-section,
body.dark-mode .how-it-works-section {
    background: rgba(45, 45, 45, 0.8) !important;
}

body.dark-mode .feature-card,
body.dark-mode .step-card,
body.dark-mode .crypto-card,
body.dark-mode .rate-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%) !important;
    color: #f0f0f0 !important;
    border: 1px solid #444 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

body.dark-mode .calculator-card-premium {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%) !important;
    color: #f0f0f0 !important;
    border: 1px solid #444 !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
}

body.dark-mode .footer-premium {
    background: #0f0f0f !important;
}

body.dark-mode .input-group-premium input,
body.dark-mode .input-group-premium select {
    background: #2a2a2a !important;
    color: #f0f0f0 !important;
    border: 2px solid #444 !important;
}

body.dark-mode .input-group-premium input:focus,
body.dark-mode .input-group-premium select:focus {
    border-color: #666 !important;
    box-shadow: 0 0 0 3px rgba(102, 102, 102, 0.2) !important;
}

body.dark-mode .comparison-table {
    background: #2a2a2a !important;
    border: 1px solid #444 !important;
}

body.dark-mode .comparison-row {
    background: #333 !important;
    color: #f0f0f0 !important;
    border-bottom: 1px solid #444 !important;
}

body.dark-mode .comparison-row.highlight {
    background: linear-gradient(135deg, #5626af 0%, #7c3aed 100%) !important;
    color: white !important;
}

body.dark-mode .feature-title,
body.dark-mode .step-title {
    color: #ffffff !important;
}

body.dark-mode .feature-description,
body.dark-mode .step-description {
    color: #d0d0d0 !important;
}

body.dark-mode .crypto-price .price {
    color: #ffffff !important;
}

body.dark-mode .crypto-price .change.positive {
    color: #4ade80 !important;
}

body.dark-mode .crypto-price .change.negative {
    color: #f87171 !important;
}

body.dark-mode .rate-info .rate-text {
    color: #ffffff !important;
}

body.dark-mode .rate-update {
    color: #ffffff !important;
    background: rgba(45, 45, 45, 0.8) !important;
}

body.dark-mode .rate-text {
    color: #ffffff !important;
    background: rgba(45, 45, 45, 0.9) !important;
}

.live-indicator:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--gray-800);
}

body.dark-mode .live-indicator {
    background: var(--white) !important;
    color: var(--gray-800) !important;
    box-shadow: var(--shadow-lg) !important;
}

body.dark-mode .live-indicator:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl) !important;
    color: var(--gray-800) !important;
}

body.dark-mode .pulse-dot {
    background: #22c55e !important;
}

body.dark-mode .nav-link {
    color: #f0f0f0 !important;
}

body.dark-mode .nav-link:hover {
    color: #fe782d !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .floating-contact-btn i {
        font-size: 20px;
    }
    
    .dark-mode-toggle {
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    

}
    
    /* Button mobile improvements */
    .btn {
        font-size: 16px;
        padding: 12px 24px;
        min-height: 48px;
    }
    
    /* Form mobile improvements */
    .form-control {
        font-size: 16px;
        padding: 12px 16px;
        min-height: 48px;
    }
}

@media (max-width: 575.98px) {
    /* Extra small devices */
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .calculator-container {
        padding: 15px;
    }
    
    .team-card {
        padding: 20px 15px;
    }
    
    .member-photo {
        width: 150px;
        height: 150px;
    }
}

:root {
    --primary-purple: #5626af;
    --primary-orange: #fe782d;
    --dark-blue: #0f1419;
    --light-blue: #f8fafc;
    --success-green: #10b981;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-2xl: 32px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    margin-top: 80px;
}

/* Navigation */
.navbar-premium {
    background: #5626af !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    transition: var(--transition-normal);
    z-index: 1000;
    padding: 1.5rem 0;
}

.navbar-premium.scrolled, .navbar-premium.active, .navbar-premium.sticky {
    background: #5626af !important;
    box-shadow: 0 2px 8px rgba(86,38,175,0.08);
}

.navbar-premium .navbar-brand img {
    transition: var(--transition-fast);
    height: 28px;
    width: auto;
    max-width: 100px;
}

.navbar-premium .navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-premium .nav-link {
    font-family: 'Montserrat', 'Poppins', 'Nunito', 'Inter', Arial, sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    font-size: 1.08rem;
    color: white;
    margin: 0 1rem;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-premium .nav-link:hover {
    color: var(--secondary-color);
}

.navbar-premium .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-premium .nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    margin-left: 0.5rem;
}

.btn-nav.secondary {
    color: var(--gray-800);
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-nav.secondary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-nav.primary {
    color: var(--white);
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-nav.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero-premium {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(168, 85, 247, 0.2) 0%, transparent 50%);
    animation: meshFloat 10s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-2xl);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    animation: slideInUp 0.8s ease-out;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.text-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-premium.primary {
    background: var(--white);
    color: var(--gray-800);
    box-shadow: var(--shadow-lg);
}

.btn-premium.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--gray-800);
}

.btn-premium.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-premium.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: var(--white);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-premium.primary:hover .btn-shine {
    left: 100%;
}

.social-proof {
    animation: slideInUp 0.8s ease-out 1s both;
}

.customer-avatars {
    display: flex;
    align-items: center;
    gap: -0.5rem;
    margin-bottom: 1rem;
}

.customer-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -0.5rem;
    transition: var(--transition-fast);
}

.customer-avatars img:hover {
    transform: scale(1.1);
    z-index: 10;
}

.more-customers {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: -0.5rem;
    backdrop-filter: blur(10px);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 10;
    animation: slideInRight 1s ease-out;
}

.phone-mockup {
    position: relative;
    margin: 0 auto;
    max-width: 320px;
}

.phone-frame {
    background: var(--gray-900);
    border-radius: 40px;
    padding: 8px;
    box-shadow: var(--shadow-2xl);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 6px;
    background: var(--gray-700);
    border-radius: 3px;
}

.phone-screen {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    height: 640px;
    position: relative;
}

.app-interface {
    padding: 1.5rem;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.indicators {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.app-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.app-nav h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    background: var(--white);
    color: var(--gray-800);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.transfer-widget {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.amount-row {
    margin-bottom: 1rem;
}

.currency-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.currency-block:hover {
    border-color: var(--primary-purple);
}

.flag-container {
    font-size: 2rem;
}

.amount-input {
    flex: 1;
}

.currency-code {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    display: block;
    margin-bottom: 0.25rem;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.exchange-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
}

.exchange-line {
    width: 100%;
    height: 2px;
    background: var(--gray-300);
    position: relative;
    margin-bottom: 0.75rem;
}

.rate-pulse {
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ratePulse 2s ease-in-out infinite;
}

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

.exchange-rate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(86, 38, 175, 0.05);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-lg);
}

.rate-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.rate-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
}

.rate-change.positive {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
}

.fee-breakdown {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.fee-item:last-child {
    margin-bottom: 0;
}

.fee-item.highlight {
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--border-radius-md);
    margin-top: 0.5rem;
}

.fee-label {
    color: var(--gray-600);
}

.fee-value {
    font-weight: 600;
    color: var(--gray-900);
}

.fee-value.savings {
    color: var(--success-green);
}

.send-button {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    cursor: pointer;
}

.send-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    animation: floatCard 6s ease-in-out infinite;
    z-index: 5;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: -15%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.notification-card,
.crypto-widget,
.speed-badge {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.notification-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.notification-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    color: var(--gray-900);
    display: block;
    font-size: 0.875rem;
}

.location {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.success-badge {
    width: 24px;
    height: 24px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.notification-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.action {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.875rem;
}

.time {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.crypto-icon {
    font-size: 1.5rem;
    color: #f7931a;
}

.crypto-name {
    font-weight: 600;
    color: var(--gray-900);
}

.crypto-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.crypto-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.crypto-change.positive {
    color: var(--success-green);
}

.speed-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.speed-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.speed-text {
    display: flex;
    flex-direction: column;
}

.main-text {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.875rem;
}

.sub-text {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Calculator Section */
.calculator-premium {
    background: #f5f3ff !important; /* light lavender to match brand */
    position: relative;
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #764ba2;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.calculator-card-premium {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.calculator-tabs {
    display: flex;
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    padding: 0.25rem;
    margin-bottom: 2rem;
}

.tab {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    color: var(--gray-600);
    transition: var(--transition-fast);
    cursor: pointer;
}

.tab.active {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: var(--shadow-sm);
}

.input-group-premium {
    position: relative;
}

.input-group-premium label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.input-wrapper {
    display: flex;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-fast);
}

.input-wrapper:focus-within {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(86, 38, 175, 0.1);
}

.currency-select {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    min-width: 120px;
}

.flag-img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.currency-select select {
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.875rem;
    outline: none;
}

.amount-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    outline: none;
}

.amount-input::placeholder {
    color: var(--gray-400);
    font-weight: 500;
}

.swap-button-premium {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.swap-button-premium:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.rate-display-premium {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(86, 38, 175, 0.05);
    border-radius: var(--border-radius-lg);
}

.rate-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.rate-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #5626af;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rate-update {
    font-size: 0.75rem;
    color: #5626af;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.comparison-table {
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
}

.comparison-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 0.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.comparison-row.highlight {
    border-color: var(--primary-purple);
    background: rgba(86, 38, 175, 0.02);
}

.provider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--gray-900);
}

.provider-logo {
    width: 24px;
    height: 24px;
}

.bank-icon {
    font-size: 1.25rem;
}

.fee,
.total {
    font-weight: 600;
    color: var(--gray-900);
}

.savings-highlight {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--border-radius-md);
}

.savings-text {
    font-weight: 700;
    color: var(--success-green);
    font-size: 1.125rem;
}

.calculator-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-premium.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Page Header Styles */
.page-header-premium {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.page-intro {
    color: var(--white);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.page-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.page-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-group {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.hero-image-about {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.floating-testimonial {
    position: absolute;
    bottom: -20px;
    right: -20px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    max-width: 300px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-weight: 600;
    color: var(--gray-900);
    display: block;
    font-size: 0.875rem;
}

.customer-location {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.rating {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin: 0;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
}

.mission-points {
    margin-top: 2rem;
}

.mission-point {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.point-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--gray-600);
    margin: 0;
}

.mission-visual {
    position: relative;
}

.world-map {
    position: relative;
}

.map-image {
    width: 100%;
    border-radius: var(--border-radius-xl);
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.connection-point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.point-1 {
    top: 30%;
    left: 20%;
}

.point-2 {
    bottom: 40%;
    right: 25%;
}

.point-3 {
    bottom: 30%;
    right: 35%;
}

.location {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    color: var(--gray-900);
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.member-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .member-photo {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--gray-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section-premium {
    background: var(--gray-100);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-2xl);
    padding: 3rem;
    color: var(--white);
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

/* Footer */
.footer-premium {
    background: var(--gray-900);
    color: var(--white);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-divider {
    border-color: var(--gray-700);
    margin: 2rem 0;
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .customer-avatars {
        justify-content: center;
    }
    
    .phone-mockup {
        max-width: 280px;
    }
    
    .floating-card {
        display: none;
    }
    
    .calculator-card-premium {
        padding: 1.5rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .swap-button-premium {
        margin: 1rem auto;
    }
    
    .page-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .mission-point {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .floating-testimonial {
        position: static;
        margin-top: 2rem;
    }
    
    .connection-point {
        position: static;
        justify-content: center;
        margin: 1rem;
    }
    
    .cta-card {
        padding: 2rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

/* Services Page Styles */
.service-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.services-visual {
    position: relative;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-preview {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.8s ease-out;
}

.service-preview.bank { animation-delay: 0.2s; }
.service-preview.mobile { animation-delay: 0.4s; }
.service-preview.cash { animation-delay: 0.6s; }

.service-preview .service-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-preview .service-info h4 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.service-preview .service-info p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.875rem;
}

.service-time {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.services-grid {
    padding: 80px 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-purple);
}

.service-card.featured {
    border-color: var(--primary-purple);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-icon-large {
    font-size: 3rem;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin: 0;
}

.service-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--gray-700);
}

.feature i {
    color: var(--success-green);
    font-size: 1.125rem;
}

.service-countries {
    margin-bottom: 2rem;
}

.service-countries h5 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.country-flags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.country {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.live-rates-section {
    padding: 80px 0;
}

.rate-update-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #5626af;
    font-size: 0.875rem;
    font-weight: 600;
}

.rates-grid {
    max-width: 800px;
    margin: 0 auto;
}

.rate-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.rate-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.rate-header .flag {
    font-size: 1.25rem;
}

.rate-header .arrow {
    color: var(--primary-purple);
    font-weight: 700;
}

.rate-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.rate-change {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
}

.rate-change.positive {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
}

.rate-change.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.fee-summary {
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.fee-row:last-child {
    margin-bottom: 0;
}

.fee-row.total {
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-300);
    font-weight: 700;
    font-size: 1rem;
}

.fee-row.highlight {
    background: rgba(16, 185, 129, 0.05);
    padding: 0.75rem;
    border-radius: var(--border-radius-md);
    margin-top: 0.5rem;
    font-weight: 700;
    color: var(--success-green);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .service-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-cards {
        gap: 0.75rem;
    }
    
    .service-preview {
        padding: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .country-flags {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .rate-header {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
}

/* Contact Page Styles */
.contact-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: center;
}

.contact-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.contact-methods {
    padding: 80px 0;
}

.contact-card {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-purple);
}

.contact-card.primary-contact {
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.info-item .label {
    color: var(--gray-600);
    font-weight: 500;
}

.info-item .value {
    color: var(--gray-900);
    font-weight: 600;
}

.faq-section {
    padding: 80px 0;
}

.faq-accordion {
    max-width: 100%;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--gray-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    transition: var(--transition-fast);
    color: var(--primary-purple);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    border-top: 1px solid var(--gray-200);
}

.faq-content {
    padding: 1.5rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

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

.contact-form .form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.form-control-premium {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--gray-900);
    transition: var(--transition-fast);
    width: 100%;
}

.form-control-premium:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(86, 38, 175, 0.1);
    outline: none;
}

.form-control-premium::placeholder {
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .contact-highlights {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-actions {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .input-wrapper {
        flex-direction: column;
    }
    
    .currency-select {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }
}

/* Live Crypto Rates Section */
.crypto-rates-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.crypto-rates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="10" r="8" fill="url(%23a)"/><circle cx="80" cy="10" r="6" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.market-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-green);
}

.status-indicator.live {
    animation: pulse 2s infinite;
}

.status-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.crypto-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.crypto-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.crypto-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.crypto-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.crypto-symbol {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.crypto-price {
    text-align: right;
}

.crypto-price .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.crypto-price .change {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.change.positive {
    color: var(--success-green);
    background: rgba(16, 185, 129, 0.1);
}

.change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.change.neutral {
    color: var(--gray-600);
    background: rgba(107, 114, 128, 0.1);
}

/* Exchange Rates Section */
.exchange-rates-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.rate-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.rate-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.currency-pair {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.currency-pair .flag {
    font-size: 24px;
}

.currency-pair .from,
.currency-pair .to {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 16px;
}

.currency-pair .arrow {
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 18px;
}

.rate-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rate-value .rate {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

/* News Slider Section */
.news-section {
    padding: 100px 0;
    background: var(--dark-blue);
    color: white;
}

.news-slider-container {
    position: relative;
    margin-top: 60px;
}

.news-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.news-slider::-webkit-scrollbar {
    display: none;
}

.news-item {
    min-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.news-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 16px 0 12px 0;
    line-height: 1.4;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.news-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.news-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-normal);
    backdrop-filter: blur(20px);
}

.news-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.features-grid {
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 32px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.feature-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.testimonials-grid {
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating .stars {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

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

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.author-location {
    font-size: 14px;
    color: var(--gray-600);
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: white;
}

.steps-container {
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    color: white;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.step-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.step-visual > div {
    font-size: 24px;
}

.arrow-flow {
    color: var(--primary-purple);
    font-weight: bold;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
}

.trust-features {
    margin-top: 30px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.trust-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Dark mode adjustments */
.dark-mode .trust-card {
    background: rgba(255, 255, 255, 0.05);
}

.dark-mode .trust-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .crypto-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .rates-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .news-item {
        min-width: 320px;
    }
    
    .features-grid .col-lg-4 {
        margin-bottom: 32px;
    }
    
    .testimonials-grid .col-lg-4 {
        margin-bottom: 32px;
    }
    
    .step-visual {
        flex-direction: column;
        gap: 8px;
    }
    
    .arrow-flow {
        transform: rotate(90deg);
    }
}

/* Footer Section */
.footer-section {
    background: var(--dark-blue);
    color: white;
    padding: 80px 0 40px 0;
    position: relative;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: transparent;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-list a:hover {
    color: var(--primary-orange);
    padding-left: 4px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 16px;
}

.btn-footer-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-normal);
    margin-bottom: 20px;
}

.btn-footer-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-item i {
    width: 16px;
    color: var(--primary-orange);
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 40px 0 30px 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-certifications {
    display: flex;
    justify-content: flex-end;
}

.certification-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 30px 0;
    }
    
    .footer-certifications {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .certification-badges {
        justify-content: flex-start;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

.navbar-premium .navbar-brand img, .footer-logo {
    height: 28px !important;
    max-width: 90px !important;
    width: auto !important;
}

.page-header-premium, .hero-gap, .hero-spacer, .hero-section, .hero-gap-fix {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.calculator-actions .btn-premium.primary,
.calculator-actions .btn-primary {
    animation: heartbeat 1.5s infinite;
}

/* Light theme for send button */
.send-animate {
    animation: heartbeat 1.5s infinite !important;
    border: 2px solid #764ba2 !important;
    box-shadow: 0 4px 24px 0 rgba(118, 75, 162, 0.10), 0 1.5px 4px 0 rgba(86, 38, 175, 0.08);
    background: #fff !important;
    color: #5626af !important;
    font-weight: 700;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.send-animate:hover, .send-animate:focus {
    background: #f3eaff !important;
    color: #5626af !important;
    border-color: #5626af !important;
}

/* Dark theme for send button */
body.dark-mode .send-animate {
    background: #232136 !important;
    color: #fff !important;
    border: 2px solid #a78bfa !important;
    box-shadow: 0 4px 24px 0 rgba(167, 139, 250, 0.10), 0 1.5px 4px 0 rgba(86, 38, 175, 0.08);
}
body.dark-mode .send-animate:hover, body.dark-mode .send-animate:focus {
    background: #312e81 !important;
    color: #fff !important;
    border-color: #a78bfa !important;
}

/* Ensure calculator card and other cards are readable in both themes */
body.dark-mode .calculator-card-premium,
body.dark-mode .feature-card,
body.dark-mode .step-card,
body.dark-mode .crypto-card,
body.dark-mode .rate-card {
    background: linear-gradient(135deg, #232136 0%, #312e81 100%) !important;
    color: #fff !important;
    border: 1px solid #444 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

body.dark-mode .calculator-card-premium input,
body.dark-mode .calculator-card-premium select {
    background: #232136 !important;
    color: #fff !important;
    border: 2px solid #444 !important;
}
body.dark-mode .calculator-card-premium input:focus,
body.dark-mode .calculator-card-premium select:focus {
    border-color: #a78bfa !important;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2) !important;
}

body.dark-mode .footer-premium {
    background: #181825 !important;
    color: #fff !important;
}
body.dark-mode .footer-links a {
    color: #a1a1aa !important;
}
body.dark-mode .footer-links a:hover {
    color: #fff !important;
}
body.dark-mode .section-title,
body.dark-mode .section-subtitle {
    color: #fff !important;
}

.currency-pair {
    font-size: 1.25rem;
    font-weight: 700;
    color: #5626af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

body.dark-mode .currency-pair {
    color: #a78bfa !important;
}

.feature-icon {
    font-size: 2.5rem !important;
    color: #fe782d !important;
    margin-bottom: 0.5rem;
}

.section-title, .section-header .section-title {
    color: #222 !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.section-subtitle, .section-header .section-subtitle {
    color: #5626af !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.calculator-card, .calculator-section .card, .calculator-section .calculator-box {
    background: #fff !important;
    box-shadow: 0 4px 24px 0 rgba(86, 38, 175, 0.08), 0 1.5px 4px 0 rgba(86, 38, 175, 0.06);
    border-radius: 1.5rem !important;
    border: none !important;
}
body.dark-mode .calculator-card, body.dark-mode .calculator-section .card, body.dark-mode .calculator-section .calculator-box {
    background: #181828 !important;
    box-shadow: 0 4px 24px 0 rgba(86, 38, 175, 0.18), 0 1.5px 4px 0 rgba(86, 38, 175, 0.12);
}

.calculator-section, .see-how-much-section {
    background: #fffbe9 !important; /* soft cream */
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .calculator-premium {
        padding: 2.5rem 0.5rem !important;
        border-radius: 1.5rem !important;
    }
    .calculator-wrapper {
        padding: 0 !important;
    }
    .calculator-card-premium {
        padding: 0.8rem 0.5rem !important;
        border-radius: 1rem !important;
        box-shadow: 0 2px 12px 0 rgba(86, 38, 175, 0.08);
        margin: 0 0.25rem;
    }
    .calculator-header {
        margin-bottom: 2rem !important;
    }
    .calculator-tabs {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 0.7rem !important;
    }
    .tab {
        font-size: 0.95rem !important;
        padding: 0.4rem 0.5rem !important;
    }
    .input-group-premium label {
        font-size: 0.92rem !important;
        margin-bottom: 0.3rem !important;
    }
    .input-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.3rem 0.5rem !important;
    }
    .currency-select {
        min-width: 80px !important;
        padding: 0.3rem 0.5rem !important;
        font-size: 0.95rem !important;
    }
    .amount-input {
        font-size: 1.05rem !important;
        padding: 0.3rem 0.5rem !important;
    }
    .swap-button-premium {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.95rem !important;
        margin: 0.7rem auto !important;
    }
    .calculator-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .send-animate {
        width: 100%;
        max-width: 320px;
        font-size: 1.1rem;
        padding: 0.85rem 0;
    }
}

.phone-speaker {
    width: 60px;
    height: 6px;
    background: #222;
    border-radius: 3px;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.15;
}
.phone-camera {
    width: 12px;
    height: 12px;
    background: #222;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    left: 24px;
    opacity: 0.12;
}
.app-balance-card {
    background: linear-gradient(90deg, #f3e8ff 0%, #e0e7ff 100%);
    border-radius: 1.25rem;
    padding: 1.1rem 1.5rem 0.9rem 1.5rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 8px 0 rgba(86, 38, 175, 0.06);
    text-align: center;
}
.balance-label {
    font-size: 0.95rem;
    color: #7c3aed;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.balance-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #22223b;
    margin-bottom: 0.1rem;
}
.balance-currency {
    font-size: 1rem;
    color: #a78bfa;
    font-weight: 700;
}
.app-tabs {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}
.app-tabs .tab {
    flex: 1;
    background: #f3f4f6;
    border: none;
    border-radius: 0.75rem;
    padding: 0.7rem 0.2rem;
    font-weight: 700;
    color: #7c3aed;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.app-tabs .tab.active {
    background: #fff;
    color: #22223b;
    box-shadow: 0 2px 8px 0 rgba(86, 38, 175, 0.08);
}
.app-send-form {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.2rem 0.7rem 1.2rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 1px 4px 0 rgba(86, 38, 175, 0.04);
}
.send-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}
.send-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #e0e7ff;
}
.send-details {
    flex: 1;
}
.send-to {
    font-size: 0.95rem;
    color: #22223b;
    font-weight: 600;
}
.send-name {
    color: #7c3aed;
    font-weight: 700;
}
.send-country {
    font-size: 0.85rem;
    color: #a78bfa;
}
.send-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #22223b;
}
.send-action-btn {
    width: 100%;
    background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 100%);
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    padding: 0.7rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.2rem;
    box-shadow: 0 2px 8px 0 rgba(86, 38, 175, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}
.send-action-btn:hover {
    background: linear-gradient(90deg, #a78bfa 0%, #7c3aed 100%);
}
.app-quick-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}
.quick-action {
    flex: 1;
    background: #f3f4f6;
    border: none;
    border-radius: 0.75rem;
    padding: 0.6rem 0.2rem;
    font-size: 0.95rem;
    color: #7c3aed;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.quick-action i {
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
}
.quick-action:hover {
    background: #e0e7ff;
    color: #22223b;
}
.app-transactions {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.2rem 0.7rem 1.2rem;
    box-shadow: 0 1px 4px 0 rgba(86, 38, 175, 0.04);
}
.transactions-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 0.7rem;
}
.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.transaction-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #f3f4f6;
    border-radius: 0.75rem;
    padding: 0.5rem 0.7rem;
}
.transaction-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e0e7ff;
}
.transaction-info {
    flex: 1;
}
.transaction-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #22223b;
}
.transaction-type {
    font-size: 0.85rem;
    color: #a78bfa;
}
.transaction-amount {
    font-size: 1.1rem;
    font-weight: 700;
}
.transaction-amount.positive {
    color: #22c55e;
}
.transaction-amount.negative {
    color: #ef4444;
}

.glassmorph {
    background: rgba(255,255,255,0.7) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
}
.phone-profile {
    position: absolute;
    top: 18px;
    right: 24px;
    z-index: 2;
}
.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(86,38,175,0.10);
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.profile-avatar:hover + .profile-dropdown, .profile-dropdown:hover {
    display: block;
}
.profile-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(86,38,175,0.10);
    padding: 0.5rem 0.75rem;
    min-width: 120px;
    z-index: 10;
}
.profile-dropdown button {
    background: none;
    border: none;
    color: #5626af;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.4rem 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}
.profile-dropdown button:hover {
    color: #a78bfa;
}
.balance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}
.currency-switcher select {
    background: #f3f4f6;
    border: none;
    border-radius: 0.5rem;
    padding: 0.2rem 0.7rem;
    font-size: 1rem;
    color: #7c3aed;
    font-weight: 700;
    outline: none;
    transition: background 0.2s;
}
.rewards-badge {
    display: inline-block;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e42 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 0.75rem;
    padding: 0.25rem 0.8rem;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px 0 rgba(251,191,36,0.10);
}
.notification-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    margin-left: 6px;
    position: relative;
}
.pulse {
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
.status-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 0.5rem;
    padding: 0.18rem 0.7rem;
    margin-left: 0.5rem;
    margin-top: 0.1rem;
}
.status-badge.completed {
    background: #22c55e;
    color: #fff;
}
.status-badge.pending {
    background: #fbbf24;
    color: #fff;
}
.status-badge.failed {
    background: #ef4444;
    color: #fff;
}
.shine {
    position: relative;
    overflow: hidden;
}
.shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.1) 100%);
    transform: skewX(-20deg);
    animation: shine 2.5s infinite;
}
@keyframes shine {
    0% { left: -75%; }
    100% { left: 125%; }
}
.animate-count {
    animation: countUp 1.2s ease-in;
}
@keyframes countUp {
    0% { opacity: 0; transform: translateY(20px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
    .navbar-premium .nav-link {
        font-size: 0.98rem !important;
        padding: 0.5rem 0.7rem !important;
    }
    .section-title, .section-header .section-title {
        font-size: 1.35rem !important;
        margin-bottom: 0.3rem !important;
    }
    .section-subtitle, .section-header .section-subtitle {
        font-size: 0.98rem !important;
        margin-bottom: 1.1rem !important;
    }
    .calculator-header .section-title {
        font-size: 1.15rem !important;
    }
    .calculator-header .section-subtitle {
        font-size: 0.95rem !important;
    }
    .send-animate, .send-action-btn {
        text-align: center !important;
        justify-content: center !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .section-title, .section-header .section-title {
        margin-top: 0.5rem !important;
        margin-bottom: 0.2rem !important;
    }
    .section-subtitle, .section-header .section-subtitle {
        margin-top: 0 !important;
        margin-bottom: 0.7rem !important;
    }
    .calculator-header {
        margin-bottom: 1rem !important;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .features-section, .how-it-works-section, .exchange-rates-section, .calculator-premium {
        padding-top: 1.2rem !important;
        padding-bottom: 1.2rem !important;
    }
}

@media (max-width: 768px) {
    .hero-actions .btn-premium.primary {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 1rem auto !important;
        text-align: center !important;
    }
    .hero-actions .btn-premium.secondary {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .btn-premium, .send-animate, .send-action-btn {
        font-size: 0.98rem !important;
        padding: 0.65rem 0 !important;
        border-radius: 0.7rem !important;
        min-height: 38px !important;
    }
    .hero-actions .btn-premium.primary, .hero-actions .btn-premium.secondary {
        margin-bottom: 0.7rem !important;
    }
}

.step-card.pro {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px 0 rgba(86, 38, 175, 0.07);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #f3f4f6;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.step-card.pro:hover {
    box-shadow: 0 8px 32px 0 rgba(86, 38, 175, 0.13);
    transform: translateY(-4px) scale(1.02);
}
.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 2px 8px 0 rgba(86, 38, 175, 0.10);
}
.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #5626af;
    margin-bottom: 0.5rem;
}
.step-description {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 1.1rem;
}
.step-visual-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}
.step-emoji {
    font-size: 1.5rem;
    background: #f3f4f6;
    border-radius: 50%;
    padding: 0.4rem 0.6rem;
    box-shadow: 0 1px 4px 0 rgba(86, 38, 175, 0.04);
}
.arrow-flow {
    font-size: 1.2rem;
    color: #a78bfa;
    font-weight: 700;
}
@media (max-width: 768px) {
    .step-card.pro {
        padding: 1rem 0.7rem 0.7rem 0.7rem;
        min-height: 160px;
    }
    .step-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .step-title {
        font-size: 1rem;
    }
    .step-description {
        font-size: 0.92rem;
    }
    .step-emoji {
        font-size: 1.1rem;
        padding: 0.25rem 0.4rem;
    }
    .arrow-flow {
        font-size: 1rem;
    }
}

.feature-card.pro {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px 0 rgba(86, 38, 175, 0.07);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #f3f4f6;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.feature-card.pro:hover {
    box-shadow: 0 8px 32px 0 rgba(86, 38, 175, 0.13);
    transform: translateY(-4px) scale(1.02);
}
.feature-icon.pro {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fe782d 0%, #764ba2 100%);
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 2px 8px 0 rgba(118, 75, 162, 0.10);
}
.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #5626af;
    margin-bottom: 0.5rem;
}
.feature-description {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .feature-card.pro {
        padding: 1rem 0.7rem 0.7rem 0.7rem;
        min-height: 160px;
    }
    .feature-icon.pro {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .feature-title {
        font-size: 1rem;
    }
    .feature-description {
        font-size: 0.92rem;
    }
}