@font-face { font-family: 'Inter Fallback'; src: local('Arial'); ascent-override: 90.2%; descent-override: 22.48%; line-gap-override: 0%; size-adjust: 107.4%; } :root { --bg: #0b1121; --card: rgba(30, 41, 59, 0.5); --card-hover: rgba(30, 41, 59, 0.8); --card-soft: rgba(35, 48, 71, 0.4); --text: #f8fafc; --muted: #94a3b8; --accent: #00ffcc; --accent-dark: #00ccaa; --accent-glow: rgba(0, 255, 204, 0.15); --border: rgba(51, 65, 85, 0.5); --border-hover: rgba(0, 255, 204, 0.3); --max-width: 1900px; --space-xs: clamp(0.5rem, 0.4rem + 0.4vw, 1rem); --space-s: clamp(1rem, 0.8rem + 0.8vw, 2rem); --space-m: clamp(1.5rem, 1.2rem + 1.2vw, 3rem); --space-l: clamp(2rem, 1.6rem + 1.6vw, 4.5rem); --space-xl: clamp(3rem, 2.4rem + 2.4vw, 7rem); } * { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { margin: 0; font-family: 'Inter', 'Inter Fallback', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; line-height: 1.5; overflow-x: hidden; } h1 { font-size: clamp(2.2rem, 1.5rem + 3.5vw, 4.5rem); font-weight: 800; line-height: 1.1; margin: 1rem 0; } h2 { font-size: clamp(1.8rem, 1.4rem + 2vw, 3rem); font-weight: 700; } h3 { font-size: clamp(1.2rem, 1rem + 1vw, 1.8rem); font-weight: 600; } .lead { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem); color: var(--muted); line-height: 1.6; } .muted { color: var(--muted); } body.menu-open { overflow: hidden; } a { color: inherit; text-decoration: none; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); } img { max-width: 100%; display: block; } a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; } .skip-link { position: absolute; left: -9999px; top: 0.5rem; z-index: 9999; padding: 0.75rem 1.25rem; background: var(--accent); color: var(--bg); font-weight: 600; border-radius: 8px; transition: left 0.2s ease; } .skip-link:focus { left: 0.5rem; outline: 2px solid var(--text); outline-offset: 2px; } .bg-gradient { position: fixed; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(0, 255, 204, 0.05) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(0, 204, 255, 0.05) 0%, transparent 40%), radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 0%, var(--bg) 100%); z-index: 0; pointer-events: none; } .top-bar { position: sticky; top: 0; z-index: 100; background: rgba(11, 17, 33, 0.7); border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); transition: all 0.3s ease; } .top-bar-inner { max-width: var(--max-width); margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: var(--space-s) 4vw; } .brand { display: flex; flex-direction: column; position: relative; } .brand-title { font-weight: 800; letter-spacing: -0.02em; font-size: 1.4rem; background: linear-gradient(to right, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .brand-subtitle { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; } .top-nav { display: flex; gap: 2rem; color: var(--muted); font-size: 0.95rem; font-weight: 500; } .top-nav a { position: relative; } .top-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; } .top-nav a:hover { color: var(--text); } .top-nav a:hover::after { width: 100%; } .burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: var(--card); align-items: center; justify-content: center; flex-direction: column; gap: 6px; cursor: pointer; transition: 0.3s; } .burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; } .top-bar.is-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); } .top-bar.is-open .burger span:nth-child(2) { opacity: 0; transform: translateX(-10px); } .top-bar.is-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 99; padding: 2rem 6vw; overflow-y: auto; } .top-bar.is-open .mobile-menu { display: block; animation: slideIn 0.4s ease forwards; } @keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .mobile-nav { display: grid; gap: 1.5rem; } .mobile-nav a { font-size: 1.8rem; font-weight: 700; color: var(--text); } .mobile-contacts { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); display: grid; gap: 1.5rem; } .container { max-width: var(--max-width); margin: 0 auto; padding: var(--space-m) 4vw var(--space-xl); position: relative; z-index: 1; contain: layout; } .hero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--space-l); align-items: center; margin-top: var(--space-m); min-height: min(60vh, 480px); } .hero-text { min-height: 320px; } .badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 999px; font-size: 0.85rem; font-weight: 600; color: var(--accent); background: var(--accent-glow); margin-bottom: 1rem; backdrop-filter: blur(4px); } .hero-card { background: var(--card); border-radius: 32px; border: 1px solid var(--border); padding: var(--space-m); display: grid; gap: 1.5rem; text-align: center; backdrop-filter: blur(12px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1); min-height: 320px; } .hero-card:hover { transform: translateY(-10px) rotate(1deg); border-color: var(--border-hover); box-shadow: 0 30px 60px rgba(0, 255, 204, 0.1); } .hero-card img { width: clamp(150px, 10vw + 50px, 280px); height: clamp(150px, 10vw + 50px, 280px); object-fit: cover; border-radius: 24px; margin: 0 auto; border: 2px solid var(--accent); padding: 8px; background: var(--bg); box-shadow: 0 10px 30px var(--accent-glow); } .hero-card-info strong { font-size: 1.4rem; display: block; margin-bottom: 0.2rem; } .hero-card-info span { color: var(--muted); font-size: 1rem; } .cta-group { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: var(--space-m); } .btn { padding: 1rem 2.2rem; border-radius: 16px; border: 2px solid transparent; font-weight: 700; font-size: 1rem; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; position: relative; overflow: hidden; } .btn-primary { background: var(--accent); color: #0b1121; } .btn-primary:hover { background: #fff; transform: translateY(-4px); box-shadow: 0 10px 25px var(--accent-glow); } .btn-ghost { border-color: var(--border); color: var(--text); background: rgba(255, 255, 255, 0.03); } .btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); transform: translateY(-4px); } .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-s); margin: var(--space-l) 0; } .stat-card { background: var(--card-soft); border: 1px solid var(--border); border-radius: 24px; padding: var(--space-m); transition: 0.3s; } .stat-card:hover { background: var(--card); border-color: var(--border-hover); } .stat-value { font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem); font-weight: 800; line-height: 1; margin-bottom: 0.5rem; color: var(--accent); } .stat-label { color: var(--muted); font-weight: 500; font-size: 1rem; } .section { margin-top: var(--space-xl); scroll-margin-top: 120px; } .section-title { margin-bottom: var(--space-m); } .section-title h2 { margin: 0 0 1rem; letter-spacing: -0.02em; } .section-title p { color: var(--muted); margin: 0; max-width: 600px; font-size: 1.2rem; } .grid { display: grid; gap: var(--space-s); margin-top: var(--space-m); } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } .grid-2 { grid-template-columns: repeat(2, 1fr); } @media (min-width: 2000px) { .grid-3 { grid-template-columns: repeat(4, 1fr); } .grid-4 { grid-template-columns: repeat(6, 1fr); } } .card { background: var(--card); border-radius: 28px; border: 1px solid var(--border); padding: var(--space-m); transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; backdrop-filter: blur(8px); } .card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.06), transparent 40%); opacity: 0; transition: opacity 0.5s; pointer-events: none; } .card:hover::before { opacity: 1; } .card:hover { transform: translateY(-8px); border-color: var(--border-hover); background: var(--card-hover); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); } .card h3 { margin: 0 0 1rem; color: #fff; } .card p { color: var(--muted); line-height: 1.6; margin: 0; } .card ul { padding-left: 1.2rem; margin: 1.5rem 0 0; color: var(--muted); display: grid; gap: 0.5rem; } .faq-list { display: grid; gap: var(--space-s); margin-top: var(--space-m); } .faq-item { border: 1px solid var(--border); border-radius: 24px; padding: 0.5rem 1.5rem; background: var(--card); transition: 0.3s; } .faq-item[open] { border-color: var(--border-hover); background: var(--card-hover); } .faq-item summary { cursor: pointer; font-weight: 600; list-style: none; padding: 1rem 0; position: relative; padding-right: 2rem; } .faq-item summary::-webkit-details-marker { display: none; } .faq-item summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--accent); transition: 0.3s; } .faq-item[open] summary::after { content: '–'; transform: translateY(-50%); } .faq-item p { margin: 0 0 1rem; color: var(--muted); line-height: 1.7; } .slider-wrapper { position: relative; margin-top: var(--space-m); } .slider { display: flex; flex-wrap: wrap; gap: var(--space-s); padding: 1rem 0 2rem; } .slider .card { flex: 1 1 320px; min-width: 280px; } .chip { display: inline-flex; font-size: 0.75rem; font-weight: 700; padding: 0.4rem 0.8rem; border-radius: 10px; background: var(--accent-glow); color: var(--accent); margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 0.05em; } .team-card { text-align: center; } .team-card img { width: 120px; height: 120px; border-radius: 24px; object-fit: cover; border: 2px solid var(--border); margin: 0 auto 1.5rem; transition: 0.5s; } .team-card:hover img { border-color: var(--accent); transform: scale(1.05) rotate(3deg); } .quote { font-size: 1.2rem; font-style: italic; line-height: 1.6; position: relative; padding-top: 2rem; } .quote::before { content: '“'; position: absolute; top: -1rem; left: 0; font-size: 5rem; color: var(--accent); opacity: 0.2; font-family: serif; } .contact { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-l); align-items: center; background: var(--card-soft); border-radius: 40px; padding: var(--space-l); border: 1px solid var(--border); } .contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 32px; padding: var(--space-m); display: grid; gap: 1.5rem; backdrop-filter: blur(12px); } .contact-item { display: grid; gap: 0.5rem; } .contact-item a { font-size: clamp(1.1rem, 1rem + 1vw, 1.8rem); font-weight: 700; } .contact-item a:hover { color: var(--accent); } .footer { max-width: var(--max-width); margin: 0 auto; border-top: 1px solid var(--border); padding: var(--space-m) 4vw; display: flex; align-items: center; justify-content: space-between; gap: 2rem; color: var(--muted); } .socials { display: flex; gap: 1.5rem; } .social-icon { width: 28px; height: 28px; filter: brightness(0) invert(1); opacity: 0.5; transition: 0.3s; } .social-icon:hover { opacity: 1; transform: translateY(-5px) scale(1.1); } .scroll-top { width: 56px; height: 56px; border-radius: 18px; border: 1px solid var(--border); background: var(--card); color: var(--text); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); backdrop-filter: blur(8px); } .scroll-top:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-5px); } .scroll-top-footer { margin-left: auto; } @media (max-width: 1200px) { .hero { grid-template-columns: 1fr; text-align: center; } .hero-text { order: 1; } .hero-card { order: 2; max-width: 500px; margin: 0 auto; } .cta-group { justify-content: center; } .grid-4 { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 900px) { .top-nav { display: none; } .top-bar .btn-primary { display: none; } .burger { display: flex; } .stats { grid-template-columns: repeat(2, 1fr); } .contact { grid-template-columns: 1fr; padding: var(--space-m); } .grid-3 { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 600px) { .stats { grid-template-columns: 1fr; } .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } .hero-card { padding: 1.5rem; } .footer { flex-direction: column; text-align: center; gap: 1.5rem; } .scroll-top-footer { margin-left: 0; } h1 { font-size: 2.4rem; } .slider { padding-bottom: 1.5rem; } .slider .card { min-width: 100%; } } .detail-page .detail-hero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--space-l); align-items: center; margin-top: var(--space-m); } .detail-author { display: flex; align-items: center; gap: 1rem; margin-top: var(--space-m); padding: 1rem 1.5rem; border-radius: 20px; border: 1px solid var(--border); background: var(--card-soft); } .detail-author-avatar { width: 54px; height: 54px; border-radius: 16px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; background: var(--card); font-weight: 700; color: var(--accent); font-size: 1rem; overflow: hidden; flex-shrink: 0; } .detail-author-avatar img { width: 100%; height: 100%; object-fit: cover; } .detail-author-info { display: grid; gap: 0.2rem; } .detail-meta { display: grid; gap: 1.5rem; padding: var(--space-m); } .detail-meta-item { display: grid; gap: 0.5rem; } .detail-meta-item strong { font-size: 1.2rem; } .detail-sections .card p { margin: 1rem 0 0; font-size: 1.1rem; } .detail-blocks-list { display: grid; gap: var(--space-s); margin-top: var(--space-m); } .detail-block { display: grid; gap: 1.5rem; } .detail-block p, .detail-block .block-content { margin: 0; color: var(--muted); font-size: 1.1rem; line-height: 1.7; } .block-content, .section-text { word-wrap: break-word; overflow-wrap: break-word; } .block-content p, .section-text p { margin: 0 0 1rem; } .block-content p:last-child, .section-text p:last-child { margin-bottom: 0; } .block-content h3, .section-text h3 { margin: 1.5rem 0 0.75rem; font-size: 1.3rem; color: var(--text); } .block-content h3:first-child, .section-text h3:first-child { margin-top: 0; } .block-content span[style], .section-text span[style] { background-color: transparent !important; } .detail-block img { width: 100%; border-radius: 20px; border: 1px solid var(--border); } .detail-block-split { grid-template-columns: 1.1fr 0.9fr; align-items: center; } .detail-block-image-right .detail-block-text-col { order: 1; } .detail-block-image-right .detail-block-media { order: 2; } .detail-block-image-left .detail-block-text-col { order: 2; } .detail-block-image-left .detail-block-media { order: 1; } .detail-block-media { display: grid; gap: 0.8rem; } .results-list { list-style: none; margin: var(--space-m) 0 0; padding: 0; display: grid; gap: 1rem; } .results-list li { padding: 1.2rem 1.5rem; border: 1px solid var(--border); border-radius: 20px; background: var(--card-soft); font-size: 1.1rem; transition: 0.3s; } .results-list li:hover { border-color: var(--accent); transform: translateX(10px); } .detail-gallery { margin-top: var(--space-m); display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-s); } .detail-gallery img { border-radius: 24px; border: 1px solid var(--border); transition: 0.5s; } .detail-gallery img:hover { transform: scale(1.02); border-color: var(--accent); } .detail-cta { margin-top: var(--space-xl); padding: var(--space-l); border-radius: 40px; border: 1px solid var(--border); background: var(--card-soft); display: flex; align-items: center; justify-content: space-between; gap: 2rem; } .contact-form-container { background: var(--card); border: 1px solid var(--border); border-radius: 32px; padding: var(--space-m); backdrop-filter: blur(12px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); transition: 0.4s ease; } .contact-form-container:hover { border-color: var(--border-hover); } .form-group { margin-bottom: 1.5rem; position: relative; } .form-group label { display: block; margin-bottom: 0.6rem; font-weight: 600; font-size: 0.9rem; color: var(--muted); transition: 0.3s; } .form-control { width: 100%; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.2rem; color: var(--text); font-size: 1rem; font-family: inherit; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .form-control:focus { background: rgba(255, 255, 255, 0.06); border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); transform: translateY(-2px); } .form-control:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; } .form-control::placeholder { color: rgba(148, 163, 184, 0.4); } .form-group:focus-within label { color: var(--accent); } .alert { padding: 1.2rem; border-radius: 16px; margin-bottom: 2rem; font-weight: 500; display: flex; align-items: center; gap: 0.8rem; } .alert-success { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.2); } .alert-error { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); } @media (max-width: 900px) { .detail-page .detail-hero { grid-template-columns: 1fr; } .detail-cta { flex-direction: column; text-align: center; } .detail-block-split { grid-template-columns: 1fr; } } .reveal-init { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); } .reveal-init.revealed { opacity: 1; transform: translateY(0); } .hero.reveal-init { transform: translateY(50px); } .hero.revealed { transform: translateY(0); } @media (prefers-reduced-motion: reduce) { .reveal-init { transition: none; opacity: 1; transform: none; } } .case-page { max-width: var(--max-width); } .case-hero { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-m); align-items: center; padding: var(--space-l) 0; } .case-hero-text h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; } .case-hero-text .lead { font-size: 1.15rem; color: var(--muted); margin-bottom: 1.5rem; } .case-meta-row { display: flex; gap: 2rem; margin-bottom: 1.5rem; } .case-meta-item { display: flex; flex-direction: column; gap: 0.25rem; } .case-meta-item strong { font-size: 1.1rem; color: var(--accent); } .case-author { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--card-soft); border-radius: 16px; border: 1px solid var(--border); } .case-author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.1rem; overflow: hidden; } .case-author-avatar img { width: 100%; height: 100%; object-fit: cover; } .case-author-info { display: flex; flex-direction: column; } .case-author-info strong { font-size: 1rem; } .case-hero-image { border-radius: 24px; overflow: hidden; border: 1px solid var(--border); max-height: 70vh; } .case-hero-image img { width: 100%; height: 100%; max-height: 70vh; object-fit: cover; display: block; } .case-content { padding: var(--space-l) 0; } .case-block { margin-bottom: var(--space-m); } .case-block-text { font-size: 1.1rem; line-height: 1.8; color: var(--text); } .case-block-text h2 { font-size: 1.8rem; margin: 2rem 0 1rem; color: var(--text); } .case-block-text h3 { font-size: 1.4rem; margin: 1.5rem 0 0.75rem; color: var(--text); } .case-block-text p { margin-bottom: 1rem; } .case-block-content p { margin-bottom: 1rem; color: var(--muted); } .case-block-content h2, .case-block-content h3 { color: var(--text); } .case-block-image { margin: var(--space-m) 0; } .case-block-image img { width: auto; max-width: 100%; max-height: 80vh; margin: 0 auto; object-fit: contain; border-radius: 16px; border: 1px solid var(--border); } .case-block-image--medium { max-width: 600px; margin-left: auto; margin-right: auto; } .case-block-image--small { max-width: 400px; margin-left: auto; margin-right: auto; } .case-block-gallery { margin: var(--space-m) 0; } .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; } .gallery-grid img { width: 100%; max-height: 400px; border-radius: 12px; border: 1px solid var(--border); object-fit: contain; background: rgba(15, 23, 42, 0.5); cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; } .gallery-grid img:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.3); } .gallery-slider { position: relative; overflow: hidden; border-radius: 16px; } .gallery-slider-track { display: flex; transition: transform 0.4s ease; } .gallery-slider-track img { min-width: 100%; width: 100%; max-height: 70vh; border-radius: 16px; border: 1px solid var(--border); object-fit: contain; background: rgba(15, 23, 42, 0.5); cursor: pointer; } .gallery-slider-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(0,0,0,0.6); border: none; border-radius: 50%; color: #fff; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 10; } .gallery-slider-nav:hover { background: rgba(0,0,0,0.8); } .gallery-slider-prev { left: 1rem; } .gallery-slider-next { right: 1rem; } .gallery-slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; } .gallery-slider-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: background 0.2s; } .gallery-slider-dot.active { background: var(--accent); } .lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; } .lightbox.active { opacity: 1; visibility: visible; } .lightbox img { max-width: 90%; max-height: 90%; border-radius: 8px; box-shadow: 0 16px 48px rgba(0,0,0,0.5); } .lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 48px; height: 48px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: #fff; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; } .lightbox-close:hover { background: rgba(255,255,255,0.2); } .case-block-stats { margin: var(--space-l) 0; padding: var(--space-m); background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1)); border-radius: 24px; border: 1px solid rgba(59, 130, 246, 0.2); } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; } .stat-card { text-align: center; padding: 1.5rem; background: rgba(255, 255, 255, 0.03); border-radius: 16px; } .stat-value { font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1.2; margin-bottom: 0.5rem; } .stat-label { font-size: 0.95rem; color: var(--muted); } .case-block-quote { margin: var(--space-l) 0; padding: var(--space-m); background: var(--card-soft); border-radius: 24px; border-left: 4px solid var(--accent); } .case-block-quote blockquote { margin: 0; padding: 0; } .case-block-quote blockquote p { font-size: 1.3rem; font-style: italic; color: var(--text); line-height: 1.6; margin-bottom: 1.5rem; } .case-block-quote blockquote footer { display: flex; align-items: center; gap: 1rem; } .quote-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; } .quote-author { display: flex; flex-direction: column; } .quote-author strong { color: var(--text); } .quote-author span { color: var(--muted); font-size: 0.9rem; } .case-block-divider { border: none; height: 1px; background: var(--border); margin: var(--space-l) 0; } .case-block-cta { margin: var(--space-l) 0; padding: var(--space-l); background: var(--card-soft); border: 1px solid var(--border); border-radius: 40px; border-left: 4px solid var(--accent); } .case-block-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; } .case-block-cta-content h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin: 0 0 0.5rem; } .case-block-cta-content p { font-size: 1.05rem; line-height: 1.6; color: var(--muted); margin: 0; } .case-block-cta-action { flex-shrink: 0; } @media (max-width: 900px) { .case-block-cta-inner { flex-direction: column; text-align: center; } .case-block-cta-action .btn { width: 100%; justify-content: center; } } .case-cta-bottom { display: flex; justify-content: space-between; align-items: center; padding: var(--space-m); background: var(--card-soft); border-radius: 24px; border: 1px solid var(--border); margin: var(--space-l) 0; } .case-cta-bottom h2 { font-size: 1.5rem; margin-bottom: 0.25rem; } @media (max-width: 900px) { .case-hero { grid-template-columns: 1fr; text-align: center; } .case-meta-row { justify-content: center; } .case-author { justify-content: center; } .case-cta-bottom { flex-direction: column; text-align: center; gap: 1.5rem; } .stat-value { font-size: 2rem; } } .service-page { padding-bottom: var(--space-l); } .service-content { display: flex; flex-direction: column; gap: var(--space-m); } .service-block { margin: 0; } .service-block h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--text); } .service-block h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--text); } .service-hero, .service-block-hero { display: grid; grid-template-columns: 1fr; gap: var(--space-m); margin-bottom: var(--space-m); } .service-hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-m); align-items: center; } .service-hero-text h1, .service-hero-text h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1rem; } .service-hero-subtitle { font-size: 1.125rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; } .service-hero-price { font-size: 1.125rem; color: var(--muted); margin-bottom: 1.5rem; } .service-hero-price strong { font-size: 1.5rem; color: var(--accent); } .service-hero-image { border-radius: 24px; overflow: hidden; border: 1px solid var(--border); max-height: 70vh; } .service-hero-image img { width: 100%; height: 100%; max-height: 70vh; object-fit: cover; display: block; } .service-hero-meta { display: flex; gap: var(--space-m); padding: var(--space-s) var(--space-m); background: var(--card-soft); border-radius: 16px; border: 1px solid var(--border); margin-top: var(--space-s); } .service-meta-item { display: flex; flex-direction: column; gap: 0.25rem; } .service-meta-item .muted { font-size: 0.85rem; } .service-meta-item strong { font-size: 1rem; color: var(--text); } .service-price { font-size: 1.125rem; color: var(--muted); margin-bottom: 1.5rem; } .service-price strong { font-size: 1.5rem; color: var(--accent); } .service-trust-items { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: var(--space-m); padding: var(--space-s); background: var(--card-soft); border-radius: 16px; border: 1px solid var(--border); } .service-trust-item { display: flex; flex-direction: column; text-align: center; min-width: 120px; } .trust-value { font-size: 1.5rem; font-weight: 700; color: var(--accent); } .trust-label { font-size: 0.85rem; color: var(--muted); } .service-hero-text .service-trust-items { margin-top: 1.5rem; padding: 0.75rem 1rem; background: transparent; border: none; gap: 1rem; } .service-hero-text .service-trust-item { min-width: auto; text-align: left; flex-direction: row; gap: 0.5rem; align-items: center; } .service-hero-text .trust-value { font-size: 1.25rem; } .service-hero-text .trust-label { font-size: 0.9rem; } .service-block-text { margin: var(--space-m) 0; } .service-block-text .service-block-content { font-size: 1.05rem; line-height: 1.7; color: var(--text); } .service-block-text .service-block-content h2 { font-size: 1.75rem; margin: 2rem 0 1rem; } .service-block-text .service-block-content h3 { font-size: 1.35rem; margin: 1.5rem 0 0.75rem; } .service-block-text .service-block-content p { margin-bottom: 1rem; } .service-block-text .service-block-content ul, .service-block-text .service-block-content ol { margin-bottom: 1rem; padding-left: 1.5rem; } .service-block-text .service-block-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 1rem 0; } .service-block-image { margin: var(--space-m) 0; } .service-block-image img { width: 100%; height: auto; border-radius: 16px; cursor: pointer; transition: transform 0.2s; } .service-block-image img:hover { transform: scale(1.02); } .service-block-image--medium img { max-width: 75%; margin: 0 auto; display: block; } .service-block-image--small img { max-width: 50%; margin: 0 auto; display: block; } .service-block-gallery { margin: var(--space-m) 0; } .service-block-stats { margin: var(--space-l) 0; padding: var(--space-m); background: linear-gradient(135deg, rgba(0, 204, 153, 0.1), rgba(59, 130, 246, 0.1)); border-radius: 24px; border: 1px solid rgba(0, 204, 153, 0.2); } .service-block-quote { margin: var(--space-l) 0; padding: var(--space-m); background: var(--card-soft); border-radius: 24px; border-left: 4px solid var(--accent); } .service-block-quote blockquote { margin: 0; padding: 0; } .service-block-quote blockquote p { font-size: 1.3rem; font-style: italic; color: var(--text); line-height: 1.6; margin-bottom: 1.5rem; } .service-block-quote blockquote footer { display: flex; align-items: center; gap: 1rem; } .service-block-divider { border: none; height: 1px; background: var(--border); margin: var(--space-l) 0; } .service-block-cta { margin: var(--space-l) 0; padding: var(--space-l); background: var(--card-soft); border: 1px solid var(--border); border-radius: 40px; border-left: 4px solid var(--accent); } .service-block-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; } .service-block-cta-content { flex: 1; min-width: 0; } .service-block-cta-content h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin: 0 0 0.5rem; } .service-block-cta-content p { font-size: 1.05rem; line-height: 1.6; color: var(--muted); margin: 0; } .service-block-cta-action { flex-shrink: 0; } .service-block-cta .btn { white-space: nowrap; } @media (max-width: 900px) { .service-block-cta-inner { flex-direction: column; text-align: center; } .service-block-cta-action .btn { width: 100%; justify-content: center; } } .service-block-html { margin: var(--space-m) 0; } .service-block-problems { margin: var(--space-l) 0; padding: var(--space-m); background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.1)); border-radius: 24px; border: 1px solid rgba(239, 68, 68, 0.2); } .service-block-problems h2 { text-align: center; margin-bottom: var(--space-m); } .problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: var(--space-m); } .problem-card { padding: 1.5rem; background: var(--card); border-radius: 16px; border: 1px solid var(--border); text-align: center; } .problem-icon { width: 56px; height: 56px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; background: rgba(239, 68, 68, 0.1); border-radius: 50%; color: #ef4444; } .problem-icon svg, .problem-icon i { width: 28px; height: 28px; } .problem-card h3 { color: #ef4444; margin-bottom: 0.5rem; } .problem-card p { color: var(--muted); font-size: 0.95rem; } .problems-transition { text-align: center; font-size: 1.125rem; font-weight: 600; color: var(--text); padding: var(--space-s); background: var(--card); border-radius: 12px; border-left: 4px solid #ef4444; } .service-block-process { margin: var(--space-l) 0; padding: var(--space-m); background: var(--card-soft); border-radius: 24px; border: 1px solid var(--border); } .service-block-process h2 { text-align: center; margin-bottom: 0.5rem; } .process-description { text-align: center; color: var(--muted); margin-bottom: var(--space-m); } .process-steps { display: flex; flex-direction: column; position: relative; padding: var(--space-s) 0; max-width: 800px; margin-left: auto; margin-right: auto; } .process-step { display: grid; grid-template-columns: 56px 1fr; gap: 2rem; align-items: start; position: relative; padding-bottom: 3rem; } .process-step::before { content: ''; position: absolute; left: 28px; top: 56px; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); } .process-step:last-child::before { display: none; } .process-step:last-child { padding-bottom: 0; } .process-step .step-number { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--card); border: 2px solid var(--accent); box-shadow: 0 0 15px rgba(0, 255, 204, 0.15); border-radius: 50%; font-size: 1.5rem; font-weight: 700; color: var(--accent); z-index: 1; transition: 0.3s ease; } .process-step:hover .step-number { background: var(--accent); color: #0b1121; transform: scale(1.1); box-shadow: 0 0 30px rgba(0, 255, 204, 0.4); } .process-step .step-content { padding-top: 0.5rem; } .process-step .step-content h3 { margin-bottom: 0.75rem; font-size: 1.5rem; transition: 0.3s; } .process-step:hover .step-content h3 { color: var(--accent); } .process-step .step-content p { color: var(--muted); margin-bottom: 1.25rem; line-height: 1.6; font-size: 1.1rem; } .step-tools { margin-top: 0.5rem; } .step-tools-list { display: flex; flex-wrap: wrap; gap: 0.75rem; } .tool-badge { font-size: 0.85rem; font-weight: 600; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); border-radius: 50px; color: var(--muted); transition: 0.3s; letter-spacing: 0.02em; } .process-step:hover .tool-badge { border-color: rgba(0, 255, 204, 0.3); background: rgba(0, 255, 204, 0.05); color: var(--text); } .tool-badge:hover { color: var(--accent) !important; border-color: var(--accent) !important; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); } .service-block-benefits { margin: var(--space-l) 0; padding: var(--space-m); background: linear-gradient(135deg, rgba(0, 204, 153, 0.05), rgba(0, 204, 153, 0.1)); border-radius: 24px; border: 1px solid rgba(0, 204, 153, 0.2); } .service-block-benefits h2 { text-align: center; margin-bottom: 0.5rem; } .benefits-description { text-align: center; color: var(--muted); margin-bottom: var(--space-m); } .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; } .benefit-card { padding: 1.5rem; background: var(--card); border-radius: 16px; border: 1px solid var(--border); } .benefit-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(0, 204, 153, 0.1); border-radius: 12px; margin-bottom: 1rem; color: var(--accent); } .benefit-icon svg, .benefit-icon i { width: 24px; height: 24px; } .benefit-card h3 { margin-bottom: 0.5rem; } .benefit-card p { color: var(--muted); font-size: 0.95rem; } .service-block-tariffs { margin: var(--space-l) 0; padding: var(--space-m); background: var(--card-soft); border-radius: 24px; border: 1px solid var(--border); } .service-block-tariffs h2 { text-align: center; margin-bottom: 0.5rem; } .tariffs-description { text-align: center; color: var(--muted); margin-bottom: var(--space-m); } .tariffs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; } .tariff-card { position: relative; padding: 2rem; background: var(--card); border-radius: 20px; border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; } .tariff-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); } .tariff-card--highlight { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(0, 204, 153, 0.2); } .tariff-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 0.35rem 1rem; background: var(--accent); color: #000; font-size: 0.8rem; font-weight: 600; border-radius: 20px; } .tariff-card h3 { font-size: 1.35rem; margin-bottom: 1rem; text-align: center; } .tariff-price { font-size: 2.5rem; font-weight: 700; color: var(--accent); text-align: center; margin-bottom: 0.5rem; } .tariff-period { font-size: 1rem; font-weight: 400; color: var(--muted); } .tariff-desc { text-align: center; color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; } .tariff-features { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; } .tariff-features li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem 0; color: var(--text); font-size: 0.95rem; } .tariff-features li svg, .tariff-features li i { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; } .tariff-btn { width: 100%; text-align: center; margin-top: auto; } .service-block-comparison { margin: var(--space-l) 0; padding: var(--space-m); background: var(--card-soft); border-radius: 24px; border: 1px solid var(--border); } .service-block-comparison h2 { text-align: center; margin-bottom: var(--space-m); } .comparison-table-wrap { overflow-x: auto; } .comparison-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; } .comparison-table th, .comparison-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); } .comparison-table thead th { background: var(--card); font-weight: 600; color: var(--text); } .comparison-table .col-us { color: var(--accent); font-weight: 500; } .comparison-table .col-market { color: var(--muted); } .comparison-table .col-other { color: var(--muted); } .comparison-table tbody tr:hover { background: rgba(0, 204, 153, 0.05); } .service-block-faq { margin: var(--space-l) 0; padding: var(--space-m); background: var(--card-soft); border-radius: 24px; border: 1px solid var(--border); } .service-block-faq h2 { text-align: center; margin-bottom: 0.5rem; } .faq-description { text-align: center; color: var(--muted); margin-bottom: var(--space-m); } .faq-answer { padding: 1rem 0; color: var(--muted); line-height: 1.6; } @media (max-width: 900px) { .service-hero-content { grid-template-columns: 1fr; text-align: center; } .service-hero-text h1, .service-hero-text h2 { font-size: 2rem; } .service-trust-items { justify-content: center; } .service-hero-meta { flex-direction: column; text-align: center; } .process-step { grid-template-columns: 48px 1fr; gap: 1.5rem; padding-bottom: 2.5rem; text-align: left; } .process-step .step-number { width: 48px; height: 48px; font-size: 1.25rem; margin: 0; } .process-step::before { left: 24px; top: 48px; } .problems-grid, .benefits-grid, .tariffs-grid { grid-template-columns: 1fr; } .tariff-price { font-size: 2rem; } .comparison-table { font-size: 0.85rem; } .comparison-table th, .comparison-table td { padding: 0.75rem; } }