/* Modern Landing Page Styles - AIFO - Complete Rewrite */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Container */
.landing-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Navigation */
.landing-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: 70px;
    max-height: 70px;
    overflow: hidden;
}

.landing-navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.4rem 0;
}

.landing-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.landing-brand {
    font-size: 1.75rem;
    font-weight: 900;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    height: 60px;
}

.landing-brand img {
    height: 60px !important;
    width: auto !important;
    min-height: 60px !important;
    max-height: 60px !important;
    min-width: 120px !important;
    max-width: 150px !important;
    display: block !important;
    object-fit: contain !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.landing-nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.landing-nav-link {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.landing-nav-link:hover,
.landing-nav-link.active {
    color: #6366f1;
}

.landing-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #6366f1;
}

.landing-nav-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.landing-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.landing-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #495057;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Buttons */
.landing-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.landing-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.landing-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.landing-btn-primary:hover::before {
    left: 100%;
}

.landing-btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
    transform: translateY(-2px);
}

.landing-btn-secondary {
    background: #e5e7eb;
    color: #374151;
}

.landing-btn-secondary:hover {
    background: #d1d5db;
    color: #374151;
}

.landing-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.landing-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.landing-btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.landing-btn-sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
}

/* Hero Section - PREMIUM */
.landing-hero {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    width: 100%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.landing-hero::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% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.landing-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: floatGlow 20s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0 20px;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

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

.landing-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.landing-hero-text {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.9;
    max-width: 90%;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    position: relative;
    letter-spacing: 0.15px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.landing-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.landing-hero-visual {
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease-out 0.3s both;
}

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

.landing-hero-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.landing-hero-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Showcase Section */
.landing-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.landing-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.landing-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.landing-showcase-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.landing-showcase-text {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.landing-feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.landing-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.landing-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #6366f1;
}

.landing-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.landing-feature-desc {
    color: #6b7280;
    line-height: 1.6;
}

.landing-showcase-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
    justify-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.landing-showcase-visual::before,
.landing-showcase-visual::after {
    display: none;
}

.landing-visual-card {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.landing-visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.landing-visual-card.card-1 {
    grid-column: 2;
    grid-row: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.landing-visual-card.card-2 {
    grid-column: 2;
    grid-row: 2;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.3);
}

.landing-visual-card.card-3 {
    grid-column: 1;
    grid-row: 2;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.landing-visual-card.card-4 {
    grid-column: 3;
    grid-row: 2;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.landing-visual-card.card-3::before,
.landing-visual-card.card-3::after,
.landing-visual-card.card-4::before,
.landing-visual-card.card-4::after {
    display: none;
}

/* Three Blocks in Showcase */
.landing-showcase-three-blocks {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    justify-items: center;
}

.landing-showcase-block-card {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.landing-showcase-block-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.landing-showcase-block-card.block-card-1 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(168, 237, 234, 0.3);
}

.landing-showcase-block-card.block-card-2 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.3);
}

.landing-showcase-block-card.block-card-3 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(48, 207, 208, 0.3);
}

.landing-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing-card-label {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 0 0.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Payment Methods Section */
.landing-payment-methods {
    padding: 6rem 0;
    background: #f8f9fa;
}

.landing-payment-card {
    background: white;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    transition: all 0.3s ease;
}

.landing-payment-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.landing-payment-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.landing-payment-text {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
}

.landing-payment-text {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
}

.landing-payment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-payment-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-wrap: nowrap;
}

.landing-payment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s;
}

.landing-payment-item:hover::before {
    left: 100%;
}

.landing-payment-item:hover {
    border-color: #6366f1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.landing-payment-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.landing-payment-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: iconShine 3s ease-in-out infinite;
}

@keyframes iconShine {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.landing-payment-item:nth-child(2) .landing-payment-icon-wrapper {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.landing-payment-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
    overflow: hidden;
}

.landing-payment-item-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.landing-payment-item-desc {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.landing-payment-arrow {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.landing-payment-item:hover .landing-payment-arrow {
    color: #6366f1;
    transform: translateX(5px);
}

/* API Integration Section */
.landing-api-integration {
    padding: 6rem 0;
    background: white;
}

.landing-api-card {
    background: white;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    transition: all 0.3s ease;
}

.landing-api-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.landing-api-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-api-graphic {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.landing-api-window {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.landing-api-window-header {
    background: #f3f4f6;
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.landing-api-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.landing-api-dot:nth-child(1) {
    background: #ef4444;
}

.landing-api-dot:nth-child(2) {
    background: #f59e0b;
}

.landing-api-dot:nth-child(3) {
    background: #10b981;
}

.landing-api-window-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.landing-api-line {
    height: 8px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 4px;
    width: 100%;
}

.landing-api-line:nth-child(1) {
    width: 90%;
}

.landing-api-line:nth-child(2) {
    width: 75%;
}

.landing-api-line.short {
    width: 50%;
}

.landing-api-badge {
    position: absolute;
    bottom: -10px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.landing-api-arrows {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #6366f1;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: pulseArrow 2s ease-in-out infinite;
}

@keyframes pulseArrow {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) translateX(5px);
    }
}

.landing-api-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.landing-api-text {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.landing-api-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* Features Section */
.landing-features {
    padding: 6rem 0;
    background: #f8f9fa;
}

.landing-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.landing-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.landing-section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.landing-feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.landing-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.landing-feature-card-icon {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.landing-feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.landing-feature-card-text {
    color: #6b7280;
    line-height: 1.6;
}


/* News Section */
.landing-news {
    padding: 6rem 0;
    background: #f8f9fa;
}

.landing-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.landing-news-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.landing-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.landing-news-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.landing-news-text {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Footer */
.landing-footer {
    background: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.landing-footer-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.landing-footer-title img {
    height: 40px;
    width: auto;
    display: block;
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.landing-footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.landing-footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.landing-footer-links {
    list-style: none;
}

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

.landing-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.landing-footer-links a:hover {
    color: #6366f1;
}

.landing-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.landing-social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing-social-link:hover {
    background: #6366f1;
    color: white;
}

.landing-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1rem;
    align-items: center;
}

.landing-payment-icons img {
    height: 28px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.landing-payment-icons img:hover {
    opacity: 1;
}

.landing-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-footer-copyright {
    color: rgba(255, 255, 255, 0.7);
}

.landing-footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.landing-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.landing-footer-bottom-links a:hover {
    color: #6366f1;
}

/* Responsive */
@media (max-width: 991px) {
    .landing-container {
        padding: 0 20px;
    }

    .landing-nav-links,
    .landing-nav-actions {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .landing-nav-links.active,
    .landing-nav-actions.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .landing-nav-links {
        border-bottom: 1px solid #e5e7eb;
    }

    .landing-mobile-toggle {
        display: flex;
    }

    .landing-hero-grid,
    .landing-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .landing-hero {
        padding: 80px 0 40px;
        margin-top: 60px;
    }

    .landing-hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .landing-hero-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        line-height: 1.7;
    }

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

    .landing-hero-buttons .landing-btn {
        width: 100%;
        text-align: center;
    }

    .landing-hero-image-wrapper {
        margin-top: 1.5rem;
    }

    .landing-hero-image {
        max-width: 100%;
        border-radius: 1.5rem;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .landing-hero-image:hover {
        transform: none;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .landing-showcase {
        padding: 3rem 0;
    }

    .landing-showcase-title {
        font-size: 1.5rem;
    }

    .landing-showcase-text {
        font-size: 1rem;
    }

    .landing-showcase-visual {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .landing-visual-card {
        width: 140px;
        height: 140px;
    }

    .landing-card-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .landing-card-label {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
        padding: 0 0.25rem;
        line-height: 1.2;
    }

    .landing-payment-image-wrapper {
        padding: 1.5rem 0;
    }

    .landing-payment-image {
        max-width: 100%;
        border-radius: 12px;
    }

    .landing-payment-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .landing-payment-title {
        font-size: 1.75rem;
    }

    .landing-payment-text {
        font-size: 1rem;
    }

    .landing-payment-item {
        padding: 1.5rem;
    }

    .landing-payment-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .landing-payment-item-text {
        font-size: 1.25rem;
    }

    .landing-payment-item-desc {
        font-size: 0.875rem;
    }

    .landing-api-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .landing-api-visual {
        order: -1;
    }

    .landing-features-grid,
    .landing-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .landing-showcase-three-blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .landing-showcase-block-card {
        padding: 2rem 1.5rem;
    }

    .landing-showcase-block-icon {
        width: 80px;
        height: 80px;
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .landing-showcase-block-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .landing-showcase-block-text {
        font-size: 0.9rem;
    }

    .landing-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .landing-payment-icons {
        gap: 8px;
    }
    
    .landing-payment-icons img {
        height: 24px;
    }
}

@media (max-width: 768px) {
    .landing-container {
        padding: 0 15px;
    }

    .landing-navbar {
        padding: 0.4rem 0;
    }

    .landing-brand {
        font-size: 1.5rem;
    }
    
    .landing-brand img {
        height: 50px !important;
        max-height: 50px !important;
        min-height: 50px !important;
        min-width: 100px !important;
        max-width: 130px !important;
    }

    .landing-hero {
        padding: 60px 0 30px;
        margin-top: 50px;
    }

    .landing-hero-grid {
        gap: 1.5rem;
        padding: 0;
    }

    .landing-hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        letter-spacing: -1px;
    }

    .landing-hero-text {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .landing-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .landing-hero-buttons .landing-btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .landing-hero-image-wrapper {
        margin-top: 1rem;
    }

    .landing-hero-image {
        max-width: 100%;
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .landing-hero-image:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .landing-showcase {
        padding: 2rem 0;
    }

    .landing-showcase-grid {
        gap: 1.5rem;
    }

    .landing-showcase-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .landing-showcase-text {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .landing-feature-list {
        gap: 1.5rem;
    }

    .landing-feature-item {
        gap: 1rem;
    }

    .landing-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .landing-feature-title {
        font-size: 1.1rem;
    }

    .landing-feature-desc {
        font-size: 0.875rem;
    }

    .landing-showcase-visual {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 1rem;
        max-width: 100%;
        justify-content: center;
        margin: 0 auto;
    }

    .landing-visual-card {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .landing-visual-card.card-1 {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
    }

    .landing-visual-card.card-2 {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
    }

    .landing-visual-card.card-3 {
        grid-column: 1;
        grid-row: 2;
        justify-self: center;
    }

    .landing-visual-card.card-4 {
        grid-column: 3;
        grid-row: 2;
        justify-self: center;
    }

    .landing-showcase-three-blocks {
        grid-column: 1 / -1;
        grid-row: 3;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        justify-items: center;
        width: 100%;
    }

    .landing-showcase-block-card {
        width: 100px;
        height: 100px;
    }

    .landing-card-icon {
        font-size: 1.75rem;
        margin-bottom: 0.4rem;
    }

    .landing-card-label {
        font-size: 0.65rem;
        letter-spacing: 0.2px;
        padding: 0 0.2rem;
        line-height: 1.15;
    }

    .landing-payment-methods {
        padding: 2.5rem 0;
    }

    .landing-payment-card {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        border-radius: 16px;
        grid-template-columns: 1fr;
    }

    .landing-payment-content {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .landing-payment-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .landing-payment-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .landing-payment-list {
        gap: 0.75rem;
    }

    .landing-payment-item {
        padding: 1.25rem 1rem;
        gap: 1rem;
        border-radius: 16px;
        flex-wrap: nowrap;
        align-items: center;
    }

    .landing-payment-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .landing-payment-item-content {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .landing-payment-item-text {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: block;
    }

    .landing-payment-item-desc {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: block;
    }

    .landing-payment-arrow {
        font-size: 0.75rem;
        flex-shrink: 0;
        margin-left: auto;
    }

    .landing-api-integration {
        padding: 2.5rem 0;
    }

    .landing-api-card {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        border-radius: 16px;
    }

    .landing-api-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .landing-api-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .landing-api-graphic {
        max-width: 100%;
    }

    .landing-api-arrows {
        left: -15px;
        font-size: 1rem;
    }

    .landing-features {
        padding: 2.5rem 0;
    }

    .landing-section-header {
        margin-bottom: 2rem;
    }

    .landing-section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .landing-section-subtitle {
        font-size: 1rem;
    }

    .landing-features-grid,
    .landing-news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .landing-feature-card {
        padding: 1.5rem;
    }

    .landing-showcase-three-blocks {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        justify-items: center;
    }

    .landing-showcase-block-card {
        width: 90px;
        height: 90px;
    }

    .landing-showcase-block-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .landing-showcase-block-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .landing-showcase-block-text {
        font-size: 0.9rem;
    }

    .landing-feature-card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .landing-feature-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .landing-feature-card-text {
        font-size: 0.875rem;
    }

    .landing-news {
        padding: 2.5rem 0;
    }

    .landing-news-card {
        padding: 1.5rem;
    }

    .landing-news-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .landing-news-text {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .landing-footer {
        padding: 2.5rem 0 1.5rem;
    }

    .landing-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .landing-footer-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .landing-footer-title img {
        height: 35px;
        max-height: 35px;
        max-width: 100px;
    }

    .landing-footer-subtitle {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        margin-top: 1.5rem;
    }

    .landing-footer-text {
        font-size: 0.875rem;
    }

    .landing-footer-links {
        font-size: 0.875rem;
    }

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

    .landing-social-links {
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .landing-social-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.875rem;
    }

    .landing-payment-icons {
        gap: 6px;
        justify-content: flex-start;
        margin-top: 0.75rem;
    }
    
    .landing-payment-icons img {
        height: 20px;
    }

    .landing-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }

    .landing-footer-copyright {
        font-size: 0.875rem;
    }

    .landing-footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.875rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .landing-container {
        padding: 0 12px;
    }

    .landing-hero {
        padding: 50px 0 25px;
        margin-top: 45px;
    }

    .landing-hero-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .landing-hero-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .landing-hero-buttons .landing-btn {
        padding: 0.65rem 0.9rem;
        font-size: 0.9rem;
    }

    .landing-hero-image {
        max-width: 100%;
        border-radius: 0.75rem;
    }

    .landing-showcase {
        padding: 2rem 0;
    }

    .landing-showcase-title {
        font-size: 1.1rem;
    }

    .landing-showcase-text {
        font-size: 0.85rem;
    }

    .landing-showcase-visual {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 0.75rem;
        max-width: 100%;
        justify-content: center;
        margin: 0 auto;
    }

    .landing-visual-card {
        width: 85px;
        height: 85px;
        border-radius: 16px;
        margin: 0 auto;
    }

    .landing-visual-card.card-1 {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
    }

    .landing-visual-card.card-2 {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
    }

    .landing-visual-card.card-3 {
        grid-column: 1;
        grid-row: 2;
        justify-self: center;
    }

    .landing-visual-card.card-4 {
        grid-column: 3;
        grid-row: 2;
        justify-self: center;
    }

    .landing-showcase-three-blocks {
        grid-column: 1 / -1;
        grid-row: 3;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        justify-items: center;
    }

    .landing-showcase-block-card {
        width: 85px;
        height: 85px;
    }

    .landing-card-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .landing-card-label {
        font-size: 0.55rem;
        letter-spacing: 0.1px;
        padding: 0 0.15rem;
        line-height: 1.1;
    }

    .landing-payment-methods {
        padding: 2rem 0;
    }

    .landing-payment-card {
        padding: 1.25rem 0.75rem;
        gap: 1.25rem;
    }

    .landing-payment-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .landing-payment-text {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .landing-payment-item {
        padding: 1rem 0.75rem;
        gap: 0.75rem;
        flex-wrap: nowrap;
    }

    .landing-payment-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .landing-payment-item-content {
        flex: 1;
        min-width: 0;
    }

    .landing-payment-item-text {
        font-size: 1rem;
        word-wrap: break-word;
    }

    .landing-payment-item-desc {
        font-size: 0.75rem;
        word-wrap: break-word;
    }

    .landing-payment-arrow {
        flex-shrink: 0;
    }

    .landing-api-integration {
        padding: 2rem 0;
    }

    .landing-api-card {
        padding: 1.25rem 0.75rem;
        gap: 1.25rem;
    }

    .landing-api-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .landing-api-text {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .landing-features {
        padding: 2rem 0;
    }

    .landing-section-title {
        font-size: 1.5rem;
    }

    .landing-section-subtitle {
        font-size: 0.9rem;
    }

    .landing-feature-card {
        padding: 1.25rem;
    }

    .landing-footer {
        padding: 2rem 0 1.25rem;
    }

    .landing-footer-grid {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .landing-payment-icons img {
        height: 18px;
    }
}

/* Help Support Button (Fixed Bottom Right) */
.help-support-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.help-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    color: #1f2937;
    text-decoration: none;
}

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

.help-support-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #0088cc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.help-support-icon i {
    color: #fff;
    font-size: 1.25rem;
}

.help-support-btn:hover .help-support-icon {
    background: #006ba3;
    transform: scale(1.05);
}

.help-support-text {
    color: #1f2937;
    font-weight: 500;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1.5rem 0;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.cookie-consent-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.cookie-consent-text i {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cookie-consent-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.cookie-consent-text p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cookie-consent-btn-accept {
    background: #10b981;
    color: #fff;
}

.cookie-consent-btn-accept:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cookie-consent-btn-accept:active {
    transform: translateY(0);
}

/* Responsive для Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem 0;
    }

    .cookie-consent-content {
        padding: 0 1.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-consent-text {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-consent-text i {
        font-size: 1.25rem;
    }

    .cookie-consent-text strong {
        font-size: 1rem;
    }

    .cookie-consent-text p {
        font-size: 0.875rem;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-consent-btn {
        flex: 1;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Help Support Button на мобільних */
    .help-support-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }

    .help-support-icon {
        width: 2.25rem;
        height: 2.25rem;
    }

    .help-support-icon i {
        font-size: 1.1rem;
    }

    .help-support-text {
        display: none;
    }
}
