/* Enhanced Platform1 Light Theme - style2.css */
/* Premium iGaming Design inspired by SOFTSWISS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0, #f1f5f9);
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    z-index: -2;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    animation: floatParticles 30s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes floatParticles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Enhanced Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: transform 0.3s ease;
    letter-spacing: -0.02em;
}

.logo:hover {
    transform: scale(1.05);
}

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.badge-icon {
    font-size: 1rem;
}

/* Enhanced Hero Section */
.hero {
    padding: 12rem 0 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.4rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-text p strong {
    color: #1e293b;
    font-weight: 700;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #3b82f6;
    /* margin-bottom: 0.5rem; */
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Enhanced Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    padding: 1.2rem 2.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

/* Enhanced Floating Cards */
.hero-visual {
    position: relative;
    height: 550px;
    animation: fadeInRight 1s ease 0.8s both;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-align: center;
    min-width: 200px;
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-card:hover::before {
    opacity: 1;
}

.floating-card:hover {
    transform: translateY(-20px) scale(1.08) rotateY(8deg);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}

.floating-card .value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: pulse 2.5s ease-in-out infinite;
}

.floating-card h4 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.floating-card p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.card-metric {
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Enhanced card positioning */
.card-1 {
    top: 8%;
    left: 5%;
    animation: float 7s ease-in-out infinite, slideInLeft 1s ease 1s both;
    z-index: 4;
}

.card-2 {
    top: 15%;
    right: 8%;
    animation: float 7s ease-in-out infinite -1.8s, slideInRight 1s ease 1.2s both;
    z-index: 3;
}

.card-3 {
    bottom: 20%;
    left: 8%;
    animation: float 7s ease-in-out infinite -3.5s, slideInUp 1s ease 1.4s both;
    z-index: 2;
}

.card-4 {
    bottom: 10%;
    right: 15%;
    animation: float 7s ease-in-out infinite -5.2s, slideInDown 1s ease 1.6s both;
    z-index: 1;
}

/* Platform Screenshots Section */
.platform-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.6));
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    border-radius: 25px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.tab-btn:hover:not(.active) {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.platform-content {
    position: relative;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

.screenshot-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.screenshot-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.screenshot-main img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.feature-highlight {
    position: absolute;
    z-index: 10;
}

.highlight-dot {
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3);
    animation: pulse 2s ease-in-out infinite;
    cursor: pointer;
}

.highlight-label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-highlight:hover .highlight-label {
    opacity: 1;
}

.screenshot-features h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
}

.screenshot-features ul {
    list-style: none;
    margin-bottom: 3rem;
}

.screenshot-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #374151;
}

.check-icon {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-stats .stat {
    text-align: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
}

.feature-stats .stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.feature-stats .stat span {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Enhanced Value Proposition */
.value-prop {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.2);
}

.value-icon {
    font-size: 3.5rem;
    /* margin-bottom: 1.5rem; */
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #000000e6;
    background-clip: text;
    display: block;
}

.value-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e293b;
    line-height: 1.3;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.value-card p strong {
    color: #1e293b;
    font-weight: 700;
}

.value-metrics {
    display: flex;
    gap: 1rem;
}

.metric {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
}

/* Enhanced Solutions Section */
.solutions-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5), rgba(241, 245, 249, 0.8));
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.solution-badge {
    position: absolute;
    top: -1px;
    right: calc(50% - 67px);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 4px 22px;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.solution-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.solution-card p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.solution-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
}

.solution-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.solution-stats .stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.solution-stats .stat strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.3rem;
}

.solution-stats .stat span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.solution-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Enhanced Providers Section */
.providers {
    padding: 5rem 0;
}

.providers-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.provider-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.provider-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.provider-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.provider-stat .stat-label {
    color: #64748b;
    font-weight: 600;
    font-size: 1rem;
}

.providers-categories {
    margin-bottom: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-width: 600px;
    margin: 0 auto;
}

.category-tab {
    padding: 0.8rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 25px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab.active {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.providers-scroll {
    overflow: hidden;
    margin-top: 3rem;
}

.providers-track {
    display: flex;
    animation: scroll 40s linear infinite;
    gap: 2rem;
}

.provider-logo {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.provider-logo.tier1 {
    border: 2px solid #3b82f6;
}

.provider-logo:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.provider-content {
    text-align: center;
}

.provider-name {
    font-weight: 700;
    color: #374151;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.provider-badge {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.6));
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.success-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.success-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.success-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.success-metrics .metric {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.metric-label {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info h4 {
    color: #3b82f6;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: block;
}

.author-location {
    color: #059669;
    font-size: 0.8rem;
    font-weight: 600;
}

.company-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.success-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.trust-indicators {
    margin-top: 6rem;
    text-align: center;
}

.trust-indicators h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.trust-stat {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.trust-number {
    font-size: 2rem;
    font-weight: 900;
    color: #3b82f6; 
    margin-bottom: 0.5rem;
    line-height: 1;
}

.trust-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Enhanced CTA Section */
.cta-section {
    padding: 5rem 0 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    text-align: center;
}

.cta-header {
    margin-bottom: 4rem;
}

.cta-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.cta-header p {
    font-size: 1.4rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.cta-option {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.cta-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.cta-option h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-option p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    font-weight: 600;
    color: #374151;
}

.guarantee-icon {
    font-size: 1.2rem;
}

/* Certifications Section */
.certifications {
    padding: 2rem 0 3rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.certifications-header {
    text-align: center;
    margin-bottom: 4rem;
}

.certifications-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.certifications-header p {
    font-size: 1.2rem;
    color: #fff;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.cert-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.cert-item p {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) rotate(10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-80px) scale(0.9) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-20px) rotate(2deg); 
    }
    50% { 
        transform: translateY(-30px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-15px) rotate(-2deg); 
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Utility Classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 3.8rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .solutions-grid {
        gap: 2rem;
    }
    
    .providers-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .wl-breadcrumb {
        justify-content: center;
        margin-bottom: 1rem!important;
    }
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
    }
    .btn-primary {
        font-size: 1rem;        padding: 1rem 1rem!important;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .value-grid, .success-grid {
        margin-top: 2rem;
    }
    .provider-stat {
        padding: 1rem;
    }
    .provider-stat .stat-number {
        font-size: 1.5rem;
    }
    .category-tab {
        padding: 0.8rem 1rem;
    }
    .providers-track {
        gap: 5px;
    }
    .footer-links {
        align-items: center;
    }
    .solution-badge {
        right: calc(50% - 53px);
        padding: 0.3rem 0.6rem;
    }
    .trust-stat {
        padding: 1rem 1rem;
    }
    .stat-item {
        padding: 0.8rem 0.5rem 0.7rem;
    }
    .btn-primary {
        justify-content: center;
    }
    .hero-text h1 {
        font-size: 3.2rem;
    }
    .btn-secondary {
        justify-content: center;
    }
    .hero-visual {
        height: 450px;
    }
    
    .screenshot-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-tabs {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nomobile {
        display:none!important;
    }
    .platform-showcase, .value-prop, .solutions-preview, .providers {
        padding: 3rem 0;
    }
    .hero-stats {
        margin-bottom: 2rem;
    }
    .hero {
        padding: 8rem 0 6rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 1rem 1rem;
        font-size: 1rem!important;
    }
    
    
    .hero-visual {
        height: 380px;
        margin-top: 2rem;
    }
    
    .floating-card {
        padding: 1.2rem;
        min-width: 140px;
        border-radius: 18px;
    }
    
    .floating-card .value-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .floating-card h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .floating-card p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .card-metric {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .platform-tabs {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }
    
    .tab-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .providers-stats {
        gap: 1rem;
    }
    
    .provider-logo {
        width: 150px;
        height: 80px;
    }
    
    .provider-name {
        font-size: 0.9rem;
    }
    
    .trust-stats {
        gap: 1rem;
    }
    
    .cta-guarantee {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
     
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: unset;
        margin: 0 auto;
        gap: 10px;
    }
    
    .cert-item {
        padding: 1.5rem 1rem;
    }
    
    .cert-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 8rem 0 3rem 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .certifications-header h3 {
        font-size: 1.6rem;
        line-height: 2rem;
    }
    .certifications-header p {
        font-size: 1rem;
    }
    .hero-visual {
        height: 320px;
    }
    .certifications {
        padding: 3rem 0;
    }
    .floating-card {
        padding: 1rem;
        min-width: 120px;
        border-radius: 15px;
    }
    
    .floating-card .value-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .floating-card h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .floating-card p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .card-metric {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .platform-tabs {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }
    
    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .value-card,
    .solution-card,
    .success-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .value-card h3 {
        font-size: 1.5rem;
    }
    
    .provider-logo {
        width: 120px;
        height: 70px;
    }
    
    .provider-name {
        font-size: 0.8rem;
    }
    
    
    .cta-header h2 {
        font-size: 2.2rem;        line-height: 2.5rem;
    }
    
    .cta-header p {
        font-size: 1.1rem;
    }
    .footer-logo {
        justify-content: center;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo,
    .section-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Placeholder styles for images */
.screenshot-main img {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 600;
}

.screenshot-main img::before {
    content: "Platform Screenshot";
}






/* Компактные стили для MacBook и подобных устройств */
@media screen and (min-width: 1280px) and (max-width: 1536px) and (max-height: 900px) and 
  (-webkit-min-device-pixel-ratio: 2), 
screen and (min-width: 1280px) and (max-width: 1536px) and (max-height: 900px) and 
  (min-resolution: 192dpi) {

  /* === HERO СЕКЦИЯ - КОМПАКТНАЯ ВЕРСИЯ === */
  
  /* Уменьшаем общие отступы hero */
  .hero {
    padding: 6rem 0 2rem 0; /* было 12rem 0 8rem 0 */
    min-height: 85vh; /* вместо 100vh */
  }
  .metric-label {
    font-size: 0.6rem!important;
  }
  /* Уменьшаем отступы header */
  .premium-header nav {
    padding: 0.8rem; /* было 1.2rem */
  }
  .section-header {
    margin-bottom: 1rem!important;
  }
  /* Компактная hero-content */
  .hero-content {
    gap: 0rem; /* было 5rem */
    min-height: auto; /* убираем фиксированную высоту */
  }
  .wl-subtitle {
    margin-bottom: 1rem!important;
  }
  .wl-breadcrumb {
    margin-bottom: 1rem!important;
  }
  .wl-hero-text h1 {
    font-size: 3rem!important;
  }
  .wl-hero-highlights {
    margin-bottom: 2rem!important;
  }
  .metrics-grid, .compliance-badges {
    gap: 5px!important;
  }
  /* === ТИПОГРАФИКА - КОМПАКТНЫЕ РАЗМЕРЫ === */
  
  /* Основной заголовок */
  .hero-text h1 {
    font-size: 3.2rem; /* было 4.5rem */
    margin-bottom: 1rem; /* было 2rem */
    line-height: 1.05; /* было 1.1 */
  }
  
  /* Описание */
  .hero-text p {
    font-size: 1.1rem; /* было 1.4rem */
    margin-bottom: 2rem; /* было 3rem */
    line-height: 1.5; /* было 1.7 */
  }
  
  /* Бейдж */
  .hero-badge {
    padding: 0.4rem 1rem; /* было 0.6rem 1.2rem */
    margin-bottom: 1.5rem; /* было 2rem */
    font-size: 0.8rem; /* было 0.9rem */
  }
  
  /* === СТАТИСТИКА - КОМПАКТНАЯ === */
  
  .hero-stats {
    margin-bottom: 2rem; /* было 3rem */
    gap: 1rem; /* было 1.5rem */
  }
  
  .stat-item {
    padding: 1rem 0.8rem; /* было 1.5rem 1rem */
  }
  
  .stat-number {
    font-size: 1.6rem; /* было 2rem */
    margin-bottom: 0.3rem; /* было 0.5rem */
  }
  
  .stat-label {
    font-size: 0.75rem; /* было 0.8rem */
  }
  
  /* === КНОПКИ - КОМПАКТНЫЕ === */
  
  .hero-buttons {
    gap: 1rem; /* было 1.5rem */
    margin-bottom: 1.5rem;
  }
  
  .btn-primary {
    padding: 0.9rem 2rem; /* было 1.2rem 2.5rem */
    font-size: 1rem; /* было 1.1rem */
  }
  
  .btn-secondary {
    padding: 0.9rem 2rem; /* было 1.2rem 2.5rem */
    font-size: 1rem; /* было 1.1rem */
  }
  
  /* === FLOATING CARDS - КОМПАКТНЫЕ === */
  
  .floating-card {
    padding: 1.2rem; /* было 2rem */
    min-width: 160px; /* было 200px */
  }
  
  .floating-card .value-icon {
    font-size: 2.2rem; /* было 3rem */
    margin-bottom: 0.8rem; /* было 1rem */
  }
  
  .floating-card h4 {
    font-size: 1rem; /* было 1.2rem */
    margin-bottom: 0.4rem; /* было 0.5rem */
  }
  
  .floating-card p {
    font-size: 0.9rem; /* было 1rem */
    margin-bottom: 0.8rem; /* было 1rem */
  }
  
  /* === FLOATING GUARANTEE BLOCKS === */
  
  .cta-guarantee {
    margin-left: -54px!important;
  }
  .wl-subtitle {
    font-size: 1rem!important;
  }
  .guarantee-item {
    padding: 0.7rem 1.2rem; /* было 1rem 1.8rem */
    min-width: 220px; /* было 260px */
    font-size: 0.85rem;
  }
  
  .guarantee-icon {
    font-size: 1.1rem; /* было 1.3rem */
  }
  
  /* === СЕКЦИИ ПОСЛЕ HERO === */
  
  /* Certifications */
  .certifications {
    padding: 2rem 0; /* было 2rem 0 3rem */
  }
  
  .certifications-header h3 {
    font-size: 2rem; /* было 2.5rem */
    margin-bottom: 0.8rem; /* было 1rem */
  }
  
  .certifications-header p {
    font-size: 1rem; /* было 1.2rem */
  }
  
  .cert-item {
    padding: 1.2rem 0.8rem; /* было 2rem 1rem */
  }
  
  .cert-icon {
    font-size: 2rem; /* было 2.5rem */
    margin-bottom: 0.8rem; /* было 1rem */
  }
  
  /* Platform showcase */
  .platform-showcase {
    padding: 3.5rem 0; /* было 5rem 0 */
  }
  
  .showcase-header {
    margin-bottom: 3rem; /* было 4rem */
  }
  
  .section-title {
    font-size: 2.8rem; /* было 3.5rem */
    margin-bottom: 1rem; /* было 1.5rem */
  }
  
  .section-subtitle {
    font-size: 1.1rem; /* было 1.3rem */
  }
  
  /* === АДАПТАЦИИ ДЛЯ КОНТЕЙНЕРА === */
  
  .container {
    padding: 0 1.5rem; /* было 0 20px */
    max-width: 1300px; /* было 1400px */
  }
  
  /* === SECTION HEADERS === */
  
  .section-header {
    margin-bottom: 3rem; /* было 4rem или 5rem */
  }
  
  .section-badge {
    padding: 0.4rem 0.8rem; /* было 0.5rem 1rem */
    font-size: 0.8rem; /* было 0.9rem */
    margin-bottom: 0.8rem; /* было 1rem */
  }
  
  /* === VALUE PROPOSITION === */
  
  .value-prop {
    padding: 4rem 0; /* было 8rem 0 */
  }
  
  .value-grid {
    gap: 2rem; /* было 3rem */
    margin-top: 3rem; /* было 4rem */
  }
  
  .value-card {
    padding: 2rem; /* было размер не указан, но судя по структуре уменьшаем */
  }
  
  .value-card h3 {
    font-size: 1.5rem; /* было 1.8rem */
    margin-bottom: 1rem; /* было 1.5rem */
  }
  
  .value-card p {
    font-size: 1rem; /* было 1.1rem */
    margin-bottom: 1.5rem; /* было 2rem */
  }
  
  /* === ОБЩИЕ КОМПАКТНЫЕ ПРАВИЛА === */
  
  /* Уменьшаем все большие отступы */
  section {
    padding-top: 2.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .demo-hero-text h1 {
    font-size: 3rem !important;
  }
  section.wl-hero {
    padding-top: 7.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  section.about-hero {
    padding-top: 7.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .privacy-hero h1, .cookie-hero h1, .aml-hero h1 {
    font-size: 3rem!important;
  }
  section.terms-hero, section.aml-hero, section.cookie-hero {
    padding-top: 4.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  section.privacy-nav {
    padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
  }
  section.demo-hero {
    padding-top: 8.5rem !important;
    padding-bottom: 3.5rem !important;
}
  section.hero {
    padding-top: 8.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .wl-comprehensive-preview {
    padding: 0.5rem!important;
    gap: 8px!important;
  }
  .benefit-card {
    padding: 1.5rem 2rem!important;
  }
  /* Компактные карточки */
  .solution-card, 
  .success-card,
  .testimonial-card {
    padding: 2rem !important; /* уменьшаем отступы в карточках */
  }
  .privacy-nav {
    background: rgb(235 235 235 / 90%)!important;
  }
  /* Компактные заголовки секций */
  h2.section-title {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
  }
  .terms-hero h1 {
    margin-bottom: 0.5rem!important;
    font-size: 3rem!important;
  }
  .terms-subtitle {
    font-size: 1.1rem!important;
  }
  /* Компактные сетки */
  .solutions-grid,
  .success-grid,
  .value-grid {
    gap: 2rem !important;
  }
  
  /* === СПЕЦИАЛЬНЫЕ ОПТИМИЗАЦИИ === */
  
  /* Убираем лишние анимации для производительности */
  .floating-card {
    animation-duration: 4s; /* было 7s */
  }
  
  /* Компактный header */
  .logo-text {
    font-size: 2rem; /* было 2.4rem */
  }
  
  .brand-tagline {
    font-size: 7px; /* было 8px */
    margin-top: -10px; /* было -12px */
  }
  
  /* Оптимизация для экранов MacBook */
  .hero-visual {
    height: 420px; /* было 550px */
  }
  
  /* Компактные метрики */
  .metric-value {
    font-size: 1.3rem; /* уменьшаем */
  }
  
  .metric-label {
    font-size: 0.75rem;
  }
}

/* === ДОПОЛНИТЕЛЬНАЯ ОПТИМИЗАЦИЯ ДЛЯ ОЧЕНЬ НИЗКИХ ЭКРАНОВ === */
@media screen and (min-width: 1280px) and (max-width: 1536px) and (max-height: 800px) and 
  (-webkit-min-device-pixel-ratio: 2) {
  
  /* Еще более компактно для очень низких экранов */
  .hero {
    padding: 5rem 0 1.5rem 0; /* еще меньше */
    min-height: 80vh;
  }
  
  .hero-text h1 {
    font-size: 2.8rem; /* еще меньше */
    margin-bottom: 0.8rem;
  }
  
  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-stats {
    margin-bottom: 1.5rem;
    gap: 0.8rem;
  }
  
  .stat-item {
    padding: 0.8rem 0.6rem;
  }
  
  .cta-guarantee {
    height: 350px; /* еще ниже */
    margin-top: -60px;
  }
  
  /* Убираем certifications для экономии места */
  .certifications {
    padding: 1.5rem 0;
  }
  
  .certifications-grid {
    gap: 0.8rem;
  }
  
  .cert-item {
    padding: 1rem 0.6rem;
  }
}