/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary-blue: #004c98;
    --primary-dark: #231a20;
    
    /* Secondary Colors */
    --accent-yellow: #FFFF00;
    --accent-light-blue: #89DBEF;
    --accent-orange: #EC5D00;
    --accent-gray: #777171;
    --accent-red: #CE353C;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #495057;
    --black: #000000;
    
    /* Typography */
    --font-family: 'Roboto', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --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);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--primary-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Prevent horizontal scroll on all elements */
* {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-2xl);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: rgba(0, 76, 152, 0.1);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 76, 152, 0.3);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

.btn-full-width {
    width: 100%;
}

.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--medium-gray) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: none !important;
    transform: none !important;
    animation: none !important;
}

.btn:disabled:hover,
.btn.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ===== PULSING ANIMATION FOR APPLICATION BUTTONS ===== */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 76, 152, 0.3), 0 0 0 0 rgba(0, 76, 152, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 76, 152, 0.4), 0 0 0 10px rgba(0, 76, 152, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 76, 152, 0.3), 0 0 0 20px rgba(0, 76, 152, 0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 76, 152, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 76, 152, 0.6), 0 0 30px rgba(0, 76, 152, 0.4);
    }
}

/* Apply pulsing animation to application buttons */
.btn-primary[onclick*="openApplication"] {
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

.btn-primary[onclick*="openApplication"]:hover {
    animation: glow 1.5s ease-in-out infinite;
    transform: translateY(-3px) scale(1.02);
}

/* Alternative: Add pulsing class manually */
.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

.btn-pulse:hover {
    animation: glow 1.5s ease-in-out infinite;
    transform: translateY(-3px) scale(1.02);
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .btn-pulse,
    .btn-primary[onclick*="openApplication"] {
        animation: none;
    }
    
    .btn-pulse:hover,
    .btn-primary[onclick*="openApplication"]:hover {
        animation: none;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 76, 152, 0.4);
    }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav {
    padding: var(--spacing-md) 0;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    font-weight: 500;
    font-size: var(--font-size-sm);
    color: var(--primary-dark);
    padding: var(--spacing-sm) var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 76, 152, 0.1);
}

/* Hero with banner background */
.hero-with-banner {
    background-image: url('../img/Dron-2-2-white.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 72px;
    position: relative;
}

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

.hero-with-banner .container {
    position: relative;
    z-index: 2;
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
    padding-left: 120px;
    padding-right: var(--spacing-md);
}

@media (min-width: 1400px) {
    .hero-with-banner .container {
        padding-left: 200px;
    }
}

@media (max-width: 1024px) {
    .hero-with-banner .container {
        padding-left: 60px;
    }
}

/* Tablet and mobile - use mobile banner */
@media (max-width: 1024px) {
    .hero-with-banner {
        background-image: url('../img/mob.jpg') !important;
        background-size: 100% auto !important;
        background-position: top center !important;
        min-height: auto;
    }
    
    .hero-with-banner .container {
        margin-left: 0;
        margin-right: auto;
}

.hero-content {
        padding: 20px 0 var(--spacing-xl) 0;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .hero-text {
        gap: var(--spacing-sm);
        text-align: left;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 10px;
        text-align: left;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 8px;
        text-align: left;
    }
    
    .hero-subdescription {
        font-size: 14px;
        margin-bottom: 12px;
        text-align: left;
    }
    
    .hero-actions {
        justify-content: flex-start;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 500px;
    padding: var(--spacing-3xl) 0;
}

@media (max-width: 767px) {
    .hero-content {
        min-height: 30vh !important;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    gap: var(--spacing-xl);
    text-align: left;
}

.hero-text * {
    margin-top: 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
    text-align: left;
}

.hero-description {
    font-size: var(--font-size-lg);
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.hero-description strong {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    display: inline-block;
}

.hero-subdescription {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.hero-subdescription strong {
    font-weight: 700;
    color: var(--color-primary);
}

.hero-subdescription-number {
    font-weight: 700;
    color: #1a1a1a;
}

.hero-subdescription-text {
    font-weight: 400;
    color: #2c2c2c;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: 0;
    align-items: flex-start;
    justify-content: flex-start;
}

.btn-hero {
    display: inline-block;
    font-size: var(--font-size-lg);
    font-weight: 600;
    padding: 16px 48px;
    background: #2b4c8f;
    color: var(--white);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(43, 76, 143, 0.3);
    text-align: center;
}

.btn-hero:hover {
    background: #1e3a6f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 76, 143, 0.4);
}

.btn-large {
    font-size: var(--font-size-lg);
    padding: var(--spacing-lg) var(--spacing-2xl);
    min-width: 240px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    margin: 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(137, 219, 239, 0.2) 30%, rgba(0, 76, 152, 0.05) 70%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 76, 152, 0.1);
}

.features-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 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(0,76,152,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-lg);
    box-shadow: 0 12px 40px rgba(0, 76, 152, 0.12);
    border: 1px solid rgba(0, 76, 152, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue), var(--accent-orange));
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 76, 152, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    width: 300px;
    height: 300px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 76, 152, 0.2);
    border-color: transparent;
}

.feature-card-icon {
    display: none;
}



.feature-card-content {
    flex: 1;
}

.feature-card-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card-content h3::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-light-blue));
    border-radius: 2px;
}

.feature-card-content p {
    color: var(--dark-gray);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-content h3 {
    transform: translateY(-2px);
}

.feature-card:hover .feature-card-content p {
    opacity: 1;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner {
    max-width: 100%;
    height: auto;
}



.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(137, 219, 239, 0.1);
    animation: float 6s ease-in-out infinite;
}

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

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

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

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: 80px 0;
    margin: 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(137, 219, 239, 0.2) 30%, rgba(0, 76, 152, 0.05) 70%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 76, 152, 0.1);
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-3xl);
    align-items: start;
    margin-bottom: var(--spacing-2xl);
}

.gif-placeholder {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-md);
    box-shadow: 0 12px 40px rgba(0, 76, 152, 0.12);
    border: 2px solid rgba(0, 76, 152, 0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.how-it-works-gif {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    display: block;
}

.gif-placeholder-content {
    text-align: center;
}

.gif-placeholder-icon {
    font-size: 80px;
    margin-bottom: var(--spacing-lg);
    animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px) rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: translateX(5px) rotate(5deg); }
}

.gif-placeholder-content p {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.step-item-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 8px 24px rgba(0, 76, 152, 0.1);
    border: 1px solid rgba(0, 76, 152, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
}

.step-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-light-blue));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.step-item-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(0, 76, 152, 0.15);
}

.step-item-card:hover::before {
    transform: scaleY(1);
}

.step-item-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 76, 152, 0.3);
}

.step-item-icon {
    display: none;
}

.step-item-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.4;
}

.step-bonus {
    display: inline-block;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    color: #059669;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--font-size-lg);
    margin-top: var(--spacing-sm);
    border: 2px solid rgba(34, 197, 94, 0.3);
}

/* ===== NEW STEPS LIST STYLES ===== */
.steps-list {
    max-width: 900px;
    margin: 0 auto var(--spacing-2xl);
}

.step-list-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 76, 152, 0.08);
    transition: all 0.3s ease;
}

.step-list-item:hover {
    box-shadow: 0 4px 16px rgba(0, 76, 152, 0.12);
    transform: translateX(4px);
}

.step-list-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 76, 152, 0.25);
}

.step-list-content {
    flex: 1;
}

.step-list-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.4;
}

.step-list-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin: var(--spacing-xs) 0 0 0;
    line-height: 1.5;
}

.app-download-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

/* Mobile: show badges, hide QR */
.app-badges-mobile {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.qr-code-wrapper-desktop {
    display: none;
}

/* Desktop: hide badges, show QR */
@media (min-width: 769px) {
    .app-badges-mobile {
        display: none;
    }
    
    .qr-code-wrapper-desktop {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
}

.app-store-badge {
    display: inline-block;
    transition: transform 0.2s ease;
}

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

.app-store-badge img {
    display: block;
    height: 40px;
    width: auto;
}

.qr-code-container {
    display: inline-block;
    padding: var(--spacing-xs);
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 76, 152, 0.15);
}

.qr-code-container canvas,
.qr-code-container > div {
    display: block;
}

#qrcode-how-it-works {
    width: 100px;
    height: 100px;
}

#qrcode-how-it-works canvas {
    display: block !important;
}

.qr-code-hint {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.cta-container.two-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ===== DEPOSITS SECTION ===== */
.deposits-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.deposit-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    justify-content: center;
    flex-wrap: nowrap;
}

.tab-btn {
    flex: 1;
    max-width: 300px;
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: rgba(0, 76, 152, 0.1);
    border: none;
    border-radius: var(--radius-xl);
    color: var(--primary-blue);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-family);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.tab-btn-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.tab-btn-subtitle {
    font-size: var(--font-size-sm);
    font-weight: 400;
    font-style: italic;
    opacity: 0.85;
    line-height: 1;
}

.tab-btn:hover {
    background: rgba(0, 76, 152, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 76, 152, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 76, 152, 0.3);
    transform: translateY(-2px);
}

.tab-btn.active .tab-btn-title,
.tab-btn.active .tab-btn-subtitle {
    color: var(--white);
    opacity: 1;
}

.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.tab-panel.active {
    display: block;
}

.deposit-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    box-shadow: 0 12px 40px rgba(0, 76, 152, 0.12);
    border: 1px solid rgba(0, 76, 152, 0.08);
}

.deposit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--medium-gray);
}

.deposit-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.deposit-rate-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.rate-label {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.rate-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #059669;
}

.deposit-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.deposit-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.deposit-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    flex: 1;
}

.feature-label {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    font-weight: 500;
}

.feature-value {
    font-size: var(--font-size-lg);
    color: var(--primary-dark);
    font-weight: 700;
}

.deposit-cta {
    margin-top: var(--spacing-xl);
}

/* NEW DEPOSIT LAYOUT STYLES */
.deposit-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--medium-gray);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.deposit-rate-inline {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.deposit-rate-inline .rate-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #059669;
    margin: 0;
}

.deposit-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.deposit-feature-block {
    background: var(--light-gray);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 76, 152, 0.1);
}

.deposit-feature-block:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-blue);
}

.feature-block-label {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.feature-block-value {
    font-size: var(--font-size-lg);
    color: var(--primary-dark);
    font-weight: 700;
    display: block;
}

.deposit-cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-2xl);
}

.deposit-cta-buttons .btn {
    flex: 1;
    max-width: 300px;
}

/* Tablet responsive (2 columns) */
@media (max-width: 1024px) and (min-width: 769px) {
    .deposit-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== CALCULATOR SECTION ===== */
.calculator-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-gray);
}

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

.calculator-tabs {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
    flex-wrap: nowrap;
}

.calc-tab-btn {
    flex: 1;
    max-width: 350px;
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: rgba(0, 76, 152, 0.1);
    border: none;
    border-radius: var(--radius-xl);
    color: var(--primary-blue);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-family);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.calc-tab-btn-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.calc-tab-btn-subtitle {
    font-size: var(--font-size-sm);
    font-weight: 400;
    font-style: italic;
    opacity: 0.85;
    line-height: 1;
}

.calc-tab-btn:hover {
    background: rgba(0, 76, 152, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 76, 152, 0.2);
}

.calc-tab-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 76, 152, 0.3);
    transform: translateY(-2px);
}

.calc-tab-btn.active .calc-tab-btn-title,
.calc-tab-btn.active .calc-tab-btn-subtitle {
    color: var(--white);
    opacity: 1;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 12px 40px rgba(0, 76, 152, 0.12);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.input-with-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.amount-input {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-family);
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.amount-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 76, 152, 0.1);
}

.currency {
    position: absolute;
    right: var(--spacing-lg);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-blue);
    pointer-events: none;
}

.slider {
    width: 100%;
    max-width: 100%;
    height: 8px;
    border-radius: var(--radius-md);
    background: var(--medium-gray);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    box-sizing: border-box;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: none;
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
}

.slider-labels,
.term-labels-calc {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-sm);
    padding: 0;
    min-height: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.slider-labels span,
.term-labels-calc span {
    font-size: var(--font-size-xs);
    color: var(--dark-gray);
    font-weight: 500;
    white-space: nowrap;
}

.term-labels-calc span {
    position: absolute;
    transform: translateX(-50%);
}

.term-labels-calc span:nth-child(1) {
    left: 0%;
    transform: translateX(0);
}

.term-labels-calc span:nth-child(2) {
    left: 33.33%;
}

.term-labels-calc span:nth-child(3) {
    left: 66.66%;
}

.term-labels-calc span:nth-child(4) {
    left: 100%;
    transform: translateX(-100%);
}

.term-value-display {
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(0, 76, 152, 0.05);
    border-radius: var(--radius-md);
}

.bonus-select {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-family);
    cursor: pointer;
    transition: all var(--transition-fast);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004c98' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right var(--spacing-md) center;
    background-size: 20px;
    padding-right: 3rem;
}

.bonus-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 76, 152, 0.1);
}

.base-rate-display {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: #059669;
    text-align: center;
    line-height: 1;
}

.input-hint {
    display: block;
    margin-top: var(--spacing-xs);
    font-size: var(--font-size-xs);
    color: var(--dark-gray);
}

.bonus-select {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--primary-dark);
    font-family: var(--font-family);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.bonus-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 76, 152, 0.1);
}

.base-rate-display,
.term-value-display {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(0, 76, 152, 0.05), rgba(0, 76, 152, 0.02));
    border: 2px solid rgba(0, 76, 152, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    box-sizing: border-box;
}

.calculator-results {
    display: flex;
    flex-direction: column;
}

.result-card-calc {
    background: linear-gradient(145deg, var(--light-gray) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 2px solid rgba(0, 76, 152, 0.1);
    height: 100%;
}

.result-card-calc h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.result-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--medium-gray);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-md);
}

.result-row.highlight {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 2px solid rgba(34, 197, 94, 0.3);
    padding: var(--spacing-md);
}

.result-row.highlight .result-value {
    color: #059669;
    font-size: var(--font-size-xl);
}

.result-label {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    font-weight: 500;
}

.result-value {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-dark);
}

.rate-info {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(0, 76, 152, 0.05);
    border-radius: var(--radius-md);
}

.rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
}

.rate-row.total {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 2px solid var(--primary-blue);
    font-weight: 700;
    color: var(--primary-dark);
}

.rate-row.total span:last-child {
    color: var(--primary-blue);
    font-size: var(--font-size-lg);
}

/* Ставка до оподаткування - с разделителем и жирным текстом */
.rate-row.before-tax {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
    color: var(--primary-dark);
}

.rate-row.before-tax span:last-child {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: var(--font-size-md);
}

/* Ставка після оподаткування - сероватая */
.rate-row.after-tax {
    color: #666;
}

.rate-row.after-tax span:last-child {
    color: #666;
}

.charity-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 165, 0, 0.05));
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 165, 0, 0.3);
    margin-bottom: var(--spacing-xl);
}

.charity-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.drone-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: droneFloat 3s ease-in-out infinite;
}

@keyframes droneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-2deg); }
    75% { transform: translateY(3px) rotate(2deg); }
}

.charity-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.charity-label {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    font-weight: 500;
}

.charity-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--accent-orange);
}

.calculator-cta {
    margin-top: var(--spacing-lg);
}

.calculator-disclaimer {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 165, 0, 0.1);
    border-left: 4px solid var(--accent-orange);
    border-radius: var(--radius-md);
}

.calculator-disclaimer p {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    line-height: 1.6;
}

.calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.input-group {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.input-group label {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
}

.slider-container {
    position: relative;
}

.slider-container input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: var(--radius-md);
    background: var(--medium-gray);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    margin: 12px 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: none;
    position: relative;
    z-index: 2;
    margin-top: -8px;
}

.slider-container input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
    margin-top: 0;
    transform: translateY(0);
}

.slider-container input[type="range"]::-moz-range-track {
    height: 8px;
    background: var(--medium-gray);
    border-radius: var(--radius-md);
    border: none;
}

.slider-value {
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-blue);
}



/* Term Labels for Slider */
.term-labels {
    position: relative;
    margin-top: var(--spacing-lg);
    padding: 0;
    height: auto;
}

.term-labels span {
    position: absolute;
    font-size: var(--font-size-xs);
    color: var(--dark-gray);
    line-height: 1.2;
    transform: translateX(-50%);
    white-space: nowrap;
}

.term-labels span:nth-child(1) {
    left: 0;
    transform: translateX(0);
}

.term-labels span:nth-child(2) {
    left: 33.33%;
}

.term-labels span:nth-child(3) {
    left: 66.66%;
}

.term-labels span:nth-child(4) {
    left: 100%;
    transform: translateX(-100%);
}

/* Term Select for Forms */
.term-select {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    color: var(--primary-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004c98' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right var(--spacing-md) center;
    background-size: 16px;
    padding-right: 3rem;
}

.term-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 76, 152, 0.1);
}

.term-select:hover {
    border-color: var(--primary-blue);
}

.result-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--medium-gray);
}

.main-payment {
    background: linear-gradient(135deg, rgba(0, 76, 152, 0.1), rgba(137, 219, 239, 0.1));
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border: 2px solid var(--primary-blue);
}

.main-payment span {
    font-size: var(--font-size-lg);
}

.main-payment strong {
    font-size: var(--font-size-2xl);
    color: var(--primary-blue);
    text-align: right;
    white-space: nowrap;
    min-width: 140px;
}

.result-details {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.result-details .result-item {
    padding: var(--spacing-xs) 0;
    font-size: var(--font-size-sm);
    border-bottom: 1px solid rgba(0, 76, 152, 0.1);
}

.result-details .result-item span:last-child {
    text-align: right;
    white-space: nowrap;
    min-width: 120px;
    font-weight: 600;
}

.result-details .result-item:last-child {
    border-bottom: none;
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 2px solid var(--primary-blue);
    background: rgba(0, 76, 152, 0.05);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.result-details .result-item.total strong {
    color: var(--primary-blue);
    font-size: var(--font-size-lg);
}

.calculator-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
}

.calculator-disclaimer {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-orange);
}

.calculator-disclaimer p {
    font-size: var(--font-size-xs);
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.4;
}

.result-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-dark);
    text-align: center;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--medium-gray);
}

.result-item:last-of-type {
    border-bottom: none;
    margin-bottom: var(--spacing-lg);
}

.result-item strong {
    font-size: var(--font-size-lg);
    color: var(--primary-blue);
    text-align: right;
    white-space: nowrap;
    min-width: 120px;
}

/* ===== CHARITY SECTION ===== */
.charity-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 30%, #e6f4ff 70%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.charity-section::before {
    content: '🇺🇦';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 200px;
    opacity: 0.05;
    pointer-events: none;
}

.charity-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.charity-main-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    box-shadow: 0 16px 48px rgba(0, 76, 152, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.charity-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0057b8 0%, #ffd700 100%);
}

.charity-icon-large {
    font-size: 80px;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    animation: pulse 3s ease-in-out infinite;
}

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

.charity-text-block {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.charity-message {
    font-size: var(--font-size-xl);
    color: var(--primary-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.charity-note {
    font-size: var(--font-size-lg);
    color: #059669;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    display: inline-block;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.charity-counter {
    background: linear-gradient(135deg, #0057b8 0%, #0066cc 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    box-shadow: 0 12px 32px rgba(0, 87, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.charity-counter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-25%, -25%); }
    50% { transform: translate(25%, 25%); }
}

.counter-label {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.counter-amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.counter-number {
    letter-spacing: -0.02em;
}

.counter-currency {
    font-size: 32px;
    font-weight: 700;
}

.counter-update {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.charity-quote {
    background: var(--light-gray);
    border-left: 4px solid #ffd700;
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 32px;
    background: var(--white);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.quote-text {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--primary-dark);
    line-height: 1.6;
    margin: var(--spacing-lg) 0 var(--spacing-md) 0;
}

.quote-author {
    display: block;
    font-size: var(--font-size-base);
    color: var(--dark-gray);
    font-weight: 700;
    text-align: right;
}

.charity-cta {
    margin-top: var(--spacing-xl);
}

.charity-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.charity-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: 0 12px 40px rgba(0, 76, 152, 0.2);
    transition: transform var(--transition-normal);
    animation: float 4s ease-in-out infinite;
}

.charity-img:hover {
    transform: scale(1.02);
}

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

/* ===== CHARITY COUNTER SECTION ===== */
.charity-counter-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #2B5A9E 0%, #3D7ABE 50%, #2B5A9E 100%);
    position: relative;
    overflow: hidden;
}

.charity-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.charity-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 1;
}

.charity-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.charity-description {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.charity-description strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.charity-counter-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.charity-counter-main,
.charity-countdown {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.counter-main-title {
    font-size: var(--font-size-xl);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.counter-main-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
}

.counter-main-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.counter-main-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.counter-main-currency {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.countdown-title {
    font-size: var(--font-size-lg);
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: var(--spacing-lg);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.countdown-value {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 80px;
    text-align: center;
}

.countdown-label {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: lowercase;
}

/* ===== WHY RADABANK SECTION ===== */
.why-radabank-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-radabank-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 76, 152, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(137, 219, 239, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.trust-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    border: 2px solid rgba(0, 76, 152, 0.1);
    box-shadow: 0 4px 12px rgba(0, 76, 152, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-light-blue));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 76, 152, 0.15);
    border-color: var(--primary-blue);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card.highlight {
    background: linear-gradient(145deg, rgba(0, 76, 152, 0.05) 0%, rgba(137, 219, 239, 0.05) 100%);
    border: 2px solid rgba(0, 76, 152, 0.2);
}

.trust-card.highlight::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.trust-icon {
    display: none;
}

.trust-card:hover .trust-icon {
    display: none;
}

.trust-card.highlight .trust-icon {
    display: none;
}

.trust-number {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.trust-label {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 0;
    line-height: 1.5;
}

.trust-description {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--primary-dark);
    line-height: 1.5;
}

.trust-footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066cc 100%);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-2xl);
    box-shadow: 0 16px 48px rgba(0, 76, 152, 0.3);
    position: relative;
    overflow: hidden;
}

.trust-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.trust-footer-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    flex: 1;
}

.trust-footer-icon {
    font-size: 64px;
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}

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

.trust-footer-text {
    color: var(--white);
}

.trust-footer-text h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.trust-footer-text p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    opacity: 0.9;
}

.trust-footer-cta {
    flex-shrink: 0;
}

.trust-footer-cta .btn {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.trust-footer-cta .btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-gray);
    position: relative;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto var(--spacing-3xl);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(0, 76, 152, 0.08);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 76, 152, 0.12);
}

.faq-item.active {
    box-shadow: 0 8px 24px rgba(0, 76, 152, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(0, 76, 152, 0.03);
}

.faq-item.active .faq-question {
    background: rgba(0, 76, 152, 0.05);
    border-bottom: 2px solid var(--medium-gray);
}

.faq-question-text {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.5;
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    color: var(--white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.faq-icon svg {
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer-content {
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl);
    color: var(--dark-gray);
    line-height: 1.7;
}

.faq-answer-content p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-base);
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.highlight-text {
    color: #059669;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    padding: 2px 6px;
    border-radius: 4px;
}

.bonus-range {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 165, 0, 0.05));
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-orange);
    margin-top: var(--spacing-sm);
}

.faq-footer {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(0, 76, 152, 0.05), rgba(137, 219, 239, 0.05));
    border-radius: var(--radius-2xl);
    border: 2px dashed rgba(0, 76, 152, 0.2);
}

.faq-footer p {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-lg);
}

/* ===== LEGAL SECTION ===== */
.legal-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
    position: relative;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.legal-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--white);
    border: 2px solid rgba(0, 76, 152, 0.1);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 76, 152, 0.06);
    position: relative;
    overflow: hidden;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-light-blue));
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

.legal-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 76, 152, 0.15);
    transform: translateY(-4px);
}

.legal-card:hover::before {
    transform: scaleY(1);
}

.legal-card.highlight {
    background: linear-gradient(135deg, rgba(0, 76, 152, 0.03), rgba(137, 219, 239, 0.03));
    border-color: rgba(0, 76, 152, 0.2);
}

.legal-card.highlight::before {
    background: linear-gradient(180deg, #059669, #10b981);
}

.legal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 76, 152, 0.1), rgba(137, 219, 239, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.legal-card:hover .legal-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    color: var(--white);
    transform: scale(1.05);
}

.legal-card.highlight .legal-icon {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.1));
    color: #059669;
}

.legal-card.highlight:hover .legal-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    color: var(--white);
}

.legal-content {
    flex: 1;
}

.legal-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.legal-description {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
}

.legal-arrow {
    width: 32px;
    height: 32px;
    background: rgba(0, 76, 152, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.legal-card:hover .legal-arrow {
    background: var(--primary-blue);
    color: var(--white);
    transform: translate(4px, -4px);
}

.legal-footer {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(0, 76, 152, 0.03);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 76, 152, 0.1);
}

.legal-footer-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
}

.legal-footer p {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #fff9e6 0%, #e6f4ff 50%, #fff9e6 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '🇺🇦';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 400px;
    opacity: 0.03;
    pointer-events: none;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.final-cta-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: var(--font-size-xl);
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.final-cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl);
    background: linear-gradient(145deg, var(--white), rgba(255, 255, 255, 0.95));
    border-radius: var(--radius-2xl);
    box-shadow: 0 16px 48px rgba(0, 76, 152, 0.12);
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.cta-icon-large {
    font-size: 120px;
    margin-bottom: var(--spacing-xl);
    animation: pulse 3s ease-in-out infinite;
}

.btn-hero {
    font-size: var(--font-size-xl);
    padding: var(--spacing-lg) var(--spacing-3xl);
    min-width: 320px;
    margin-bottom: var(--spacing-xl);
}

.cta-note {
    background: rgba(0, 76, 152, 0.05);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-blue);
}

.cta-note p {
    margin: var(--spacing-xs) 0;
    font-size: var(--font-size-base);
    color: var(--dark-gray);
    line-height: 1.6;
}

.cta-note p:first-child {
    color: var(--primary-dark);
}

.final-cta-form {
    background: linear-gradient(145deg, var(--white), rgba(255, 255, 255, 0.98));
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    box-shadow: 0 16px 48px rgba(0, 76, 152, 0.15);
    border: 2px solid rgba(0, 76, 152, 0.1);
}

.form-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--medium-gray);
}

.form-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.form-header-text h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.form-header-text p {
    font-size: var(--font-size-base);
    color: var(--dark-gray);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-dark);
}

.optional-label {
    font-size: var(--font-size-xs);
    font-weight: 400;
    color: var(--dark-gray);
    font-style: italic;
}

.form-input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 76, 152, 0.1);
}

.form-input::placeholder {
    color: var(--dark-gray);
    opacity: 0.5;
}

.form-hint {
    font-size: var(--font-size-xs);
    color: #059669;
    font-style: italic;
}

.checkbox-group {
    margin: var(--spacing-md) 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-size: var(--font-size-sm);
    color: var(--primary-dark);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--accent-light-blue);
}

.otp-group {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border-radius: var(--radius-lg);
    border: 2px solid rgba(34, 197, 94, 0.3);
    animation: slideDown 0.3s ease-out;
    margin-top: var(--spacing-lg);
}

.success-icon {
    font-size: 64px;
    margin-bottom: var(--spacing-md);
}

.form-success p {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: #059669;
    margin: 0;
}

/* Final Form Wrapper */
.final-form-wrapper {
    max-width: 600px;
    margin: 0 auto var(--spacing-3xl) auto;
    background: linear-gradient(145deg, var(--white), rgba(255, 255, 255, 0.98));
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    box-shadow: 0 16px 48px rgba(0, 76, 152, 0.15);
    border: 2px solid rgba(0, 76, 152, 0.1);
}

/* FGVFO Block */
.fgvfo-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl) auto;
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(0, 76, 152, 0.05), rgba(34, 197, 94, 0.05));
    border-radius: var(--radius-xl);
    border: 2px solid rgba(0, 76, 152, 0.2);
}

.fgvfo-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fgvfo-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.fgvfo-text {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.5;
}

/* Final Summary */
.final-summary {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: linear-gradient(135deg, #fff9e6, #e6f4ff);
    border-radius: var(--radius-xl);
    border: 3px solid var(--primary-gold);
    box-shadow: 0 8px 24px rgba(241, 199, 106, 0.3);
}

.summary-text {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-gray);
}

/* Mobile-only elements */
.mobile-only {
    display: none;
}

.mobile-hidden {
    display: block;
}

/* Mobile advantages cards */
.mobile-advantages-cards {
    max-width: 100%;
    margin: 0 auto;
}

.mobile-advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: var(--spacing-md);
}

.mobile-advantage-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 76, 152, 0.06);
    border: 1px solid rgba(0, 76, 152, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.mobile-advantage-card::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    border-radius: 50%;
    color: var(--white);
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.mobile-advantage-card:hover::before {
    transform: translateY(-50%) scale(1.1);
}

.mobile-advantage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 76, 152, 0.15);
    border-color: transparent;
}

.mobile-advantage-content {
    margin-left: 32px;
    flex: 1;
}

.mobile-advantage-content h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.5;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.advantage-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--medium-gray);
}

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

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    border-radius: 50%;
    color: var(--white);
}

.advantage-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
}

.advantage-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ===== HOW TO GET SECTION ===== */
.how-to-get-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.steps {
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.step {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: var(--light-gray);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
}

.step:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    color: var(--white);
    border-radius: 50%;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin: 0;
    color: var(--primary-dark);
    line-height: 1.4;
}

.cta-container {
    text-align: center;
}

/* ===== CONDITIONS SECTION ===== */
.conditions-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-gray);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.condition-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--medium-gray);
}

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

.condition-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
}

.condition-value {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}





/* ===== DOCUMENTS SECTION ===== */
.documents-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

/* Compact Documents List */
.documents-compact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.doc-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-decoration: none;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.doc-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.doc-icon {
    font-size: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}



.upload-info {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-gray);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
}

.upload-info h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-dark);
    text-align: center;
}

.upload-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
}

.upload-step {
    text-align: center;
}

.upload-step .step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-weight: 700;
}

.upload-step p {
    color: var(--dark-gray);
    font-size: var(--font-size-sm);
}

/* Important Note Styles */
.important-note {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.1), rgba(255, 255, 0, 0.05));
    border-left: 4px solid var(--accent-yellow);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.note-icon {
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: var(--spacing-xs);
}

.note-content h4 {
    color: var(--primary-dark);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.note-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.note-content li {
    padding: var(--spacing-xs) 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: var(--spacing-lg);
    line-height: 1.5;
    font-size: var(--font-size-sm);
}

.note-content li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    top: var(--spacing-xs);
    color: var(--accent-orange);
    font-size: var(--font-size-base);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-copyright p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}



.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-contacts h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--accent-light-blue);
    margin: 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.contact-item a {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--accent-light-blue);
}

.contact-item span {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.work-schedule {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

.contact-emails {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.contact-emails a {
    font-size: var(--font-size-sm);
    color: var(--accent-light-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-emails a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-xl);
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: var(--spacing-lg);
    top: var(--spacing-lg);
    font-size: var(--font-size-2xl);
    cursor: pointer;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.close:hover {
    color: var(--primary-blue);
}

.modal h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="number"] {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 76, 152, 0.1);
}

.form-group input[type="checkbox"] {
    margin-right: var(--spacing-sm);
}

/* Application Steps */
.application-step {
    animation: fadeIn 0.3s ease-out;
}

.step-description {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.form-hint {
    display: block;
    margin-top: var(--spacing-xs);
    color: var(--dark-gray);
    font-size: var(--font-size-xs);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

/* SMS Step Styles */
.sms-actions {
    text-align: center;
}

.secondary-actions {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    font-size: var(--font-size-sm);
    text-decoration: underline;
    transition: var(--transition-fast);
    padding: var(--spacing-xs);
}

.btn-link:hover:not(:disabled) {
    color: var(--primary-dark);
}

.btn-link:disabled {
    color: var(--medium-gray);
    cursor: not-allowed;
    text-decoration: none;
}

.resend-timer {
    margin-top: var(--spacing-md);
    color: var(--dark-gray);
    font-size: var(--font-size-sm);
    text-align: center;
}

#timer-count {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Message Styles */
.message {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    animation: fadeIn 0.3s ease-out;
}

.message-icon {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.success-message h3 {
    color: #22c55e;
    margin-bottom: var(--spacing-md);
}

.error-message h3 {
    color: #ef4444;
    margin-bottom: var(--spacing-md);
}

.message p {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
}

.message button {
    margin-top: var(--spacing-lg);
}

/* SMS Code Input Styling */
#sms-code {
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: 600;
    letter-spacing: 0.5rem;
    font-family: 'Courier New', monospace;
}

/* Phone Input Enhancement */
#phone-number {
    font-family: 'Courier New', monospace;
}

/* Simple Checkbox */
.checkbox-group {
    margin: var(--spacing-md) 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    color: white;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Choice Step Styles */
.choice-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.choice-card {
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-fast);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.choice-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.choice-card.selected {
    border-color: var(--primary-blue);
    background: rgba(0, 76, 152, 0.05);
}

.choice-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-sm);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 76, 152, 0.1);
    border-radius: 50%;
}

.choice-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-dark);
}

.choice-card p {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}



/* Download Step Styles */
.download-container {
    text-align: center;
}

.download-section {
    margin-bottom: var(--spacing-xl);
}

.download-section h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.store-button {
    display: inline-block;
    transition: var(--transition-fast);
}

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

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.qr-code {
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    background: var(--white);
    box-shadow: var(--shadow-md);
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.qr-instructions {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    max-width: 250px;
    text-align: center;
}

.download-info {
    background: rgba(0, 76, 152, 0.05);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.download-info h4 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-base);
    font-weight: 600;
}

.download-info ol {
    text-align: left;
    padding-left: var(--spacing-lg);
    color: var(--dark-gray);
}

.download-info li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.5;
}

/* RB24 Download Button Styles */
.rb24-download-main {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(0, 76, 152, 0.05), rgba(137, 219, 239, 0.1));
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-xl);
    border: 2px solid rgba(0, 76, 152, 0.1);
}

.rb24-download-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
    display: block;
}

.rb24-download-main h3 {
    color: var(--primary-dark);
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.rb24-download-main p {
    color: var(--dark-gray);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xl);
    line-height: 1.5;
}

.rb24-download-btn {
    font-size: var(--font-size-lg) !important;
    font-weight: 700 !important;
    padding: var(--spacing-lg) var(--spacing-2xl) !important;
    box-shadow: var(--shadow-xl) !important;
    animation: pulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rb24-download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl) !important;
    animation: glow 1.5s ease-in-out infinite;
}

/* Store Buttons */
.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    margin: 8px 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
    min-width: 140px;
    max-width: 180px;
    width: 100%;
    box-sizing: border-box;
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-action {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 400;
}

.store-name {
    font-size: 16px;
    font-weight: bold;
    margin-top: 2px;
}

.app-store-button {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    border: 1px solid #333;
}

.app-store-button:hover {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.play-store-button {
    background: linear-gradient(135deg, #01875f 0%, #4CAF50 100%);
    color: white;
    border: 1px solid #01875f;
}

.play-store-button:hover {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

/* Device-specific visibility */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

.mobile-cta-container {
    display: none;
}

@media (min-width: 768px) {
    .mobile-cta-container {
        display: none !important;
    }
}

@media (max-width: 767px) {
    /* Hero with mobile banner */
    .hero {
        background-color: #F1C76A;
    }
    
    .hero-with-banner {
        background-image: url('../img/mob.jpg') !important;
        background-size: 100% auto !important;
        background-position: top center !important;
        background-color: #F1C76A;
        min-height: auto;
        margin-top: 64px;
        margin-bottom: 0 !important;
        position: relative;
        padding: 0 !important;
        border-bottom: none;
        overflow: hidden;
    }
    
    .hero-with-banner .container {
        margin: 0;
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
        padding-top: 0;
        padding-bottom: 0;
        text-align: left;
        position: relative;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 !important;
        margin: 0 !important;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        height: auto;
    }
    
    .hero-text {
        max-width: 350px;
        padding: 0;
        margin: 0;
        gap: 8px;
        text-align: left;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 22px;
        line-height: 1.1;
        margin-bottom: 6px;
        color: #1a1a1a;
        text-align: left;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 8px;
        color: #2c2c2c;
        text-align: left;
    }
    
    .hero-description strong {
        font-size: 32px;
        font-weight: 800;
        color: #1a1a1a;
    }
    
    .hero-subdescription {
        font-size: 12px;
        line-height: 1.3;
        margin-top: 50px;
        margin-bottom: 0 !important;
        color: #2c2c2c;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .hero-subdescription-number {
        font-size: 32px;
        font-weight: 800;
        color: var(--color-primary);
        line-height: 1;
        margin: 0;
        padding: 0;
    }
    
    .hero-subdescription-text {
        font-size: 11px;
        line-height: 1.3;
        color: #2c2c2c;
        max-width: 200px;
        margin: 0;
        padding: 0;
    }
    
    .hero-actions {
        display: none !important;
    }
    
    .btn-hero {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    /* Mobile CTA Container */
    .mobile-cta-container {
        display: block !important;
        background-color: #F1C76A;
        padding: 0 var(--spacing-md) 20px var(--spacing-md);
        text-align: center;
        margin-top: 0 !important;
        margin-bottom: 20px;
    }
    
    .mobile-cta-container .btn-large {
        min-width: 240px;
        padding: var(--spacing-lg) var(--spacing-2xl);
        font-size: var(--font-size-lg);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
        color: var(--white);
        box-shadow: var(--shadow-lg);
        border: none;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .mobile-cta-container .btn-large:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-2xl);
    }
    
    
    .store-button {
        min-width: 120px;
        max-width: 160px;
        padding: 10px 16px;
    }
    
    .store-action {
        font-size: 9px;
    }
    
    .store-name {
        font-size: 14px;
    }
    
    .qr-container {
        padding: 0 10px;
        max-width: calc(100vw - 40px);
    }
    
    .qr-code {
        padding: 10px;
        max-width: 100%;
    }
    
    .download-section {
        max-width: 100%;
        overflow: hidden;
    }
    
    .store-buttons {
        max-width: 100%;
        overflow: hidden;
        justify-content: center;
        padding: 0 10px;
    }
}

/* Manual Success Step Styles */
.success-content {
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.success-icon {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
}

.success-description {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.next-steps {
    background: rgba(0, 76, 152, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-md);
}

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

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    color: var(--dark-gray);
    line-height: 1.5;
}

.step-text strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.contact-info {
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.contact-info p {
    margin: 0;
    color: var(--dark-gray);
}

.contact-info a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Tax Number Input Styling */
#tax-number {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.1em;
}

/* Responsive Choice Cards */
@media (max-width: 767px) {
    .choice-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-sm);
    }
    
    .choice-card {
        padding: var(--spacing-md);
    }
    
    .choice-icon {
        width: 40px;
        height: 40px;
        margin-bottom: var(--spacing-xs);
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .next-steps {
        padding: var(--spacing-lg);
    }
    
    .step-item {
        gap: var(--spacing-sm);
    }
}

/* ===== PAYMENT SCHEDULE MODAL ===== */
.payment-schedule-content {
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-subtitle {
    color: var(--dark-gray);
    font-size: var(--font-size-base);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.schedule-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(0, 76, 152, 0.05), rgba(137, 219, 239, 0.05));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 76, 152, 0.2);
}

.summary-item {
    text-align: center;
}

.summary-item label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
}

.summary-item span {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-blue);
}

.schedule-table-container {
    overflow-x: auto;
    margin: var(--spacing-xl) 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: var(--font-size-sm);
}

.schedule-table th {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
    color: var(--white);
    padding: var(--spacing-md);
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
}

.schedule-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
}

.schedule-table tbody tr:nth-child(even) {
    background: rgba(0, 76, 152, 0.03);
}

.schedule-table tbody tr:hover {
    background: rgba(0, 76, 152, 0.08);
}

.schedule-totals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.total-item {
    text-align: center;
}

.total-item label {
    display: block;
    font-size: var(--font-size-base);
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
}

.total-item span {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-blue);
}

.schedule-disclaimer {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 165, 0, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-orange);
}

.schedule-disclaimer p {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    line-height: 1.4;
}

/* ===== MOBILE COMBINED HERO + HOW IT WORKS ===== */
@media (max-width: 767px) {
    /* Combine hero and how-it-works into single screen view */
    .hero.combined-view {
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .how-it-works-section.combined-view {
        padding-top: var(--spacing-lg);
        border-top: none;
        background: linear-gradient(135deg, 
            var(--white) 0%, 
            rgba(137, 219, 239, 0.1) 30%, 
            rgba(0, 76, 152, 0.05) 70%, 
            var(--light-gray) 100%);
    }
    
    .features-section.combined-view {
        padding-top: var(--spacing-lg);
        border-top: none;
        background: linear-gradient(135deg, 
            var(--white) 0%, 
            rgba(137, 219, 239, 0.1) 30%, 
            rgba(0, 76, 152, 0.05) 70%, 
            var(--light-gray) 100%);
    }
    
    /* Create seamless transition between hero and sections */
    .hero.combined-view + .how-it-works-section.combined-view,
    .hero.combined-view + .features-section.combined-view {
        margin-top: var(--spacing-md);
    }
}

/* ===== EXTRA SPACING FOR MEDIUM MOBILE ===== */
@media (max-width: 600px) {
    .hero {
        background-color: #F1C76A;
    }
    
    .hero-with-banner .container {
        min-height: auto !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .hero-content {
        padding: 0 !important;
        margin-bottom: 0 !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .hero-text {
        gap: 5px !important;
        text-align: left !important;
        align-items: flex-start !important;
    }
    
    .hero-title {
        font-size: 21px !important;
        margin-bottom: 4px !important;
        line-height: 1.05 !important;
        text-align: left !important;
    }
    
    .hero-description {
        font-size: 15px !important;
        margin-bottom: 6px !important;
        line-height: 1.25 !important;
        text-align: left !important;
    }
    
    .hero-subdescription {
        margin-top: 45px !important;
    }
    
    .hero-subdescription-number {
        font-size: 28px !important;
    }
    
    .hero-subdescription-text {
        font-size: 10px !important;
        max-width: 180px !important;
    }
    
    .mobile-cta-container {
        padding: 0 var(--spacing-md) 20px var(--spacing-md) !important;
        background-color: #F1C76A !important;
        margin-bottom: 20px !important;
    }
    
    .mobile-cta-container .btn-large {
        min-width: 240px !important;
        padding: var(--spacing-md) var(--spacing-xl) !important;
        font-size: var(--font-size-base) !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue)) !important;
    }
}

/* ===== EXTRA SPACING FOR SMALL MOBILE ===== */
@media (max-width: 480px) {
    .hero {
        background-color: #F1C76A;
    }
    
    /* Hero small mobile adjustments */
    .hero-with-banner {
        min-height: auto;
    }
    
    .hero-with-banner .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        min-height: auto !important;
    }
    
    .hero-content {
        padding: 6px 0 0 0 !important;
        margin-bottom: 0 !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .hero-text {
        gap: 4px !important;
        text-align: left !important;
        align-items: flex-start !important;
    }
    
    .hero-title {
        font-size: 19px !important;
        line-height: 1.05 !important;
        margin-bottom: 3px !important;
        text-align: left !important;
    }
    
    .hero-description {
        font-size: 14px !important;
        line-height: 1.2 !important;
        margin-bottom: 5px !important;
        text-align: left !important;
    }
    
    .hero-subdescription {
        margin-top: 60px !important;
    }
    
    .hero-subdescription-number {
        font-size: 26px !important;
    }
    
    .hero-subdescription-text {
        font-size: 9px !important;
        line-height: 1.25 !important;
        max-width: 160px !important;
    }
    
    .mobile-cta-container {
        padding: 0 var(--spacing-sm) 20px var(--spacing-sm) !important;
        background-color: #F1C76A !important;
        margin-bottom: 20px !important;
    }
    
    .mobile-cta-container .btn-large {
        min-width: 240px !important;
        padding: var(--spacing-sm) var(--spacing-lg) !important;
        font-size: var(--font-size-base) !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue)) !important;
    }
    
    .btn-hero {
        padding: 12px 24px;
        font-size: var(--font-size-sm);
    }
    
    .how-it-works-section.combined-view,
    .features-section.combined-view {
        padding-top: var(--spacing-xl);
    }
    
    .hero.combined-view + .how-it-works-section.combined-view,
    .hero.combined-view + .features-section.combined-view {
        margin-top: var(--spacing-lg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    section {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
        max-width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 0;
        min-height: 30vh;
    }
    
    .hero .container {
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        align-items: stretch;
        min-height: 50vh;
        padding-top: 0px;
    }
    
    .hero-text {
        height: auto;
        order: 2;
        padding: var(--spacing-md) var(--spacing-lg);
        margin-bottom: 0;
        max-width: 350px;
    }
    
    .hero-image {
        order: 1;
        padding: 0;
        margin: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        position: relative;
        left: 0;
        right: 0;
    }
    
    .hero-banner {
        width: 100vw;
        max-width: none;
        height: auto;
        transform: none;
        object-fit: cover;
        border-radius: 0;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-md);
        line-height: 1.1;
    }
    
    .hero-actions {
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    
    .btn-large {
        min-width: 260px;
        padding: var(--spacing-lg) var(--spacing-2xl);
        font-size: var(--font-size-lg);
        font-weight: 700;
    }
    
    /* Tab buttons mobile */
    .tab-btn {
        flex: 1;
        max-width: none;
        padding: var(--spacing-sm) var(--spacing-lg);
        border-radius: var(--radius-lg);
        background: rgba(0, 76, 152, 0.1);
        color: var(--primary-blue);
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    
    .tab-btn-title {
        font-size: var(--font-size-base);
        font-weight: 700;
        white-space: nowrap;
    }
    
    .tab-btn-subtitle {
        font-size: var(--font-size-xs);
        font-weight: 400;
        white-space: nowrap;
    }
    
    .tab-btn.active {
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
        color: var(--white);
        box-shadow: 0 4px 12px rgba(0, 76, 152, 0.3);
    }
    
    .tab-btn.active .tab-btn-title,
    .tab-btn.active .tab-btn-subtitle {
        color: var(--white);
    }
    
    .tabs-header {
        display: flex;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }
    
    /* Calculator tab buttons mobile */
    .calc-tab-btn {
        flex: 1;
        max-width: none;
        padding: var(--spacing-sm) var(--spacing-lg);
        border-radius: var(--radius-lg);
        background: rgba(0, 76, 152, 0.1);
        color: var(--primary-blue);
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    
    .calc-tab-btn-title {
        font-size: var(--font-size-base);
        font-weight: 700;
        white-space: nowrap;
    }
    
    .calc-tab-btn-subtitle {
        font-size: var(--font-size-xs);
        font-weight: 400;
        white-space: nowrap;
    }
    
    .calc-tab-btn.active {
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
        color: var(--white);
        box-shadow: 0 4px 12px rgba(0, 76, 152, 0.3);
    }
    
    .calc-tab-btn.active .calc-tab-btn-title,
    .calc-tab-btn.active .calc-tab-btn-subtitle {
        color: var(--white);
    }
    
    .calculator-tabs {
        display: flex;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }
    
    /* How It Works Section Mobile */
    .how-it-works-section {
        padding: var(--spacing-xl) 0;
    }
    
    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .gif-placeholder {
        min-height: 250px;
        padding: var(--spacing-md);
        position: relative;
        top: 0;
    }
    
    .how-it-works-gif {
        border-radius: var(--radius-lg);
    }
    
    .gif-placeholder-icon {
        font-size: 60px;
        margin-bottom: var(--spacing-md);
    }
    
    .gif-placeholder-content p {
        font-size: var(--font-size-lg);
    }
    
    .step-item-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
        align-items: center;
    }
    
    .step-item-number {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
    }
    
    .step-item-card h3 {
        font-size: var(--font-size-base);
    }
    
    /* New Steps List Mobile */
    .step-list-item {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .step-list-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-list-title {
        font-size: 16px;
    }
    
    .step-list-description {
        font-size: 13px;
    }
    
    .app-download-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .cta-container.two-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .cta-container.two-buttons .btn {
        width: 100%;
    }
    
    .step-bonus {
        font-size: var(--font-size-base);
    }
    
    .features-section {
        padding: var(--spacing-xl) 0 var(--spacing-2xl) 0;
        margin-top: var(--spacing-lg);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        max-width: 100%;
    }
    
    .feature-card {
        padding: var(--spacing-lg);
        gap: var(--spacing-sm);
        border-radius: var(--radius-lg);
        min-height: auto;
    }
    
    .feature-card-content h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
    }
    
    .feature-card-content h3::before {
        display: none;
    }
    
    .feature-card-content p {
        font-size: var(--font-size-xs);
        line-height: 1.3;
        margin: 0;
    }
    
    /* Deposits Section Mobile */
    .deposits-section {
        padding: var(--spacing-xl) 0;
    }
    
    .tabs-header {
        flex-wrap: nowrap;
        gap: var(--spacing-sm);
    }
    
    .tab-btn {
        max-width: none;
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
        white-space: nowrap;
    }
    
    .tab-btn.active {
        transform: translateY(-2px) scale(1.01);
    }
    
    .deposit-card {
        padding: var(--spacing-xl);
    }
    
    .deposit-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .deposit-title {
        font-size: var(--font-size-xl);
    }
    
    .deposit-rate-badge {
        align-items: flex-start;
        width: 100%;
    }
    
    .rate-value {
        font-size: var(--font-size-lg);
    }
    
    .deposit-feature {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-value {
        font-size: var(--font-size-base);
    }
    
    /* New Deposit Layout Mobile */
    .deposit-header-inline {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .deposit-rate-inline {
        width: 100%;
    }
    
    .deposit-features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .deposit-feature-block {
        padding: var(--spacing-md);
    }
    
    .feature-block-value {
        font-size: var(--font-size-base);
    }
    
    .deposit-cta-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .deposit-cta-buttons .btn {
        max-width: none;
        width: 100%;
    }
    
    /* Calculator Mobile */
    .calculator-section {
        padding: var(--spacing-lg) 0;
        overflow-x: hidden;
    }
    
    .calculator-section * {
        box-sizing: border-box;
        min-width: 0;
        min-height: 0;
    }
    
    .calculator-section input,
    .calculator-section select {
        min-width: 0 !important;
    }
    
    .calculator-tabs {
        flex-wrap: nowrap;
        gap: var(--spacing-sm);
    }
    
    .calc-tab-btn {
        max-width: none;
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-base);
        white-space: nowrap;
    }
    
    .calc-tab-btn.active {
        transform: translateY(-2px);
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .calculator-inputs {
        gap: var(--spacing-lg);
        width: 100%;
        max-width: 100%;
    }
    
    .input-group {
        margin-bottom: var(--spacing-sm);
        width: 100%;
        max-width: 100%;
    }
    
    .input-group label {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
    }
    
    .amount-input {
        font-size: var(--font-size-base);
        padding: var(--spacing-sm) var(--spacing-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .currency {
        font-size: var(--font-size-base);
        right: var(--spacing-md);
    }
    
    .bonus-select {
        font-size: var(--font-size-base);
        padding: var(--spacing-sm) var(--spacing-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .slider {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .result-card-calc {
        padding: var(--spacing-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .result-card-calc h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
    }
    
    .result-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: var(--spacing-sm);
    }
    
    .result-label {
        font-size: var(--font-size-sm);
    }
    
    .result-value {
        font-size: var(--font-size-sm);
    }
    
    .result-row.highlight .result-value {
        font-size: var(--font-size-base);
    }
    
    .result-grid {
        gap: var(--spacing-sm);
    }
    
    .charity-icon {
        width: 40px;
        height: 40px;
    }
    
    .charity-value {
        font-size: var(--font-size-base);
    }
    
    .calculator {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .base-rate-display {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
    }
    
    .base-rate-display .rate-value {
        font-size: var(--font-size-base);
    }
    
    .term-value-display {
        font-size: var(--font-size-base);
        padding: var(--spacing-xs) var(--spacing-sm);
        margin-bottom: var(--spacing-xs);
    }
    
    .slider-labels span,
    .term-labels-calc span {
        font-size: var(--font-size-xs);
    }
    
    /* Charity Mobile */
    .charity-section {
        padding: var(--spacing-xl) 0;
    }
    
    .charity-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .charity-main-card {
        padding: var(--spacing-xl);
    }
    
    .charity-icon-large {
        font-size: 64px;
    }
    
    .charity-message {
        font-size: var(--font-size-lg);
    }
    
    .charity-note {
        font-size: var(--font-size-base);
    }
    
    .counter-amount {
        font-size: 42px;
        flex-direction: column;
        gap: 0;
    }
    
    .counter-currency {
        font-size: 24px;
    }
    
    .charity-image {
        order: -1;
    }
    
    .charity-img {
        max-width: 100%;
        border-radius: var(--radius-xl);
    }
    
    /* Charity Counter Mobile */
    .charity-counter-section {
        padding: var(--spacing-xl) 0;
    }
    
    .charity-title {
        font-size: 32px;
    }
    
    .charity-description {
        font-size: var(--font-size-lg);
    }
    
    .charity-counter-block {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .charity-counter-main,
    .charity-countdown {
        padding: var(--spacing-xl);
    }
    
    .counter-main-number {
        font-size: 48px;
    }
    
    .counter-main-currency {
        font-size: 24px;
    }
    
    .countdown-value {
        font-size: 42px;
        min-width: 60px;
    }
    
    .countdown-label {
        font-size: var(--font-size-sm);
    }
    
    /* Why Radabank Mobile */
    .why-radabank-section {
        padding: var(--spacing-xl) 0;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .trust-card {
        padding: var(--spacing-lg);
    }
    
    .trust-icon {
        width: 64px;
        height: 64px;
    }
    
    .trust-number {
        font-size: 28px;
    }
    
    .trust-label {
        font-size: var(--font-size-sm);
    }
    
    .trust-footer {
        flex-direction: column;
        padding: var(--spacing-xl);
        gap: var(--spacing-lg);
    }
    
    .trust-footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .trust-footer-icon {
        font-size: 48px;
    }
    
    .trust-footer-text h3 {
        font-size: var(--font-size-xl);
    }
    
    .trust-footer-text p {
        font-size: var(--font-size-sm);
    }
    
    .trust-footer-cta {
        width: 100%;
    }
    
    .trust-footer-cta .btn {
        width: 100%;
    }
    
    /* FAQ Mobile */
    .faq-section {
        padding: var(--spacing-xl) 0;
    }
    
    .faq-question {
        padding: var(--spacing-md) var(--spacing-lg);
        gap: var(--spacing-md);
    }
    
    .faq-question-text {
        font-size: var(--font-size-base);
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    
    .faq-answer-content {
        padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
        font-size: var(--font-size-sm);
    }
    
    .faq-footer {
        padding: var(--spacing-lg);
    }
    
    .faq-footer p {
        font-size: var(--font-size-base);
    }
    
    /* Legal Mobile */
    .legal-section {
        padding: var(--spacing-xl) 0;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-card {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    .legal-icon {
        width: 56px;
        height: 56px;
    }
    
    .legal-title {
        font-size: var(--font-size-base);
    }
    
    .legal-description {
        font-size: var(--font-size-xs);
    }
    
    .legal-arrow {
        width: 28px;
        height: 28px;
    }
    
    .legal-footer {
        padding: var(--spacing-lg);
    }
    
    .legal-footer-icon {
        font-size: 40px;
    }
    
    /* Final CTA Mobile */
    .final-cta-section {
        padding: var(--spacing-xl) 0;
    }
    
    .final-cta-title {
        font-size: 32px;
    }
    
    .final-cta-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .final-cta-action {
        padding: var(--spacing-xl);
    }
    
    .cta-icon-large {
        font-size: 80px;
    }
    
    .btn-hero {
        font-size: var(--font-size-lg);
        padding: var(--spacing-md) var(--spacing-xl);
        min-width: 100%;
    }
    
    .final-cta-form {
        padding: var(--spacing-xl);
    }
    
    .form-header {
        flex-direction: column;
        text-align: center;
    }
    
    .form-icon {
        font-size: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .final-form-wrapper {
        padding: var(--spacing-xl);
    }
    
    .fgvfo-block {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
    }
    
    .fgvfo-text {
        font-size: var(--font-size-base);
    }
    
    .summary-text {
        font-size: 24px;
    }
    
    .input-group label {
        margin-bottom: var(--spacing-sm);
        font-size: var(--font-size-base);
    }
    
    .slider-value {
        margin-top: var(--spacing-sm);
        font-size: var(--font-size-lg);
    }
    
    .term-labels {
        margin-top: var(--spacing-sm);
    }
    
    .term-labels span {
        font-size: 11px;
        line-height: 1.1;
    }
    
    /* Fix slider alignment on mobile browsers, especially Android */
    .slider-container input[type="range"] {
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        height: 8px;
        background: var(--medium-gray);
        border-radius: 4px;
        outline: none;
        margin: 12px 0;
        padding: 0;
        position: relative;
        z-index: 1;
    }
    
    .slider-container input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
        cursor: pointer;
        box-shadow: var(--shadow-md);
        border: none;
        position: relative;
        z-index: 2;
        margin-top: -8px;
        transform: translateY(0px);
    }
    
    .slider-container input[type="range"]::-moz-range-thumb {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-light-blue));
        cursor: pointer;
        border: none;
        box-shadow: var(--shadow-md);
        margin-top: -8px;
        transform: translateY(0px);
    }
    
    .slider-container input[type="range"]::-moz-range-track {
        height: 8px;
        background: var(--medium-gray);
        border-radius: 4px;
        border: none;
    }
    
    /* Individual slider thumb positioning for mobile */
    #amount::-webkit-slider-thumb {
        transform: translateY(4px) !important; /* Сумма кредита - ниже на 4px */
    }
    
    #amount::-moz-range-thumb {
        transform: translateY(4px) !important; /* Сумма кредита - ниже на 4px */
    }
    
    #term::-webkit-slider-thumb {
        transform: translateY(-4px) !important; /* Срок кредита - выше на 4px */
    }
    
    #term::-moz-range-thumb {
        transform: translateY(-4px) !important; /* Срок кредита - выше на 4px */
    }
    
    .result-card {
        padding: var(--spacing-lg);
    }
    
    .result-details {
        margin: var(--spacing-md) 0;
        padding: var(--spacing-sm) 0;
    }
    
    .result-details .result-item {
        padding: var(--spacing-xs) 0;
        font-size: var(--font-size-sm);
    }
    
    .main-payment {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .calculator-actions {
        margin: var(--spacing-md) 0;
    }
    
    /* How to get section mobile styles */
    .how-to-get-section {
        padding: var(--spacing-lg) 0;
    }
    
    .steps {
        margin-bottom: var(--spacing-lg);
    }
    
    .step {
        flex-direction: column !important;
        text-align: center;
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-md);
        background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
        box-shadow: 0 2px 8px rgba(0, 76, 152, 0.06);
        border: 1px solid rgba(0, 76, 152, 0.08);
        min-height: auto;
        border-radius: var(--radius-lg);
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
    }
    
    .step-content h3 {
        font-size: var(--font-size-base);
        margin: 0;
        line-height: 1.4;
        font-weight: 600;
    }
    
    .section-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-md);
    }
    
    /* Advantages section mobile styles */
    .advantages-section {
        padding: var(--spacing-lg) 0;
    }
    
    .mobile-only {
        display: block;
    }
    
    .mobile-hidden {
        display: none;
    }
    
    .mobile-advantages-grid {
        gap: 6px;
    }
    
    .mobile-advantage-card {
        padding: 10px 14px;
        min-height: 40px;
        border-radius: 10px;
    }
    
    .mobile-advantage-card::before {
        width: 18px;
        height: 18px;
        font-size: 10px;
        left: 10px;
    }
    
    .mobile-advantage-content {
        margin-left: 30px;
    }
    
    .mobile-advantage-content h3 {
        font-size: var(--font-size-base);
        line-height: 1.4;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    /* Conditions section mobile styles */
    .conditions-section {
        padding: var(--spacing-lg) 0;
    }
    
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }
    
    .condition-card {
        padding: var(--spacing-md);
        border-radius: var(--radius-lg);
    }
    
    .condition-card h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
    }
    
    .condition-value {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
    }
    

    
    /* Documents section mobile styles */
    .documents-section {
        padding: var(--spacing-lg) 0;
    }
    
    .documents-compact-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        margin: var(--spacing-lg) 0;
    }
    
    .doc-link {
        padding: var(--spacing-md);
        border-radius: var(--radius-md);
    }
    
    .doc-icon {
        font-size: 20px;
    }
    
    .doc-link span:last-child {
        font-size: var(--font-size-sm);
        line-height: 1.3;
    }
    
    .footer-simple {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-info {
        order: 2;
    }
    
    .footer-contacts {
        order: 1;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 4px;
        max-width: 100%;
    }
    
    .section-title {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
    }
    
    /* Prevent horizontal overflow */
    section {
        overflow-x: hidden;
    }
    
    /* Ultra compact how-to-get for very small screens */
    .how-to-get-section {
        padding: var(--spacing-md) 0;
    }
    
    .steps {
        margin-bottom: var(--spacing-md);
    }
    
    .step {
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
        border-radius: var(--radius-md);
        min-height: auto;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
    }
    
    .step-content h3 {
        font-size: var(--font-size-sm);
        margin: 0;
        line-height: 1.3;
        font-weight: 600;
    }
    
    /* Ultra compact advantages for very small screens */
    .advantages-section {
        padding: var(--spacing-md) 0;
    }
    
    .mobile-advantages-grid {
        gap: 4px;
    }
    
    /* Ultra compact conditions for very small screens */
    .conditions-section {
        padding: var(--spacing-md) 0;
    }
    
    /* Ultra compact documents for very small screens */
    .documents-section {
        padding: var(--spacing-md) 0;
    }
    
    .documents-compact-list {
        gap: var(--spacing-xs);
        margin: var(--spacing-md) 0;
    }
    
    .doc-link {
        padding: var(--spacing-sm);
        border-radius: var(--radius-sm);
    }
    
    .doc-icon {
        font-size: 18px;
    }
    
    .doc-link span:last-child {
        font-size: var(--font-size-xs);
        line-height: 1.2;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .condition-card {
        padding: var(--spacing-sm);
        border-radius: var(--radius-md);
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .condition-card h3 {
        font-size: var(--font-size-sm);
        margin: 0;
    }
    
    .condition-value {
        font-size: var(--font-size-base);
        margin: 0;
        order: 2;
    }
    
    /* Tab buttons small mobile */
    .tab-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        gap: 2px;
    }
    
    .tab-btn-title {
        font-size: var(--font-size-sm);
        font-weight: 700;
        white-space: normal;
        line-height: 1.1;
    }
    
    .tab-btn-subtitle {
        font-size: 10px;
        font-weight: 400;
        white-space: normal;
        line-height: 1.1;
    }
    
    .tabs-header {
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-md);
    }
    
    /* Calculator tab buttons small mobile */
    .calc-tab-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        gap: 2px;
    }
    
    .calc-tab-btn-title {
        font-size: var(--font-size-sm);
        font-weight: 700;
        white-space: normal;
        line-height: 1.1;
    }
    
    .calc-tab-btn-subtitle {
        font-size: 10px;
        font-weight: 400;
        white-space: normal;
        line-height: 1.1;
    }
    
    .calculator-tabs {
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-md);
    }
    
    .mobile-advantage-card {
        padding: 8px 12px;
        border-radius: 8px;
        min-height: 36px;
    }
    
    /* Compact choice cards for small screens */
    .choice-container {
        gap: var(--spacing-xs);
        margin-top: var(--spacing-xs);
    }
    
    .choice-card {
        padding: var(--spacing-sm);
    }
    
    .choice-icon {
        width: 36px;
        height: 36px;
        margin-bottom: var(--spacing-xs);
    }
    
    .choice-card h3 {
        font-size: var(--font-size-base);
        margin-bottom: 2px;
    }
    
    .choice-card p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-xs);
        line-height: 1.3;
    }
    
    .mobile-advantage-card::before {
        width: 16px;
        height: 16px;
        font-size: 9px;
        left: 8px;
    }
    
    .mobile-advantage-content {
        margin-left: 26px;
    }
    
    .mobile-advantage-content h3 {
        font-size: var(--font-size-sm);
        line-height: 1.3;
    }
    
    .hero {
        min-height: 30vh;
    }
    
    .hero .container {
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        min-height: 50vh;
        padding-top: 70px;
        gap: 0;
    }
    
    .hero-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-text {
        padding: var(--spacing-md);
    }
    
    .hero-image {
        padding: 0;
        margin: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        position: relative;
        left: 0;
        right: 0;
    }
    
    .hero-banner {
        width: 100vw;
        max-width: none;
        transform: none;
        object-fit: cover;
        border-radius: 0;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-top: var(--spacing-sm);
    }
    
    .btn {
        padding: var(--spacing-md);
        font-size: var(--font-size-sm);
    }
    
    .btn-large {
        min-width: 240px;
        padding: var(--spacing-md) var(--spacing-2xl);
        font-size: var(--font-size-base);
        font-weight: 700;
    }
    
    /* How It Works Section Small Mobile */
    .how-it-works-section {
        padding: var(--spacing-lg) 0;
    }
    
    .gif-placeholder {
        min-height: 200px;
        padding: var(--spacing-sm);
    }
    
    .how-it-works-gif {
        border-radius: var(--radius-md);
    }
    
    .gif-placeholder-icon {
        font-size: 48px;
        margin-bottom: var(--spacing-sm);
    }
    
    .gif-placeholder-content p {
        font-size: var(--font-size-base);
    }
    
    .step-item-card {
        padding: var(--spacing-md);
    }
    
    .step-item-number {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-base);
    }
    
    .step-item-card h3 {
        font-size: var(--font-size-sm);
    }
    
    .step-bonus {
        font-size: var(--font-size-sm);
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .features-section {
        padding: var(--spacing-lg) 0;
        margin-top: var(--spacing-md);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
    
    .feature-card-content h3 {
        font-size: var(--font-size-sm);
    }
    
    .feature-card-content p {
        font-size: var(--font-size-xs);
    }
    
    /* Deposits Section Small Mobile */
    .deposits-section {
        padding: var(--spacing-lg) 0;
    }
    
    .tabs-header {
        gap: var(--spacing-xs);
    }
    
    .tab-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
        border-radius: var(--radius-md);
    }
    
    .tab-btn.active {
        transform: translateY(-2px) scale(1);
    }
    
    .deposit-card {
        padding: var(--spacing-lg);
    }
    
    .deposit-title {
        font-size: var(--font-size-lg);
    }
    
    .rate-value {
        font-size: var(--font-size-base);
    }
    
    .deposit-feature {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-label,
    .feature-value {
        font-size: var(--font-size-sm);
    }
    
    /* Calculator Small Mobile */
    .calculator-section {
        padding: var(--spacing-sm) 0;
        overflow-x: hidden;
    }
    
    .calculator-section * {
        box-sizing: border-box;
        min-width: 0;
        min-height: 0;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    .calculator-section input,
    .calculator-section select {
        min-width: 0 !important;
        font-size: 16px !important;
    }
    
    .calculator-section .section-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-md);
        padding: 0 4px;
    }
    
    .calculator-tabs {
        gap: 4px;
        padding: 0;
        margin-bottom: 8px;
        width: 100%;
    }
    
    .calc-tab-btn {
        padding: 8px 6px;
        font-size: 11px;
        white-space: normal;
        line-height: 1.2;
        min-height: 36px;
    }
    
    .calculator-grid {
        padding: 8px 4px;
        gap: 8px;
        margin: 0;
        box-shadow: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }
    
    .calculator-inputs {
        gap: 8px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .input-group {
        margin-bottom: 6px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .input-with-slider {
        width: 100%;
        max-width: 100%;
        margin: 0;
        overflow: hidden;
    }
    
    .input-group label {
        font-size: 12px;
        margin-bottom: 3px;
        display: block;
    }
    
    .amount-input {
        font-size: 14px;
        padding: 8px 40px 8px 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-width: 1px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .currency {
        font-size: 14px;
        right: 8px;
    }
    
    .bonus-select {
        font-size: 12px;
        padding: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-width: 1px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"%3E%3Cpolyline points="6 9 12 15 18 9"%3E%3C/polyline%3E%3C/svg%3E');
        background-repeat: no-repeat;
        background-position: right 8px center;
        background-size: 16px;
        padding-right: 32px;
    }
    
    .result-card-calc {
        padding: 8px 4px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .result-card-calc h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .result-label,
    .result-value {
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
        max-width: 100%;
    }
    
    .result-row {
        padding: 4px 6px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .result-row.highlight {
        padding: 6px;
    }
    
    .result-row.highlight .result-value {
        font-size: 14px;
    }
    
    .rate-row {
        font-size: 10px;
        padding: 2px 4px;
    }
    
    .rate-info {
        padding-top: 6px;
        margin-bottom: 6px;
    }
    
    .charity-icon {
        width: 28px;
        height: 28px;
    }
    
    .charity-row {
        padding: 6px;
        margin-top: 6px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .charity-label {
        font-size: 12px;
    }
    
    .charity-value {
        font-size: 13px;
    }
    
    .base-rate-display {
        padding: 6px 8px;
        font-size: 12px;
        margin-bottom: 6px;
        border-width: 1px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .base-rate-display .rate-value {
        font-size: 13px;
    }
    
    .term-value-display {
        font-size: 13px;
        padding: 6px 8px;
        margin-bottom: 6px;
        border-width: 1px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .slider {
        height: 5px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .slider::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
        -moz-appearance: none;
        appearance: none;
        border: none;
    }
    
    .slider-labels,
    .term-labels-calc {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .slider-labels span,
    .term-labels-calc span {
        font-size: 9px;
        white-space: nowrap;
    }
    
    .result-grid {
        gap: 4px;
        margin-bottom: 6px;
        padding-bottom: 6px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .input-hint {
        font-size: 10px;
        margin-top: 2px;
    }
    
    /* Charity Small Mobile */
    .charity-section {
        padding: var(--spacing-lg) 0;
    }
    
    .charity-main-card {
        padding: var(--spacing-lg);
    }
    
    .charity-icon-large {
        font-size: 48px;
    }
    
    .charity-message {
        font-size: var(--font-size-base);
    }
    
    .charity-note {
        font-size: var(--font-size-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .counter-amount {
        font-size: 36px;
    }
    
    .counter-currency {
        font-size: 20px;
    }
    
    /* Charity Counter Section Mobile */
    .charity-counter-section {
        padding: var(--spacing-md) 0;
    }
    
    .charity-header {
        margin-bottom: var(--spacing-md);
    }
    
    .charity-title {
        font-size: 28px;
        margin-bottom: var(--spacing-xs);
        padding: 0 var(--spacing-sm);
    }
    
    .charity-description {
        font-size: var(--font-size-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .charity-counter-block {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .charity-counter-main {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .counter-main-subtitle {
        margin-bottom: var(--spacing-md);
    }
    
    .counter-main-amount {
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .counter-main-number {
        font-size: 32px;
    }
    
    .charity-countdown {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .countdown-title {
        margin-bottom: var(--spacing-md);
    }
    
    .countdown-item {
        padding: var(--spacing-xs);
    }
    
    .countdown-number {
        font-size: 28px;
    }
    
    .countdown-label {
        font-size: var(--font-size-xs);
    }
    
    .quote-text {
        font-size: var(--font-size-base);
    }
    
    .charity-img {
        border-radius: var(--radius-md);
    }
    
    /* Charity Counter Small Mobile */
    .charity-counter-section {
        padding: var(--spacing-sm) 0;
    }
    
    .charity-header {
        margin-bottom: var(--spacing-md);
    }
    
    .charity-title {
        font-size: 24px;
        padding: 0 var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
    }
    
    .charity-description {
        font-size: var(--font-size-base);
        padding: 0 var(--spacing-xs);
    }
    
    .charity-counter-block {
        gap: var(--spacing-xs);
        padding: 0 var(--spacing-xs);
    }
    
    .charity-counter-main,
    .charity-countdown {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .counter-main-title {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-md);
    }
    
    .counter-main-subtitle {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .counter-main-amount {
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .counter-main-number {
        font-size: 32px;
    }
    
    .counter-main-currency {
        font-size: 18px;
    }
    
    .countdown-title {
        margin-bottom: var(--spacing-md);
    }
    
    .countdown-value {
        font-size: 28px;
        min-width: 45px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .countdown-timer {
        gap: var(--spacing-xs);
    }
    
    .countdown-item {
        padding: var(--spacing-xs) 0;
    }
    
    /* Why Radabank Small Mobile */
    .why-radabank-section {
        padding: var(--spacing-lg) 0;
    }
    
    .trust-card {
        padding: var(--spacing-md);
    }
    
    .trust-icon {
        width: 56px;
        height: 56px;
    }
    
    .trust-number {
        font-size: 24px;
    }
    
    .trust-label {
        font-size: var(--font-size-xs);
    }
    
    .trust-description {
        font-size: var(--font-size-xs);
    }
    
    .trust-footer {
        padding: var(--spacing-lg);
    }
    
    .trust-footer-icon {
        font-size: 40px;
    }
    
    .trust-footer-text h3 {
        font-size: var(--font-size-lg);
    }
    
    .trust-footer-text p {
        font-size: var(--font-size-xs);
    }
    
    /* FAQ Small Mobile */
    .faq-section {
        padding: var(--spacing-lg) 0;
    }
    
    .faq-question {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .faq-question-text {
        font-size: var(--font-size-sm);
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
    }
    
    .faq-answer-content {
        padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
        font-size: var(--font-size-xs);
    }
    
    .faq-footer {
        padding: var(--spacing-md);
    }
    
    .faq-footer p {
        font-size: var(--font-size-sm);
    }
    
    /* Legal Small Mobile */
    .legal-section {
        padding: var(--spacing-lg) 0;
    }
    
    .legal-card {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
        flex-direction: column;
        text-align: center;
    }
    
    .legal-icon {
        width: 48px;
        height: 48px;
    }
    
    .legal-title {
        font-size: var(--font-size-sm);
    }
    
    .legal-arrow {
        width: 24px;
        height: 24px;
    }
    
    .legal-footer {
        padding: var(--spacing-md);
    }
    
    .legal-footer-icon {
        font-size: 32px;
    }
    
    .legal-footer p {
        font-size: var(--font-size-xs);
    }
    
    /* Final CTA Small Mobile */
    .final-cta-section {
        padding: var(--spacing-lg) 0;
    }
    
    .final-cta-title {
        font-size: 24px;
    }
    
    .final-cta-subtitle {
        font-size: var(--font-size-base);
    }
    
    .final-cta-action {
        padding: var(--spacing-lg);
    }
    
    .cta-icon-large {
        font-size: 64px;
    }
    
    .btn-hero {
        font-size: var(--font-size-base);
        padding: var(--spacing-sm) var(--spacing-lg);
    }
    
    .final-cta-form {
        padding: var(--spacing-lg);
    }
    
    .form-icon {
        font-size: 32px;
    }
    
    .form-header-text h3 {
        font-size: var(--font-size-lg);
    }
    
    .form-header-text p {
        font-size: var(--font-size-sm);
    }
    
    .final-form-wrapper {
        padding: var(--spacing-lg);
    }
    
    .fgvfo-block {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .fgvfo-logo img {
        width: 60px;
        height: 60px;
    }
    
    .fgvfo-text {
        font-size: var(--font-size-sm);
    }
    
    .summary-text {
        font-size: 20px;
    }
    
    /* Ultra compact calculator for small screens */
    .calculator {
        gap: var(--spacing-md);
    }
    
    .calculator-inputs {
        gap: var(--spacing-md);
    }
    
    .input-group {
        margin-bottom: 0;
    }
    
    .input-group label {
        margin-bottom: var(--spacing-xs);
        font-size: var(--font-size-sm);
    }
    
    .slider-value {
        margin-top: var(--spacing-xs);
        font-size: var(--font-size-base);
    }
    
    .term-labels {
        margin-top: var(--spacing-xs);
    }
    
        .term-labels span {
        font-size: 10px;
    }
    
    /* Individual slider thumb positioning for small screens */
    #amount::-webkit-slider-thumb {
        transform: translateY(4px) !important; /* Сумма кредита - ниже на 4px */
    }
    
    #amount::-moz-range-thumb {
        transform: translateY(4px) !important; /* Сумма кредита - ниже на 4px */
    }
    
    #term::-webkit-slider-thumb {
        transform: translateY(-4px) !important; /* Срок кредита - выше на 4px */
    }
    
    #term::-moz-range-thumb {
        transform: translateY(-4px) !important; /* Срок кредита - выше на 4px */
    }
    
    .result-card {
        padding: var(--spacing-md);
    }
    
    .result-card h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
    }
    
    .result-details {
        margin: var(--spacing-sm) 0;
        padding: var(--spacing-xs) 0;
    }
    
    .result-details .result-item {
        padding: 2px 0;
        font-size: var(--font-size-xs);
    }
    
    .main-payment {
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }
    
    .main-payment span {
        font-size: var(--font-size-base);
    }
    
    .main-payment strong {
        font-size: var(--font-size-lg);
    }
    
    .calculator-actions {
        margin: var(--spacing-sm) 0;
    }
    
    .calculator-disclaimer {
        margin-top: var(--spacing-xs);
        padding: var(--spacing-xs);
    }
    
    .calculator-disclaimer p {
        font-size: 10px;
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .upload-steps {
        grid-template-columns: 1fr;
    }
    
    /* Checkbox responsive */
    .checkbox-label {
        font-size: var(--font-size-xs);
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 14px;
        height: 14px;
    }
    
    /* Reduce pulsing animation intensity on mobile */
    .btn-pulse {
        animation: pulse 2.5s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 2px 8px rgba(0, 76, 152, 0.3), 0 0 0 0 rgba(0, 76, 152, 0.6);
        }
        50% {
            transform: scale(1.03);
            box-shadow: 0 4px 12px rgba(0, 76, 152, 0.4), 0 0 0 8px rgba(0, 76, 152, 0.2);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 2px 8px rgba(0, 76, 152, 0.3), 0 0 0 15px rgba(0, 76, 152, 0);
        }
    }
    
    .btn-pulse:hover {
        animation: glow 1.8s ease-in-out infinite;
        transform: translateY(-2px) scale(1.01);
    }
    
    /* RB24 Download Button Mobile */
    .rb24-download-main {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .rb24-download-icon {
        font-size: 36px;
        margin-bottom: var(--spacing-sm);
    }
    
    .rb24-download-main h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
    }
    
    .rb24-download-main p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-lg);
    }
    
    .rb24-download-btn {
        font-size: var(--font-size-base) !important;
        padding: var(--spacing-md) var(--spacing-lg) !important;
    }
}

/* Validation Error Styles */
.validation-error {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    animation: slideDown 0.3s ease-out;
}

.error-message {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.error-icon {
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.error-text {
    color: #dc2626;
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1.4;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 