/* ============================================
   FLYMONEY.BIZ PARTNER LANDING PAGE STYLES
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --primary-blue: #1E5B85;
    --primary-blue-light: #2196F3;
    --primary-green: #27B06C;
    --primary-green-light: #4CAF50;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F4F8FB;
    --bg-gradient: linear-gradient(135deg, #1E5B85 0%, #27B06C 100%);
    
    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-light: #718096;
    
    /* Border & Shadow */
    --border-color: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 64px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION SPACING ===== */
section {
    padding: var(--spacing-xl) 0;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 91, 133, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

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

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

.hero-logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
}

.hero-confirmation {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-md);
    font-weight: 500;
}

/* ===== CTA BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.cta-primary {
    background: var(--bg-gradient);
    color: white;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 91, 133, 0.3);
}

.cta-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.cta-urgent {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.cta-urgent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(239, 68, 68, 0.5);
    }
}

.cta-hero {
    font-size: 1.25rem;
    padding: 22px 48px;
    min-height: 64px;
}

.cta-final {
    font-size: 1.375rem;
    padding: 24px 56px;
    min-height: 72px;
}

.telegram-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cta-center {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.cta-subtext {
    margin-top: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
}

.urgency-subtext {
    font-weight: 600;
    color: #dc2626;
}

/* ===== PROBLEM/SOLUTION SECTION ===== */
.problem-solution {
    background: var(--bg-white);
}

.two-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.problem-card {
    border-color: #fbbf24;
}

.solution-card {
    border-color: var(--primary-green);
}

.card-emoji {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.company-description {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
}

.company-description h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-blue);
}

.company-description p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(30, 91, 133, 0.1) 0%, rgba(39, 176, 108, 0.1) 100%);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-green);
    font-weight: 600;
}

/* ===== BENEFITS GRID ===== */
.what-we-offer {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-blue);
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== GEOGRAPHY SECTION ===== */
.geography {
    background: white;
}

.flags-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin: var(--spacing-lg) 0;
}

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

.flag-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: var(--spacing-xs);
    transition: all 0.3s ease;
    border: 3px solid var(--border-color);
}

.flag-circle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.flag-item p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.expansion-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: var(--spacing-lg);
}

/* ===== WIN-WIN SECTION ===== */
.win-win {
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
}

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

.win-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.for-you {
    border: 3px solid var(--primary-blue);
}

.for-us {
    border: 3px solid var(--primary-green);
}

.win-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.win-card ul {
    list-style: none;
    padding: 0;
}

.win-card li {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.win-card li:hover {
    background: var(--bg-gradient);
    color: white;
    transform: translateX(8px);
}

/* ===== COOPERATION MODEL ===== */
.cooperation-model {
    background: white;
}

.cooperation-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid var(--border-color);
}

.cooperation-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-blue);
    text-align: center;
}

.cooperation-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.currencies-section {
    margin: var(--spacing-lg) 0;
}

.currencies-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-align: center;
    color: var(--text-primary);
}

.currency-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.chip {
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
    cursor: default;
}

.chip:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

.cooperation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.coop-benefit {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: white;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.coop-icon {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 900;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
    background: var(--bg-light);
}

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

.advantage-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.advantage-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-blue);
}

.advantage-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== TARGET AUDIENCE SECTION ===== */
.target-audience {
    background: white;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.audience-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
    background: white;
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-blue);
}

.audience-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===== LIMITED OFFER SECTION ===== */
.limited-offer {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    padding: var(--spacing-xl) 0;
}

.limited-box {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 4px solid #f59e0b;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    animation: shake 3s ease-in-out infinite;
}

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

.limited-box h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.limited-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.urgency-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
}

.urgency-item {
    background: var(--bg-light);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    background: var(--bg-gradient);
    color: white;
    padding: var(--spacing-xl) 0;
}

.final-cta-content {
    text-align: center;
}

.final-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.final-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-final {
    margin-bottom: var(--spacing-lg);
}

.contact-info {
    margin-top: var(--spacing-lg);
}

.contact-info p {
    font-size: 1.125rem;
    margin: var(--spacing-xs) 0;
    color: rgba(255, 255, 255, 0.95);
}

.contact-info a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

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

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

.footer-logo p {
    font-size: 1rem;
    font-weight: 600;
}

.footer-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 4px 0;
}

/* ===== FLOATING TELEGRAM BUTTON ===== */
.floating-telegram {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-telegram:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 136, 204, 0.6);
}

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

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 16px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: var(--bg-gradient);
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sticky-cta:active {
    transform: scale(0.98);
}

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

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .benefits-grid,
    .advantages-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .win-win-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 48px;
        --spacing-lg: 32px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-logo {
        width: 140px;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .cta-hero {
        padding: 18px 32px;
        font-size: 1.125rem;
    }
    
    .cta-final {
        padding: 20px 36px;
        font-size: 1.125rem;
    }
    
    .benefits-grid,
    .advantages-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .two-cards {
        grid-template-columns: 1fr;
    }
    
    .flags-container {
        gap: var(--spacing-sm);
    }
    
    .flag-circle {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .sticky-bottom-bar {
        display: block;
    }
    
    .floating-telegram {
        bottom: 80px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .final-title {
        font-size: 1.75rem;
    }
    
    .limited-box h2 {
        font-size: 1.5rem;
    }
    
    .urgency-badge {
        font-size: 1rem;
        padding: 10px 24px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .currency-chips {
        gap: 8px;
    }
    
    .chip {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .cooperation-benefits {
        grid-template-columns: 1fr;
    }
    
    .urgency-benefits {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS & TRANSITIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .card,
    .benefit-card,
    .advantage-card,
    .audience-card,
    .win-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .floating-telegram,
    .sticky-bottom-bar {
        display: none;
    }
}
