:root {
        --primary: #6366f1;
        --primary-dark: #4f46e5;
        --secondary: #06b6d4;
        --accent: #10b981;
        --telegram: #0088cc;
        --pink: #e91e63;
        --pink-dark: #c2185b;
        --dark: #0f172a;
        --dark-lighter: #1e293b;
        --text-light: #64748b;
        --text-dark: #1e293b;
        --white: #ffffff;
        --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6);
        --gradient-secondary: linear-gradient(135deg, #06b6d4, #3b82f6);
        --gradient-accent: linear-gradient(135deg, #10b981, #059669);
        --gradient-telegram: linear-gradient(135deg, #0088cc, #0066aa);
        --gradient-pink: linear-gradient(135deg, #e91e63, #c2185b);
        --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        --shadow-xl: 0 35px 60px -12px rgb(0 0 0 / 0.3);
    }

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

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--gradient-primary);
        border-radius: 4px;
    }

    /* Header */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        z-index: 1000;
        padding: 1rem 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-scrolled {
        background: rgba(15, 23, 42, 0.98);
        box-shadow: var(--shadow-lg);
        transform: translateY(0);
    }

    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
        position: relative;
    }

    .logo {
        display: flex;
        align-items: center;
        transition: transform 0.3s ease;
        z-index: 1001;
    }

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

    .logo img {
        height: 80px;
        width: auto;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2.5rem;
        align-items: center;
    }

    .nav-menu a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        position: relative;
        transition: all 0.3s ease;
        padding: 0.5rem 0;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover {
        color: white;
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

    .header-buttons {
        display: flex;
        gap: 1rem;
        align-items: center;
        z-index: 1001;
    }

    .telegram-button {
        background: var(--gradient-telegram);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .telegram-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
    }

    /* Mobile Menu Toggle */
    .mobile-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        z-index: 1002;
        padding: 0.5rem;
        border-radius: 8px;
        transition: background 0.3s ease;
    }

    .mobile-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        transition: 0.3s;
        border-radius: 3px;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Slider */
    .hero-slider {
        height: 100vh;
        position: relative;
        overflow: hidden;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .slide.active {
        opacity: 1;
    }

    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
    }

    .slide::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.1), transparent 70%);
        animation: pulse 6s ease-in-out infinite;
    }

    .slide-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .slide h1 {
        font-size: clamp(2.5rem, 6vw, 5rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff, #e2e8f0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    .slide p {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        margin-bottom: 3rem;
        opacity: 0.95;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 400;
        line-height: 1.6;
    }

    .slide-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: var(--gradient-primary);
        color: white;
        padding: 1.25rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        border: 2px solid transparent;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-telegram {
        background: var(--gradient-telegram);
        color: white;
        padding: 1.25rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
        border: 2px solid transparent;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 1.25rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-pink {
        background: var(--gradient-pink);
        color: white;
        padding: 1.25rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
        border: 2px solid transparent;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .btn-telegram:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 136, 204, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
    }

    .btn-pink:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }

    /* Slider Controls */
    .slider-controls {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 1rem;
        z-index: 3;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .slider-dot.active {
        background: white;
        transform: scale(1.2);
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
    }

    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        font-size: 1.2rem;
        z-index: 3;
    }

    .slider-nav:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-50%) scale(1.1);
    }

    .slider-prev {
        left: 2rem;
    }

    .slider-next {
        right: 2rem;
    }

    /* New  Signals Section */
    .-signals-promo {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        padding: 8rem 0;
        position: relative;
        overflow: hidden;
    }

    .-signals-promo::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.1), transparent 50%);
    }

    .-signals-promo::after {
        content: '';
        position: absolute;
        top: 20%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .signals-promo-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .signals-content {
        color: white;
    }

    .urgency-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 2rem;
        border: 1px solid rgba(220, 38, 38, 0.5);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    }

    .signals-title {
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 800;
        margin-bottom: 2rem;
        line-height: 1;
        letter-spacing: -0.02em;
    }

    .signals-title .highlight {
        display: block;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .signals-subtitle {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        font-weight: 700;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #059669, #047857);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .signals-description {
        font-size: 1.3rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

    .signals-description .accent {
        background: linear-gradient(135deg, #059669, #047857);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }

    .signals-cta {
        margin: 3rem 0;
    }

    .signals-features {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, #059669, #047857);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.8rem;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
    }

    .trading-dashboard {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
        border-radius: 25px;
        padding: 2.5rem;
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }

    .dashboard-header {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .tab-button {
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .tab-button.active {
        background: var(--gradient-primary);
        color: white;
    }

    .trading-results {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-height: 400px;
        overflow-y: auto;
    }

    .result-item {
        display: grid;
        grid-template-columns: 80px 40px 60px 80px 80px 60px 80px;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        align-items: center;
        font-size: 0.85rem;
        border-left: 3px solid transparent;
    }

    .result-item.profit {
        border-left-color: #10b981;
    }

    .result-item.loss {
        border-left-color: #ef4444;
    }

    .result-pair {
        color: white;
        font-weight: 600;
    }

    .result-type {
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
    }

    .result-type.buy {
        background: rgba(16, 185, 129, 0.2);
        color: #10b981;
    }

    .result-type.sell {
        background: rgba(239, 68, 68, 0.2);
        color: #ef4444;
    }

    .result-lots {
        color: #94a3b8;
    }

    .result-price {
        color: #cbd5e1;
        font-family: monospace;
    }

    .result-pips {
        color: #10b981;
        font-weight: 600;
    }

    .result-profit {
        color: #10b981;
        font-weight: 600;
    }

    .dashboard-summary {
        margin-top: 2rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
    }

    .summary-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        text-align: center;
    }

    .summary-item {
        color: white;
    }

    .summary-label {
        font-size: 0.8rem;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.5rem;
    }

    .summary-value {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .summary-value.profit {
        background: linear-gradient(135deg, #059669, #047857);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .summary-value.balance {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Products Section */
    .products {
        padding: 8rem 0;
        background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        position: relative;
    }

    .products::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.05), transparent 50%);
    }

    .section-title {
        text-align: center;
        margin-bottom: 5rem;
        position: relative;
        z-index: 2;
    }

    .section-title h2 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    .section-title p {
        font-size: 1.3rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .products-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 3rem;
    }

    .product-card {
        background: white;
        border-radius: 30px;
        padding: 3rem 2.5rem;
        box-shadow: var(--shadow-lg);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(99, 102, 241, 0.1);
    }

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: var(--gradient-primary);
    }

    .product-card:hover {
        transform: translateY(-15px);
        box-shadow: var(--shadow-xl);
        border-color: rgba(99, 102, 241, 0.2);
    }

    .product-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .product-icon {
        font-size: 4rem;
        margin-bottom: 1.5rem;
        display: block;
    }

    .product-name {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--text-dark);
    }

    .product-price {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 1rem;
        line-height: 1;
    }

    .product-description {
        color: var(--text-light);
        margin-bottom: 2rem;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .product-features {
        list-style: none;
        margin-bottom: 3rem;
    }

    .product-features li {
        padding: 0.75rem 0;
        color: var(--text-light);
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1rem;
        font-weight: 500;
    }

    .product-features li::before {
        content: '✓';
        color: var(--accent);
        font-weight: bold;
        font-size: 1.2rem;
        background: rgba(16, 185, 129, 0.1);
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    /* Signals Section */
    .signals {
        padding: 8rem 0;
        background: var(--dark);
        position: relative;
        overflow: hidden;
    }

    .signals::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.1), transparent 50%);
    }

    .signals-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .signals-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }

    .signal-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .signal-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-secondary);
    }

    .signal-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .signal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .signal-pair {
        font-weight: 700;
        font-size: 1.3rem;
        color: white;
    }

    .signal-type {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .signal-type.buy {
        background: rgba(16, 185, 129, 0.2);
        color: #10b981;
        border: 1px solid #10b981;
    }

    .signal-type.sell {
        background: rgba(239, 68, 68, 0.2);
        color: #ef4444;
        border: 1px solid #ef4444;
    }

    .signal-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .signal-detail {
        background: rgba(255, 255, 255, 0.05);
        padding: 1rem;
        border-radius: 10px;
        text-align: center;
    }

    .signal-detail-label {
        font-size: 0.8rem;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.25rem;
    }

    .signal-detail-value {
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
    }

    .signal-description {
        color: #cbd5e1;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Blog Section - Updated for Image Only Cards */
    .blog {
        padding: 8rem 0;
        background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        position: relative;
    }

    .blog::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 20%, rgba(139, 92, 246, 0.05), transparent 50%);
    }

    .blog-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 3rem;
    }

    .blog-card {
        border-radius: 25px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border: 1px solid rgba(139, 92, 246, 0.1);
        height: 700px; /* Fixed height for consistency */
    }

    .blog-card:hover {
        transform: translateY(-15px);
        box-shadow: var(--shadow-xl);
        border-color: rgba(139, 92, 246, 0.2);
    }

    .blog-image-full {
        position: relative;
        height: 100%;
        overflow: hidden;
        border-radius: 25px;
    }

    .blog-image-full img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .blog-card:hover .blog-image-full img {
        transform: scale(1.05);
    }

    .blog-category {
        position: absolute;
        top: 1.5rem;
        left: 1.5rem;
        background: var(--gradient-primary);
        color: white;
        padding: 0.75rem 1.25rem;
        border-radius: 25px;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .blog-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            to top,
            rgba(15, 23, 42, 0.9) 0%,
            rgba(15, 23, 42, 0.7) 50%,
            rgba(15, 23, 42, 0.3) 80%,
            transparent 100%
        );
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: flex-end;
        padding: 2rem;
        border-radius: 25px;
    }

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

    .blog-overlay-content {
        color: white;
        transform: translateY(30px);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
    }

    .blog-card:hover .blog-overlay-content {
        transform: translateY(0);
    }

    .blog-title-overlay {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        color: white;
    }

    .blog-excerpt-overlay {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        opacity: 0.9;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-meta-overlay {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
        opacity: 0.8;
    }

    .blog-author-overlay,
    .blog-date-overlay {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .blog-read-more-overlay {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--gradient-telegram);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }

    .blog-read-more-overlay:hover {
        background: var(--gradient-primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
    }

    /* FAQ Section */
    .faq {
        padding: 8rem 0;
        background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        position: relative;
    }

    .faq::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05), transparent 50%);
    }

    .faq-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .faq-grid {
        display: grid;
        gap: 1.5rem;
    }

    .faq-item {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(99, 102, 241, 0.1);
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: var(--shadow-lg);
        border-color: rgba(99, 102, 241, 0.2);
    }

    .faq-question {
        padding: 2rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .faq-question:hover {
        background: #f8fafc;
    }

    .faq-question h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.4;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--gradient-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .faq-answer {
        padding: 0 2rem 2rem;
        color: var(--text-light);
        line-height: 1.7;
        font-size: 1.05rem;
        display: none;
    }

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

    .faq-item.active .faq-answer {
        display: block;
        animation: slideDown 0.3s ease;
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Testimonials Section */
    .testimonials {
        padding: 8rem 0;
        background: var(--dark);
        position: relative;
        overflow: hidden;
    }

    .testimonials::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.08), transparent 50%);
    }

    .testimonials-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .testimonials-slider {
        position: relative;
        overflow: hidden;
    }

    .testimonials-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .testimonials-slide {
        min-width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 2.5rem;
    }

    .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        padding: 2.5rem;
        border-radius: 25px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 1rem;
        right: 2rem;
        font-size: 6rem;
        color: rgba(99, 102, 241, 0.2);
        font-family: serif;
        line-height: 1;
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow-xl);
    }

    .testimonial-content {
        font-style: italic;
        margin-bottom: 2rem;
        color: #e2e8f0;
        line-height: 1.7;
        font-size: 1.1rem;
        position: relative;
        z-index: 2;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--gradient-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 1.5rem;
        flex-shrink: 0;
        box-shadow: var(--shadow-md);
    }

    .author-info h4 {
        font-weight: 600;
        color: white;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .author-info p {
        color: #94a3b8;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .rating {
        display: flex;
        gap: 0.25rem;
        color: #fbbf24;
    }

    /* Testimonials Slider Controls */
    .slider-controls-bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-top: 3rem;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .slider-arrow:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
    }

    .slider-dots {
        display: flex;
        gap: 0.75rem;
    }

    .slider-dot-small {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .slider-dot-small.active {
        background: white;
        transform: scale(1.3);
    }

    /* Contact Section */
    .contact {
        padding: 8rem 0;
        background: linear-gradient(135deg, #0f172a, #1e293b);
        position: relative;
        overflow: hidden;
    }

    .contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 60% 40%, rgba(6, 182, 212, 0.1), transparent 60%);
    }

    .contact-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .contact-form {
        background: rgba(255, 255, 255, 0.05);
        padding: 4rem;
        border-radius: 30px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-xl);
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .form-group {
        margin-bottom: 2rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.75rem;
        color: white;
        font-weight: 600;
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1.25rem 1.5rem;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.05);
        color: white;
        font-family: inherit;
        font-size: 1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        background: rgba(255, 255, 255, 0.08);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    /* Footer */
    footer {
        background: #020617;
        color: white;
        padding: 4rem 0 2rem;
        position: relative;
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        text-align: center;
    }

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

    .footer-text {
        max-width: 600px;
        margin: 0 auto;
        color: #94a3b8;
        line-height: 1.6;
    }

    .footer-telegram {
        margin: 2rem 0;
    }

    .footer-telegram a {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #0088cc;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .footer-telegram a:hover {
        color: #0066aa;
        transform: translateY(-2px);
    }

    /* Animations */
    @keyframes pulse {

        0%,
        100% {
            opacity: 0.4;
        }

        50% {
            opacity: 0.8;
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    .animate-on-scroll {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }

    /* IMPROVED RESPONSIVE DESIGN FOR MOBILE */

    /* Mobile Breakpoints */
    @media (max-width: 1024px) {
        .nav-container {
            padding: 0 1.5rem;
        }

        .signals-promo-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .trading-dashboard {
            order: -1;
            padding: 2rem;
        }

        .result-item {
            grid-template-columns: repeat(4, 1fr);
            font-size: 0.8rem;
            gap: 0.5rem;
        }

        .dashboard-header {
            gap: 0.5rem;
        }

        .tab-button {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }
    }

    @media (max-width: 768px) {
        /* Header Mobile */
        .nav-container {
            padding: 0 1rem;
        }

        .nav-menu {
            position: fixed;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(20px);
            flex-direction: column;
            gap: 0;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            opacity: 0;
            visibility: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 999;
        }

        .nav-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .nav-menu li {
            width: 100%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-menu a {
            display: block;
            padding: 1.5rem 2rem;
            font-size: 1.1rem;
            border-radius: 0;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            background: rgba(99, 102, 241, 0.1);
            padding-left: 2.5rem;
        }

        .mobile-toggle {
            display: flex;
        }

        .header-buttons {
            gap: 0.75rem;
        }

        .telegram-button {
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            border-radius: 25px;
        }

        .telegram-button i {
            font-size: 0.9rem;
        }

        /* Hero Section Mobile */
        .hero-slider {
            height: 100vh;
            min-height: 650px;
        }

        .slide {
            background-attachment: scroll;
        }

        .slide-content {
            padding: 0 1.5rem;
            justify-content: center;
        }

        .slide h1 {
            font-size: clamp(2rem, 8vw, 3.5rem);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .slide p {
            font-size: clamp(1rem, 4vw, 1.3rem);
            margin-bottom: 2rem;
        }

        .slide-buttons {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            width: 100%;
        }

        .btn-primary,
        .btn-secondary,
        .btn-telegram,
        .btn-pink {
            width: 100%;
            max-width: 320px;
            justify-content: center;
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        .slider-controls {
            bottom: 1.5rem;
            gap: 0.75rem;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
        }

        .slider-nav {
            display: none;
        }

        /*  Signals Promo Mobile */
        .-signals-promo {
            padding: 4rem 0;
        }

        .signals-promo-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
            padding: 0 1rem;
        }

        .signals-title {
            font-size: clamp(2rem, 10vw, 3.5rem);
            margin-bottom: 1rem;
        }

        .signals-subtitle {
            font-size: clamp(1.2rem, 6vw, 2rem);
            margin-bottom: 1rem;
        }

        .signals-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .signals-cta {
            margin: 2rem 0;
        }

        .signals-features {
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .feature-item {
            font-size: 1rem;
            justify-content: center;
        }

        .urgency-badge {
            font-size: 0.8rem;
            padding: 0.5rem 1rem;
            margin-bottom: 1.5rem;
        }

        .trading-dashboard {
            order: -1;
            padding: 1.5rem;
            border-radius: 20px;
        }

        .dashboard-header {
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .tab-button {
            flex: 1;
            min-width: 70px;
            padding: 0.5rem 0.75rem;
            font-size: 0.75rem;
        }

        .trading-results {
            max-height: 300px;
        }

        .result-item {
            grid-template-columns: 1fr;
            gap: 0.5rem;
            text-align: left;
            padding: 0.75rem;
            font-size: 0.8rem;
        }

        .result-item > div {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.25rem 0;
        }

        .result-item > div::before {
            content: attr(data-label);
            font-weight: 600;
            color: #94a3b8;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .result-pair::before { content: 'Pair: '; }
        .result-type::before { content: 'Type: '; }
        .result-lots::before { content: 'Lots: '; }
        .result-price:nth-child(4)::before { content: 'Open: '; }
        .result-price:nth-child(5)::before { content: 'Close: '; }
        .result-pips::before { content: 'Pips: '; }
        .result-profit::before { content: 'Profit: '; }

        .dashboard-summary {
            margin-top: 1.5rem;
            padding: 1rem;
        }

        .summary-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .summary-value {
            font-size: 1rem;
        }

        /* Sections Spacing Mobile */
        .products,
        .signals,
        .blog,
        .faq,
        .testimonials,
        .contact {
            padding: 4rem 0;
        }

        .section-title {
            margin-bottom: 3rem;
            padding: 0 1rem;
        }

        .section-title h2 {
            font-size: clamp(2rem, 8vw, 3rem);
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.1rem;
        }

        /* Products Mobile */
        .products-container {
            padding: 0 1rem;
        }

        .products-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .product-card {
            padding: 2rem 1.5rem;
            border-radius: 25px;
        }

        .product-card:hover {
            transform: translateY(-8px);
        }

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

        .product-name {
            font-size: 1.5rem;
        }

        .product-price {
            font-size: 2.5rem;
        }

        .product-description {
            font-size: 1rem;
        }

        .product-features li {
            font-size: 0.95rem;
            padding: 0.5rem 0;
        }

        /* Signals Mobile */
        .signals-container {
            padding: 0 1rem;
        }

        .signals-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .signal-card {
            padding: 1.5rem;
            border-radius: 15px;
        }

        .signal-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .signal-pair {
            font-size: 1.5rem;
        }

        .signal-details {
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }

        .signal-detail {
            padding: 0.75rem;
        }

        /* Blog Mobile */
        .blog {
            padding: 4rem 0;
        }

        .blog-container {
            padding: 0 1rem;
        }

        .blog-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .blog-card {
            height: 350px;
            border-radius: 20px;
        }

        .blog-image-full {
            border-radius: 20px;
        }

        .blog-category {
            top: 1rem;
            left: 1rem;
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
        }

        .blog-overlay {
            padding: 1.5rem;
            border-radius: 20px;
            /* Show overlay by default on mobile for better UX */
            opacity: 1;
            background: linear-gradient(
                to top,
                rgba(15, 23, 42, 0.95) 0%,
                rgba(15, 23, 42, 0.8) 60%,
                transparent 100%
            );
        }

        .blog-overlay-content {
            transform: translateY(0);
        }

        .blog-title-overlay {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .blog-excerpt-overlay {
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
            -webkit-line-clamp: 2;
        }

        .blog-meta-overlay {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-size: 0.8rem;
        }

        .blog-read-more-overlay {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
        }

        /* FAQ Mobile */
        .faq-container {
            padding: 0 1rem;
        }

        .faq-question {
            padding: 1.5rem;
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            order: 2;
        }

        .faq-icon {
            align-self: flex-end;
            order: 1;
            width: 35px;
            height: 35px;
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            font-size: 1rem;
        }

        /* Testimonials Mobile */
        .testimonials-container {
            padding: 0 1rem;
        }

        .testimonials-slide {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .testimonial-card {
            padding: 2rem 1.5rem;
            border-radius: 20px;
        }

        .testimonial-content {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }

        .author-info h4 {
            font-size: 1rem;
        }

        .author-info p {
            font-size: 0.9rem;
        }

        .slider-controls-bottom {
            margin-top: 2rem;
            gap: 1rem;
        }

        .slider-arrow {
            width: 40px;
            height: 40px;
        }

        /* Contact Mobile */
        .contact-container {
            padding: 0 1rem;
        }

        .contact-form {
            padding: 2rem 1.5rem;
            border-radius: 25px;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem 1.25rem;
            border-radius: 12px;
            font-size: 1rem;
        }

        .form-group label {
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        /* Footer Mobile */
        .footer-content {
            padding: 0 1rem;
            text-align: center;
        }

        .footer-text {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-telegram a {
            font-size: 1rem;
        }
    }

    /* Extra Small Mobile */
    @media (max-width: 480px) {
        .slide h1 {
            font-size: clamp(1.8rem, 9vw, 2.8rem);
            line-height: 1.1;
        }

        .slide p {
            font-size: clamp(0.95rem, 4vw, 1.2rem);
        }

        .btn-primary,
        .btn-secondary,
        .btn-telegram,
        .btn-pink {
            padding: 0.875rem 1.5rem;
            font-size: 0.95rem;
            max-width: 280px;
        }

        .signals-title {
            font-size: clamp(1.8rem, 10vw, 3rem);
        }

        .signals-subtitle {
            font-size: clamp(1.1rem, 6vw, 1.8rem);
        }

        .urgency-badge {
            font-size: 0.75rem;
            padding: 0.4rem 0.8rem;
        }

        .product-card,
        .signal-card,
        .blog-card,
        .testimonial-card {
            margin: 0 0.5rem;
        }

        .contact-form {
            padding: 1.5rem 1rem;
        }

        .section-title h2 {
            font-size: clamp(1.8rem, 8vw, 2.5rem);
        }

        .section-title p {
            font-size: 1rem;
        }

        .summary-grid {
            grid-template-columns: 1fr 1fr;
        }

        .tab-button {
            padding: 0.4rem 0.6rem;
            font-size: 0.7rem;
        }

        .blog-card {
            height: 320px;
            margin: 0 0.5rem;
        }

        .blog-overlay {
            padding: 1rem;
        }

        .blog-title-overlay {
            font-size: 1.2rem;
        }

        .blog-excerpt-overlay {
            font-size: 0.9rem;
        }

        .blog-read-more-overlay {
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
        }
    }

    /* Landscape Mobile Orientation */
    @media (max-width: 768px) and (orientation: landscape) {
        .hero-slider {
            height: 100vh;
            min-height: 500px;
        }

        .slide h1 {
            font-size: clamp(2rem, 6vw, 3rem);
            margin-bottom: 0.75rem;
        }

        .slide p {
            font-size: clamp(1rem, 3vw, 1.2rem);
            margin-bottom: 1.5rem;
        }

        .slide-buttons {
            flex-direction: row;
            gap: 1rem;
        }

        .btn-primary,
        .btn-secondary,
        .btn-telegram,
        .btn-pink {
            width: auto;
            max-width: none;
            padding: 0.75rem 1.5rem;
        }
    }

    /* Print Styles */
    @media print {
        header,
        .slider-controls,
        .slider-nav,
        .mobile-toggle,
        .telegram-button,
        .btn-primary,
        .btn-secondary,
        .btn-telegram,
        .btn-pink {
            display: none !important;
        }

        body {
            font-size: 12pt;
            line-height: 1.4;
            color: #000;
        }

        .slide {
            position: relative;
            height: auto;
            page-break-after: always;
        }

        .slide::before,
        .slide::after {
            display: none;
        }

        .slide-content {
            color: #000;
            padding: 2rem;
        }
    }
    .form-group select option {
    background: #1e293b !important;
    color: white !important;
    padding: 0.75rem;
}