:root { --radius: 20px; --shadow: 0 10px 30px rgba(0, 0, 0, .12); --bg: #0b0d10; --card: #131c26; --muted: #99a3b5; --text: #f2f6fc; --accent: #6ea8fe; --accent-2: #94b5ff; } body { margin: 0; background: linear-gradient(180deg, #0c0f14, #10141b 20%, #0b0d10); color: var(--text); font-family: Inter, system-ui; font-size: 17px; line-height: 1.65; } .topbar { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 20px; } .topbar .brand { font-weight: 800; font-size: 24px; } nav { display: flex; gap: 24px; } nav a { color: var(--text); text-decoration: none; font-weight: 600; opacity: 0.85; transition: 0.2s; } nav a:hover { opacity: 1; color: var(--accent); } .btn { display: inline-block; background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #0b0d10; padding: 14px 28px; border-radius: 12px; font-weight: 700; text-decoration: none; box-shadow: 0 8px 20px rgba(0, 0, 0, .25); transition: 0.2s; } .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0, 0, 0, .35); } .hero { position: relative; background: url('../img/header.jpg') center/cover no-repeat; color: var(--text); padding: 100px 20px; text-align: center; overflow: hidden; } .hero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); z-index: 0; } .hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; } .hero h1 { font-size: clamp(36px, 6vw, 64px); margin: 0 0 20px; font-weight: 800; } .hero p { margin: 0 0 30px; font-size: clamp(18px, 3.2vw, 22px); color: var(--muted); } .cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; } .section { max-width: 1200px; margin: 0 auto; padding: 80px 20px; } .section h2 { text-align: center; font-size: clamp(28px, 5vw, 44px); font-weight: 800; margin-bottom: 40px; } .section p { text-align: center; margin-bottom: 40px; color: var(--muted); font-size: 18px; } .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; } .feature-card { background: var(--card); border-radius: var(--radius); padding: 40px 24px; text-align: center; box-shadow: var(--shadow); border: 1px solid #131a22; transition: transform 0.2s; } .feature-card:hover { transform: translateY(-4px); } .feature-card .icon { font-size: 48px; margin-bottom: 18px; color: var(--accent); } .feature-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 12px; } .feature-card p { color: var(--muted); font-size: 16px; line-height: 1.5; } .protection-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 32px; } .protection-list li { background: var(--card); border-radius: var(--radius); padding: 20px; list-style: none; display: flex; align-items: flex-start; gap: 12px; color: var(--muted); } .protection-list li span { font-size: 24px; color: var(--accent); } .metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; } .metric { background: var(--card); border-radius: var(--radius); padding: 40px 20px; text-align: center; box-shadow: var(--shadow); } .metric .number { font-size: 36px; font-weight: 800; color: var(--accent); margin-bottom: 8px; } .metric .label { font-size: 14px; color: var(--muted); } .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; } .step { background: var(--card); border-radius: var(--radius); padding: 32px 20px; text-align: center; box-shadow: var(--shadow); position: relative; } .step .circle { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #0b0d10; font-size: 20px; margin: 0 auto 12px; } .step h4 { font-size: 20px; margin-bottom: 8px; } .step p { color: var(--muted); font-size: 15px; } .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; } .testimonial { background: var(--card); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow); position: relative; } .testimonial p { font-style: italic; color: var(--muted); margin-bottom: 16px; } .testimonial .author { font-weight: 600; color: var(--accent); } .cta-section { text-align: center; padding: 80px 20px; } .cta-section h2 { font-size: clamp(28px, 5vw, 42px); font-weight: 800; margin-bottom: 20px; } .cta-section p { margin-bottom: 32px; color: var(--muted); font-size: 18px; } .footer { background: #070a0f; padding: 60px 20px; color: var(--muted); } .footer .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; } .footer h5 { color: var(--text); font-weight: 700; margin-bottom: 12px; } .footer a { display: block; color: var(--muted); text-decoration: none; margin-bottom: 8px; font-size: 14px; transition: 0.2s; } .footer a:hover { color: var(--accent); } .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 2000; } .modal-overlay.show { opacity: 1; pointer-events: all; } .modal-overlay .modal { background: var(--card); border-radius: var(--radius); padding: 40px 30px; width: 90%; max-width: 400px; box-shadow: var(--shadow); transform: translateY(-20px); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; position: relative; } .modal-overlay.show .modal { transform: translateY(0); opacity: 1; } .modal label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text); } .modal input[type="text"] { width: 93%; padding: 12px 14px; border-radius: 8px; border: 1px solid #1f2a3c; background: #0c0f14; color: var(--text); font-size: 16px; margin-bottom: 20px; margin-top: 20px; } .modal .modal-button { position: relative; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #0b0d10; padding: 14px 24px; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; width: 100%; margin-top: 20px; } .modal .modal-button .loader { display: none; width: 18px; height: 18px; border: 3px solid rgba(255, 255, 255, 0.3); border-top: 3px solid #0b0d10; border-radius: 50%; animation: spin 1s linear infinite; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); } .modal .modal-button.loading .button-text { visibility: hidden; } .modal .modal-button.loading .loader { display: block; } @keyframes spin { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } } .modal .modal-button:disabled { background: linear-gradient(90deg, #3a4556, #4b5668); color: #6b778a; cursor: not-allowed; opacity: 0.55; box-shadow: none; transform: none; } .modal .modal-button:disabled:hover { transform: none; box-shadow: none; } .modal .error-message { margin-top: 16px; color: #ff6b6b; font-size: 14px; text-align: center; } .modal .modal-close { background: transparent; border: none; color: var(--muted); font-size: 24px; position: absolute; right: 16px; top: 16px; cursor: pointer; } .modal .modal-close:hover { color: var(--accent); } .modal .g-recaptcha { display: flex; justify-content: center; }