:root { --bg: #07111f; --bg-2: #0d1a2d; --panel: rgba(255, 255, 255, 0.05); --panel-strong: rgba(255, 255, 255, 0.08); --border: rgba(255, 255, 255, 0.1); --text: #edf3ff; --muted: #a9b8d3; --primary: #4f97ff; --primary-2: #2d74eb; --white: #ffffff; --container: 1180px; --radius: 22px; --shadow: 0 18px 50px rgba(0, 0, 0, 0.28); } *, *::before, *::after { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: 0; font-family: 'Inter', sans-serif; color: var(--text); background: radial-gradient(circle at top left, rgba(79, 151, 255, 0.16), transparent 28%), radial-gradient(circle at top right, rgba(79, 151, 255, 0.08), transparent 24%), linear-gradient(180deg, #06101d 0%, #0a1627 100%); line-height: 1.6; } img { display: block; max-width: 100%; } a { color: inherit; text-decoration: none; } .container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; } .section { padding: 88px 0; } .eyebrow { display: inline-flex; align-items: center; min-height: 42px; padding: 0 16px; margin: 0 0 18px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255, 255, 255, 0.04); color: #cfe0ff; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; } h1, h2, h3 { margin: 0 0 16px; color: var(--text); } h1 { max-width: 720px; font-size: clamp(30px, 4.2vw, 50px); line-height: 1.05; font-weight: 800; letter-spacing: -0.04em; } h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; } h3 { font-size: 22px; line-height: 1.2; font-weight: 700; } p { margin: 0; color: var(--muted); } .site-header { position: sticky; top: 0; z-index: 100; background: rgba(5, 11, 20, 0.84); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255, 255, 255, 0.06); } .header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 20px; } .logo { display: inline-block; font-size: 17px; font-weight: 800; letter-spacing: 0.01em; color: var(--white); white-space: nowrap; } .logo span, .footer-logo { color: var(--primary); } .nav { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; } .nav a { color: #d8e3fb; font-size: 15px; font-weight: 600; transition: color 0.2s ease, opacity 0.2s ease; } .nav a:hover { color: var(--white); opacity: 1; } .btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 14px; font-size: 16px; font-weight: 700; line-height: 1; white-space: nowrap; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; } .btn:hover { transform: translateY(-1px); } .btn-primary { color: var(--white); background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 12px 26px rgba(45, 116, 235, 0.35); } .btn-secondary { color: var(--white); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); } .hero { padding: 54px 0 42px; } .hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr); align-items: center; gap: 40px; } .hero-content { min-width: 0; } .hero-text { max-width: 640px; font-size: 19px; line-height: 1.7; margin-bottom: 28px; } .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; } .hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } .stat-card, .service-card, .adv-item, .cta-box { background: var(--panel); border: 1px solid var(--border); box-shadow: var(--shadow); } .stat-card { border-radius: 18px; padding: 18px; } .stat-card strong { display: block; margin-bottom: 8px; color: var(--white); font-size: 16px; line-height: 1.35; } .stat-card span { display: block; color: var(--muted); font-size: 14px; line-height: 1.45; } .hero-visual { min-width: 0; } .hero-image-card { overflow: hidden; border-radius: 28px; border: 1px solid var(--border); box-shadow: var(--shadow); background: #08111f; } .hero-image-card img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; } .section-head { max-width: 860px; margin-bottom: 34px; } .section-head.narrow { max-width: 760px; } .cards-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; } .service-card { border-radius: var(--radius); padding: 28px; } .card-icon { width: 50px; height: 50px; margin-bottom: 20px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: rgba(79, 151, 255, 0.16); color: var(--white); font-size: 16px; font-weight: 800; } .service-card p, .adv-item p { line-height: 1.65; } .advantages-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 24px; align-items: start; } .advantages-text { max-width: 520px; } .adv-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } .adv-item { border-radius: 20px; padding: 24px; } .cta-box { border-radius: 28px; padding: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; } .cta-box > div:first-child { flex: 1 1 auto; min-width: 0; } .cta-box .btn { flex: 0 0 auto; min-width: 220px; } .site-footer { padding: 28px 0 40px; border-top: 1px solid rgba(255, 255, 255, 0.08); background: rgba(3, 8, 15, 0.3); } .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; } .footer-logo { margin-bottom: 12px; font-size: 20px; font-weight: 800; } .footer-grid h3 { margin-bottom: 14px; font-size: 18px; } .footer-list { margin: 0; padding: 0; list-style: none; } .footer-list li + li { margin-top: 10px; } .footer-list a { color: var(--muted); transition: color 0.2s ease; } .footer-list a:hover { color: var(--white); } @media (max-width: 1100px) { .hero-grid, .advantages-grid, .footer-grid { grid-template-columns: 1fr; } .hero-stats, .cards-grid, .adv-list { grid-template-columns: 1fr 1fr; } .cta-box { flex-direction: column; align-items: flex-start; } .cta-box .btn { min-width: 0; } } @media (max-width: 760px) { .container { width: calc(100% - 24px); } .section { padding: 68px 0; } .site-header { position: static; } .header-inner { min-height: auto; padding: 16px 0; flex-direction: column; align-items: flex-start; } .nav { width: 100%; gap: 10px 16px; } .hero { padding: 28px 0 22px; } .hero-grid { grid-template-columns: 1fr; gap: 24px; } .hero-visual { order: -1; } h1 { max-width: 100%; font-size: clamp(30px, 9vw, 40px); } h2 { font-size: clamp(26px, 7vw, 34px); } .hero-text { max-width: 100%; font-size: 16px; line-height: 1.65; margin-bottom: 22px; } .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 22px; } .hero-actions .btn, .cta-box .btn, .header-inner > .btn { width: 100%; min-width: 0; } .hero-stats, .cards-grid, .adv-list, .footer-grid { grid-template-columns: 1fr; } .service-card, .adv-item, .cta-box { padding: 24px; } .hero-image-card { border-radius: 20px; } .hero-image-card img { aspect-ratio: 16 / 10; } } @media (max-width: 480px) { .container { width: calc(100% - 20px); } .section { padding: 54px 0; } h1 { font-size: 29px; } .eyebrow { min-height: 38px; padding: 0 14px; font-size: 11px; } .btn { min-height: 50px; padding: 0 18px; font-size: 15px; } .logo { font-size: 16px; } .nav a { font-size: 14px; } }