/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header.scrolled .header-container {
    padding: 12px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-text {
    font-weight: 800;
    font-size: 24px;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: #0066cc;
}

/* Nav Toggle (Hamburger) - Premium */
.nav-toggle {
    display: none;
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    border-radius: 14px;
    width: 52px;
    height: 52px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.nav-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.45);
}

.nav-toggle:hover::before {
    opacity: 1;
}

.nav-toggle:active {
    transform: scale(0.95);
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    left: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

/* Hamburger Animation */
.nav-toggle.active {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: #fff;
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background: #fff;
}

/* Navigation */
.nav {
    display: flex;
    gap: 8px;
}

.nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.nav a:hover {
    background: #f0f7ff;
    color: #0066cc;
}

.nav-phone {
    display: none;
}

.nav-inner {
    display: contents;
}

.nav-icon {
    display: none;
}

.nav-arrow {
    display: none !important;
}

.mobile-phone-header {
    display: none;
}

.nav-text {
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-telegram {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #0088cc 0%, #00a2e8 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.social-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.social-telegram i {
    font-size: 16px;
}

.social-telegram span {
    display: inline;
}

.phone {
    text-align: right;
    flex-shrink: 0;
}

.phone a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #1a1a2e;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.phone a:hover {
    color: #0066cc;
}

.phone a i {
    color: #0066cc;
    font-size: 14px;
}

.phone .work-hours {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* Hero Section */
/* ===== HERO SECTION - PREMIUM LIGHT DESIGN ===== */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 50%, #f0f7ff 100%);
    padding: 0;
    padding-top: 80px;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 102, 204, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 200, 150, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* Background Effects */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 200, 150, 0.2) 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.2) 0%, rgba(0, 102, 204, 0.15) 100%);
    bottom: -50px;
    right: 10%;
    animation-delay: -5s;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 200, 150, 0.25) 0%, rgba(0, 136, 255, 0.15) 100%);
    top: 40%;
    right: -50px;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    25% { transform: translate(30px, -20px) scale(1.1); opacity: 0.3; }
    50% { transform: translate(-20px, 30px) scale(0.9); opacity: 0.5; }
    75% { transform: translate(20px, 20px) scale(1.05); opacity: 0.35; }
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 102, 204, 0.3);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 20%; top: 80%; animation-delay: -2s; }
.hero-particles span:nth-child(3) { left: 35%; top: 40%; animation-delay: -4s; }
.hero-particles span:nth-child(4) { left: 50%; top: 90%; animation-delay: -6s; }
.hero-particles span:nth-child(5) { left: 65%; top: 30%; animation-delay: -8s; }
.hero-particles span:nth-child(6) { left: 75%; top: 60%; animation-delay: -10s; }
.hero-particles span:nth-child(7) { left: 85%; top: 15%; animation-delay: -12s; }
.hero-particles span:nth-child(8) { left: 90%; top: 70%; animation-delay: -14s; }
.hero-particles span:nth-child(9) { left: 5%; top: 50%; animation-delay: -16s; }
.hero-particles span:nth-child(10) { left: 45%; top: 10%; animation-delay: -18s; }

@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px);
    padding: 60px 0;
    gap: 60px;
}

.hero-content {
    max-width: 620px;
    animation: heroContentIn 1s ease-out;
}

@keyframes heroContentIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Live Badge */
.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 100, 0.1);
    border: 1px solid rgba(0, 200, 100, 0.25);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00c864;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 200, 100, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(0, 200, 100, 0); }
}

.hero-live-badge span {
    color: #059669;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Region Badge */
.region-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.2);
    color: #0066cc;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.region-badge i {
    font-size: 14px;
}

/* Hero Title */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    animation: fadeInUp 0.6s ease-out both;
}

.hero-title-line:nth-child(1) { animation-delay: 0.4s; }
.hero-title-line:nth-child(2) { animation-delay: 0.5s; }
.hero-title-line:nth-child(3) { animation-delay: 0.6s; }

.hero-title-accent {
    background: linear-gradient(135deg, #0066cc 0%, #00b359 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

.subtitle-highlight {
    color: #1a1a2e;
    font-weight: 600;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(0, 102, 204, 0.12);
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 50, 100, 0.06);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: #fff;
    border-color: rgba(0, 136, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.12);
}

.trust-badge i {
    color: #0066cc;
    font-size: 14px;
}

.trust-badge span {
    color: #374151;
    font-size: 13px;
    font-weight: 500;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.9s both;
}

.hero-call-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #00b359 0%, #00c896 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 179, 89, 0.3);
}

.hero-call-btn .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.hero-call-btn:hover .btn-glow {
    transform: translate(-50%, -50%) scale(1);
}

.hero-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 200, 150, 0.4);
}

.hero-call-btn i,
.hero-call-btn span {
    position: relative;
    z-index: 1;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #fff;
    border: 2px solid rgba(0, 102, 204, 0.2);
    color: #0066cc;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 50, 100, 0.08);
    transition: all 0.4s ease;
}

.hero-cta-btn:hover {
    background: #0066cc;
    border-color: #0066cc;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.25);
}

.hero-cta-btn i {
    animation: bounceDown 2s ease-in-out infinite;
}

/* Hero Form Card */
.hero-form-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 102, 204, 0.1);
    border-radius: 24px;
    padding: 24px;
    max-width: 520px;
    box-shadow: 
        0 4px 20px rgba(0, 50, 100, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.6s ease-out 1s both;
}

.form-card-glow {
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0066cc, #00c896, transparent);
    border-radius: 2px;
}

.form-card-header {
    margin-bottom: 16px;
}

.form-quick-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 200, 150, 0.1) 100%);
    color: #0066cc;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-quick-badge i {
    color: #f59e0b;
}

.hero-request-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.hero-input-group {
    position: relative;
}

.hero-input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.hero-input-group input {
    width: 100%;
    min-width: 160px;
    height: 54px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0 16px 0 44px;
    font-size: 16px;
    font-family: inherit;
    color: #1a1a2e;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.hero-input-group input::placeholder {
    color: #94a3b8;
}

.hero-input-group input:focus {
    outline: none;
    background: #fff;
    border-color: #0066cc;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.hero-input-group input:focus + i,
.hero-input-group:focus-within i {
    color: #0066cc;
}

.hero-request-btn {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    padding: 0 28px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.4s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.25);
}

.hero-request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.35);
}

.hero-request-btn:disabled {
    opacity: 0.7;
    cursor: default;
    transform: none;
}

.hero-request-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-request-btn:hover i {
    transform: translateX(3px);
}

.hero-request-note {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 0;
    font-size: 13px;
    color: #64748b;
}

.hero-request-note i {
    color: #00c864;
    font-size: 12px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    flex-shrink: 0;
    animation: heroVisualIn 1s ease-out 0.5s both;
}

@keyframes heroVisualIn {
    from { opacity: 0; transform: translateX(50px) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-visual-card {
    position: relative;
    width: 320px;
    height: 320px;
}

.visual-ring {
    position: absolute;
    inset: -20px;
    border: 2px solid rgba(0, 102, 204, 0.15);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

.visual-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #0066cc;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.5);
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.visual-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 
        0 25px 60px rgba(0, 50, 100, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.08);
}

.visual-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(0, 102, 204, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 50, 100, 0.12);
}

.visual-badge i {
    color: #0066cc;
    font-size: 14px;
}

.visual-badge span {
    color: #1a1a2e;
    font-size: 13px;
    font-weight: 600;
}

/* Floating Stats */
.hero-stats-float {
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
}

.stat-float-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 102, 204, 0.1);
    padding: 20px 24px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 50, 100, 0.1);
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-float-num {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #0066cc 0%, #00b359 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-float-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* About Me Section - Premium */
.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about-card {
    position: relative;
    background: #fff;
    border-radius: 32px;
    box-shadow: 
        0 25px 80px rgba(0, 50, 100, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.08);
}

.about-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: aboutGlow 8s ease-in-out infinite alternate;
}

@keyframes aboutGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    100% { transform: translate(-50px, 50px) scale(1.2); opacity: 0.9; }
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 60px;
    position: relative;
    z-index: 1;
}

.about-photo-wrapper {
    position: relative;
    flex-shrink: 0;
}

.photo-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc 0%, #00aaff 50%, #0066cc 100%);
    animation: ringRotate 4s linear infinite;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border: 6px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-photo i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.9);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.status-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
    z-index: 2;
}

.status-badge i {
    font-size: 8px;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.about-info {
    flex: 1;
}

.about-header {
    margin-bottom: 24px;
}

.about-label {
    display: inline-block;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0066cc;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-name {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    letter-spacing: -1px;
}

.about-title {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 32px;
    max-width: 600px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    background: #fff;
    border-color: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}

.feature-text span {
    font-size: 13px;
    color: #64748b;
}

.about-cta {
    display: flex;
    gap: 16px;
}

.about-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.35);
    transition: all 0.3s ease;
}

.about-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.45);
}

.about-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.about-btn-secondary:hover {
    border-color: #0066cc;
    color: #0066cc;
    background: #f0f9ff;
}

.about-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.deco-1 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    animation: decoFloat 6s ease-in-out infinite;
}

.deco-2 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation: decoFloat 8s ease-in-out infinite reverse;
}

.deco-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 25%;
    border-color: rgba(0, 102, 204, 0.15);
    animation: decoFloat 5s ease-in-out infinite;
}

@keyframes decoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* About Section Mobile */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-card {
        border-radius: 24px;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 24px;
        gap: 30px;
    }
    
    .about-photo {
        width: 140px;
        height: 140px;
    }
    
    .about-photo i {
        font-size: 48px;
    }
    
    .about-name {
        font-size: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        justify-content: flex-start;
        text-align: left;
    }
    
    .about-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .about-btn-primary,
    .about-btn-secondary {
        justify-content: center;
        width: 100%;
    }
    
    .deco-circle {
        display: none;
    }
}

/* Request Section */
.request-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.request-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.request-section-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.request-info {
    flex: 1;
    max-width: 500px;
}

.request-info h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.request-info-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.request-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    font-size: 22px;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.benefit-text span {
    font-size: 14px;
    color: #6b7280;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.privacy-note i {
    font-size: 11px;
}

/* Premium Request Form */
.request-form-wrapper {
    position: relative;
    width: 420px;
    flex-shrink: 0;
    max-width: 100%;
    perspective: 1000px;
}

.form-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.4), transparent 70%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.8;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

.request-form {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px -10px rgba(15, 23, 42, 0.2),
        0 10px 20px -5px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.request-form:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 70px -10px rgba(15, 23, 42, 0.25),
        0 15px 30px -5px rgba(15, 23, 42, 0.15);
}

.request-form-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 40px 32px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.header-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(30px);
}

.request-form-header::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(30px);
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fbbf24;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-badge i {
    color: #fbbf24;
    font-size: 14px;
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
}

.request-form-header h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.request-form-header p {
    color: #94a3b8;
    font-size: 15px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.request-form-body {
    padding: 32px;
    background: #fff;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
    z-index: 2;
    transition: color 0.3s ease;
}

.input-group:focus-within .input-icon {
    color: #2563eb;
}

.input-group textarea + .input-icon,
.input-group:has(textarea) .input-icon {
    top: 20px;
    transform: none;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    background: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1e293b;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.input-group textarea {
    resize: none;
    min-height: 100px;
}

.request-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 32px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.request-submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.request-submit-btn:hover::after {
    transform: translateX(100%);
}

.request-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px -10px rgba(37, 99, 235, 0.5);
}

.request-submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.request-submit-btn:hover .btn-icon {
    transform: translateX(4px) rotate(-45deg);
}

.request-form-footer {
    padding: 20px 32px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.privacy-note {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.privacy-note i {
    color: #10b981;
}

/* Request Form Success State */
.request-form .success-state {
    padding: 60px 32px;
    text-align: center;
}

.request-form .success-state .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.request-form .success-state h4 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.request-form .success-state p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 60px 0;
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.stats-image {
    position: relative;
}

.stats-image img {
    max-width: 400px;
    border-radius: 20px;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #0066cc;
}

.stat-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Breakdowns Section */
.breakdowns {
    padding: 60px 0;
    background: #fafbfc;
    overflow: hidden;
}

.breakdowns h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.breakdowns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.breakdown-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.breakdown-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.breakdown-image {
    height: 140px;
    overflow: hidden;
    background: #f5f5f5;
}

.breakdown-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breakdown-card h3 {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 10px 5px;
    color: #333;
}

.breakdown-card .price {
    font-size: 12px;
    color: #0066cc;
    padding-bottom: 15px;
}

.all-breakdowns-text {
    display: block;
    text-align: center;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    padding: 20px;
    margin: 0 auto;
}

/* Important Info Section */
.important-info {
    padding: 60px 0;
    background: #fff;
}

.important-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.important-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background: #fafbfc;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.reviews-stats {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.reviews-count {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.count-number {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
}

.count-label {
    font-size: 16px;
    color: #6b7280;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 30px;
    border-left: 2px solid #e5e7eb;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 16px;
}

.rating-value {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

/* Reviews Carousel */
.reviews-carousel-wrapper {
    position: relative;
    margin: 0 -20px 30px;
    padding: 10px 0;
}

.reviews-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 16px 28px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(90deg, #f8fbff 0%, transparent 100%);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(-90deg, #f8fbff 0%, transparent 100%);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
}

.carousel-btn {
    position: relative;
    width: 56px;
    height: 56px;
    min-width: 56px;
    flex-shrink: 0;
    border-radius: 16px;
    border: none;
    background: linear-gradient(145deg, #1a1a2e, #252545);
    box-shadow: 
        0 8px 32px rgba(26, 26, 46, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.carousel-btn:hover {
    background: linear-gradient(145deg, #2d2d44, #353555);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 16px 48px rgba(26, 26, 46, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.carousel-btn:hover::before {
    opacity: 1;
}

.carousel-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        0 4px 16px rgba(26, 26, 46, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-btn:active::after {
    transform: scale(2);
    opacity: 0;
    transition: transform 0s, opacity 0.3s ease;
}

.carousel-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.carousel-btn-prev:hover i {
    transform: translateX(-2px);
}

.carousel-btn-next:hover i {
    transform: translateX(2px);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 16px;
    min-height: 20px;
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 140px);
    align-items: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(37, 37, 69, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.carousel-dots::-webkit-scrollbar {
    display: none;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    flex: 0 0 auto;
    position: relative;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    width: 36px;
    border-radius: 999px;
    box-shadow:
        0 4px 16px rgba(251, 191, 36, 0.5),
        0 0 0 2px rgba(251, 191, 36, 0.2);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow:
            0 4px 16px rgba(251, 191, 36, 0.5),
            0 0 0 2px rgba(251, 191, 36, 0.2);
    }
    50% {
        box-shadow:
            0 4px 20px rgba(251, 191, 36, 0.6),
            0 0 0 4px rgba(251, 191, 36, 0.15);
    }
}

/* Анимация появления карточек */
@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.review-card {
    flex: 0 0 320px;
    min-width: 320px;
    opacity: 0;
    animation: cardSlideIn 0.6s ease forwards;
    background: linear-gradient(145deg, #ffffff 0%, #fafcff 100%);
    border-radius: 18px;
    padding: 22px 22px 20px;
    box-shadow: 
        0 10px 40px rgba(0, 50, 100, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.06);
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.review-card.animate-in {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(0, 50, 100, 0.12),
        0 4px 15px rgba(0, 0, 0, 0.06);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #00aaff 50%, #0066cc 100%);
}

.review-date {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #8899aa;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.review-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    padding-right: 110px;
}

.review-card > p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.verified-badge i {
    font-size: 13px;
    color: #0066cc;
}

/* Premium Review Form */
.review-form-wrapper {
    position: relative;
    margin: 60px auto 40px;
    max-width: 560px;
}

.review-form-glow {
    display: none;
}

.review-form {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 24px;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.1),
        0 12px 40px rgba(0, 0, 0, 0.06),
        0 0 1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8ecf1;
    overflow: hidden;
}

.form-header {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 50%, #1e1e38 100%);
    padding: 36px 32px 32px;
    text-align: center;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.form-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.form-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 146, 60, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 1px solid rgba(251, 191, 36, 0.25);
    box-shadow: 
        0 8px 24px rgba(251, 191, 36, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-icon i {
    font-size: 26px;
    color: #fbbf24;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.4));
}

.form-header h3 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-subtitle {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}

.form-body {
    padding: 36px 32px 32px;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.input-group {
    margin-bottom: 22px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.input-group label i {
    color: #0066cc;
    margin-right: 6px;
}

.review-form input,
.review-form textarea {
    width: 100%;
    border: 2px solid #e6eef9;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    background: #fafbfc;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: #1a1a2e;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 26, 46, 0.1);
    outline: none;
}

.review-form input:hover,
.review-form textarea:hover {
    border-color: #c0c8d0;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
    color: #9ca3af;
}

.review-form textarea {
    resize: vertical;
    min-height: 110px;
}

.btn-premium {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 50%, #1e1e38 100%);
    color: #fff;
    padding: 18px 28px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(26, 26, 46, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #2d2d44 0%, #353555 50%, #2d2d44 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(26, 26, 46, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-premium:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 12px rgba(26, 26, 46, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-premium i {
    font-size: 15px;
}

/* Trust Info Banner - integrated into form (Premium Design) */
.trust-info-banner {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e 0%, #252545 50%, #1e1e38 100%);
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.trust-info-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.trust-info-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.trust-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.trust-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00c77e 0%, #00a569 100%);
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 
        0 4px 16px rgba(0, 182, 122, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-logo:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(0, 182, 122, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.trust-logo i {
    color: #fff;
    font-size: 15px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.trust-logo span {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.trust-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
}

.trust-info-text {
    color: #a0b0c5;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.trust-info-text strong {
    color: #fff;
    font-weight: 600;
}

/* Input hints - Premium */
.input-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.06) 0%, rgba(26, 26, 46, 0.02) 100%);
    border: 1px solid rgba(26, 26, 46, 0.12);
    border-left: 3px solid #1a1a2e;
    border-radius: 0 12px 12px 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.input-hint:hover {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.1) 0%, rgba(26, 26, 46, 0.04) 100%);
    border-left-color: #2d2d44;
}

.input-hint i {
    color: #1a1a2e;
    font-size: 13px;
    flex-shrink: 0;
}

/* Reject reasons - Subtle Info Block */
.reject-reasons {
    position: relative;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.reject-reasons::before {
    display: none;
}

.reject-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reject-title i {
    font-size: 12px;
    color: #9ca3af;
}

.reject-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reject-tags span {
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.25s ease;
    cursor: default;
}

.reject-tags span:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

/* Hide old moderation-notice styles */
.moderation-notice,
.trust-header,
.trust-badge,
.trust-why,
.why-title,
.why-list,
.trust-process,
.process-step,
.step-icon,
.step-text,
.trust-footer,
.trust-stats,
.trust-stat,
.trust-features,
.trust-feature,
.feature-icon-wrap {
    display: none;
}

/* Remove old moderation styles */
.moderation-left,
.moderation-right,
.verification-badge,
.badge-logo.trustpilot-badge,
.trustpilot-rating,
.badge-points,
.moderation-text,
.moderation-chip-line,
.moderation-steps,
.moderation-meta {
    display: none;
}

@media (max-width: 600px) {
    .trust-info-banner {
        padding: 16px;
    }
    
    .trust-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .trust-info-text {
        font-size: 12px;
    }
    
    .input-hint {
        font-size: 11px;
        padding: 8px 10px;
    }
    
    .reject-reasons {
        padding: 14px;
    }
    
    .reject-tags span {
        font-size: 10px;
        padding: 5px 10px;
    }
}

.promo-banner {
    margin: 30px auto;
    text-align: center;
    max-width: 60%;
}

.promo-banner img {
    max-width: 60%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.more-reviews-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 30px;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255,193,7,0.3);
}

.more-reviews-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,193,7,0.4);
}

/* Brands Section */
.brands {
    padding: 50px 0;
    background: #fff;
}

.brands-header-premium {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.brands-header-premium h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.brands-header-premium p {
    font-size: 14px;
    color: #64748b;
}

.brands-image-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.brands-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.brands-image:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #fff;
}

.contact-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.contact-content {
    flex: 1;
    padding: 50px 60px;
}

.contact h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 700;
}

.contact p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.contact p a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.contact p a:hover {
    text-decoration: underline;
}

.contact-phone {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.contact-phone strong {
    font-size: 22px;
    color: #1a1a2e;
    font-weight: 700;
    white-space: nowrap;
}

.contact-phone span {
    font-size: 12px;
    color: #999;
}

.contact-image {
    flex: 1;
    min-width: 0;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #f5f5f5;
    padding: 25px 0;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo .logo-text {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.footer-logo .logo-accent {
    color: #0066cc;
}

.footer-tagline {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.footer-links a {
    font-size: 12px;
    color: #666;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0066cc;
}

.footer-credit {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.footer-credit .credit-label {
    font-size: 9px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-credit .credit-studio {
    font-size: 14px;
    font-weight: 700;
    color: #999;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .breakdowns-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero tablet adjustments */
    .hero-container {
        gap: 40px;
    }

    .hero-title-line {
        font-size: 44px;
    }

    .hero-visual-card {
        width: 260px;
        height: 260px;
    }

    .hero-stats-float {
        right: -40px;
    }
}

@media (max-width: 768px) {
    /* Mobile Header */
    .header-container {
        position: relative;
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(45, 45, 68, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: scale(1.1);
        overflow-y: auto;
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    
    .nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }
    
    .nav::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -30%;
        width: 80%;
        height: 80%;
        background: radial-gradient(circle, rgba(0, 153, 255, 0.15) 0%, transparent 70%);
        pointer-events: none;
        animation: nav-glow 8s ease-in-out infinite;
    }
    
    @keyframes nav-glow {
        0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
        50% { transform: translate(-20%, 30%) scale(1.2); opacity: 0.8; }
    }
    
    .nav-inner {
        display: flex;
        flex-direction: column;
        min-height: 100%;
        padding: 120px 40px 40px;
        position: relative;
    }
    
    .nav a {
        padding: 20px 24px;
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        border-radius: 16px;
        border: none;
        background: rgba(255,255,255,0.05);
        margin-bottom: 12px;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav.active a {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav.active a:nth-child(3) { transition-delay: 0.2s; }
    
    .nav a:hover,
    .nav a:active {
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 153, 255, 0.3) 100%);
        color: #fff;
        transform: translateX(8px);
    }
    
    .nav-icon {
        display: flex;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 153, 255, 0.2) 100%);
        border-radius: 14px;
        color: #0099ff;
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .nav-text {
        flex: 1;
    }
    
    .nav-arrow {
        display: block;
        color: rgba(255,255,255,0.3);
        font-size: 12px;
        transition: all 0.3s ease;
    }
    
    .nav a:hover .nav-arrow {
        color: #0099ff;
        transform: translateX(4px);
    }
    
    .nav-phone {
        display: block;
        margin-top: auto;
        padding: 30px 24px;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 153, 255, 0.1) 100%);
        border-radius: 20px;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
    }
    
    .nav.active .nav-phone {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-phone a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        font-size: 24px;
        font-weight: 800;
        color: #fff;
        text-decoration: none;
        margin-bottom: 10px;
        padding: 0;
        background: none;
        opacity: 1;
        transform: none;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .nav-phone a i {
        background: linear-gradient(135deg, #00cc66 0%, #00ff88 100%);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        color: #fff;
        font-size: 18px;
        box-shadow: 0 4px 15px rgba(0, 204, 102, 0.3);
    }
    
    .nav-phone p {
        font-size: 14px;
        color: rgba(255,255,255,0.6);
        margin: 0;
        letter-spacing: 0.5px;
    }
    
    /* Close button styling for mobile nav */
    .nav-close-area {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.1);
        border-radius: 14px;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .nav-close-area:hover {
        background: rgba(255, 71, 87, 0.3);
    }
    
    .mobile-phone-header {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        color: #1a1a2e;
        text-decoration: none;
        order: 1;
        flex: 0 0 auto;
        justify-content: center;
        white-space: nowrap;
        padding: 6px 10px;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }
    
    .mobile-phone-header i {
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: linear-gradient(135deg, #00a2e8 0%, #0066cc 100%);
        color: #fff;
        font-size: 12px;
        box-shadow: 0 6px 18px rgba(0, 102, 204, 0.25);
    }
    
    .mobile-phone-header span {
        white-space: nowrap;
    }
    
    .header-right {
        display: none;
    }
    
    .social-telegram span {
        display: none;
    }
    
    .social-telegram {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
    }
    
    .social-telegram i {
        font-size: 18px;
    }
    
    .phone {
        display: none;
    }
    
    /* Mobile Nav Overlay - hidden since nav is fullscreen */
    .nav-overlay {
        display: none;
    }

    /* ===== HERO MOBILE - PREMIUM ===== */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero::before {
        width: 100%;
    }

    .hero-bg-effects {
        opacity: 0.7;
    }

    .hero-orb-1 {
        width: 200px;
        height: 200px;
    }

    .hero-orb-2 {
        width: 150px;
        height: 150px;
    }

    .hero-orb-3 {
        display: none;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        gap: 40px;
        padding: 20px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-live-badge {
        justify-content: center;
    }

    .hero-title-line {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-call-btn,
    .hero-cta-btn {
        padding: 16px 28px;
        font-size: 15px;
    }

    .hero-form-card {
        max-width: 100%;
    }

    .hero-request-form {
        grid-template-columns: 1fr;
    }

    .hero-request-btn {
        width: 100%;
    }

    /* Скрываем визуал на мобильных - контент важнее */
    .hero-visual {
        display: none;
    }

    .hero-visual-card {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .visual-ring {
        inset: -15px;
    }

    .hero-stats-float {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 20px;
    }

    .stat-float-item {
        padding: 16px 20px;
    }

    .stat-float-num {
        font-size: 24px;
    }
    
    /* Mobile Request Section */
    .request-section {
        padding: 50px 0;
    }
    
    .request-section-inner {
        flex-direction: column;
        gap: 40px;
    }
    
    .request-info {
        max-width: 100%;
        text-align: center;
    }
    
    .request-info h2 {
        font-size: 28px;
    }
    
    .request-benefits {
        align-items: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .benefit-text {
        align-items: center;
    }
    
    /* Mobile Request Form */
    .request-form-wrapper {
        width: 100%;
    }
    
    .form-glow {
        display: none;
    }
    
    .request-form {
        border-radius: 20px;
    }
    
    .request-form-header {
        padding: 24px 20px;
    }
    
    .request-form-header h3 {
        font-size: 20px;
    }
    
    .request-form-body {
        padding: 24px 20px;
    }
    
    .input-group input,
    .input-group textarea {
        padding: 16px 16px 16px 65px;
        font-size: 16px;
    }
    
    .input-icon {
        width: 36px;
        height: 36px;
        left: 14px;
    }
    
    .request-submit-btn {
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .request-form-footer {
        padding: 16px 20px;
    }
    
    .guarantee-badges {
        gap: 16px;
    }
    
    .guarantee-item {
        font-size: 12px;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stats-image img {
        max-width: 100%;
    }
    
    /* Мобильные отступы для секций */
    .important-info {
        padding: 30px 0;
    }
    
    .important-info h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .important-info p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .reviews {
        padding: 30px 0;
    }
    
    .reviews-header {
        margin-bottom: 20px;
    }
    
    .reviews h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .reviews-stats {
        padding: 12px 20px;
        gap: 15px;
    }
    
    .reviews-rating {
        padding-left: 15px;
    }
    
    .count-number {
        font-size: 28px;
    }
    
    .count-label {
        font-size: 12px;
    }
    
    .reviews-carousel-wrapper {
        margin: 0 -16px 20px;
    }
    
    .reviews-carousel {
        padding: 15px 16px 20px;
        gap: 16px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;
    }
    
    .review-card {
        flex: 0 0 calc(100vw - 48px);
        min-width: calc(100vw - 48px);
        scroll-snap-align: center;
    }
    
    .carousel-fade {
        width: 20px;
    }
    
    .carousel-controls {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
        font-size: 15px;
        box-shadow: 
            0 4px 16px rgba(26, 26, 46, 0.25),
            0 2px 6px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    
    .carousel-btn:hover {
        transform: translateY(-2px) scale(1.02);
    }
    
    .carousel-dots {
        padding: 8px 12px;
        gap: 8px;
        max-width: calc(100% - 112px);
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-dot.active {
        width: 28px;
    }
    
    .review-form-wrapper {
        max-width: 100%;
        margin: 30px 0;
    }
    
    .form-header,
    .form-body,
    .moderation-notice {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .contact-card {
        flex-direction: column;
    }
    
    .contact-content {
        padding: 30px;
        text-align: center;
    }
    
    .contact-phone {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-image {
        height: 250px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-credit {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .breakdowns-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title-line {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 8px;
    }

    .trust-badge {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-call-btn,
    .hero-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .hero-form-card {
        padding: 20px 16px;
    }

    .hero-visual-card {
        width: 160px;
        height: 160px;
    }

    .visual-badge {
        padding: 8px 14px;
        font-size: 11px;
    }

    .stat-float-num {
        font-size: 20px;
    }
    
    .carousel-controls {
        gap: 8px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
        font-size: 14px;
    }
    
    .carousel-dots {
        padding: 6px 10px;
        gap: 6px;
        max-width: calc(100% - 100px);
    }
    
    .carousel-dot {
        width: 7px;
        height: 7px;
    }
    
    .carousel-dot.active {
        width: 24px;
    }
}

/* Mobile Bottom Bar - Premium */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
    z-index: 998;
    gap: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-bottom-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-call-btn {
    background: linear-gradient(135deg, #00cc66 0%, #00e676 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 204, 102, 0.35);
}

.mobile-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 204, 102, 0.45);
}

.mobile-call-btn:active {
    transform: scale(0.96);
}

.mobile-telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #00b4e6 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.35);
}

.mobile-telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.45);
}

.mobile-telegram-btn:active {
    transform: scale(0.96);
}

.mobile-bottom-bar i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
    }
    
    .footer {
        padding-bottom: 90px;
    }
}

.success-message {
    text-align: center;
    padding: 30px 20px;
}
.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 15px;
}
.success-message h4 {
    font-size: 20px;
    color: #1a1a2e;
    margin: 0 0 10px 0;
}
.success-message p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Legal Pages Styles */
.legal-page-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.legal-page-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.legal-page-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-content {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
    text-align: justify;
}

.legal-section ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #475569;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ==================== Cookie Banner Premium ==================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: calc(100% - 40px);
    max-width: 700px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 9999;
    border-radius: 20px;
    box-shadow: 
        0 25px 80px rgba(0, 102, 204, 0.25),
        0 10px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 102, 204, 0.15);
    overflow: hidden;
}

.cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #00d4ff, #00cc66, #0066cc);
    background-size: 300% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cookie-banner-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-banner-hidden {
    transform: translateX(-50%) translateY(150%);
    opacity: 0;
}

.cookie-content {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.cookie-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
    animation: cookieFloat 3s ease-in-out infinite;
}

@keyframes cookieFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    display: none;
}

.cookie-text p {
    color: #334155;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.cookie-text a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.cookie-text a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    text-decoration: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.5);
}

.cookie-btn-more {
    background: rgba(0, 102, 204, 0.08);
    color: #0066cc;
    border: 2px solid rgba(0, 102, 204, 0.2);
}

.cookie-btn-more:hover {
    background: rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
}

.cookie-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    padding: 0;
    background: #ef4444;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.cookie-close:hover {
    background: #dc2626;
    transform: scale(1.15);
}

/* Cookie Banner Responsive */
@media (max-width: 700px) {
    .cookie-banner {
        bottom: 15px;
        width: calc(100% - 30px);
        border-radius: 16px;
    }
    
    .cookie-content {
        flex-wrap: wrap;
        padding: 16px 18px;
        gap: 12px;
    }
    
    .cookie-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 12px;
    }
    
    .cookie-text {
        flex: 1;
        min-width: calc(100% - 60px);
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 16px;
        font-size: 13px;
    }
}
