* { box-sizing: border-box; } html, body { height: 100%; } :root { --bg: #0b0d12; --bg-alt: #0f1219; --text: #e6e9ef; --muted: #9aa4b2; --brand: #1359c4; --brand-2: #0096d1; --card: #121622; --stroke: #1d2230; --shadow: 0 10px 30px rgba(0, 0, 0, .35); --radius: 14px; --container: 1120px; } @media (prefers-color-scheme: light) { :root { --bg: #ffffff; --bg-alt: #f7f8fb; --text: #0f1220; --muted: #5b6472; --card: #ffffff; --stroke: #e8ecf3; --shadow: 0 8px 22px rgba(0, 0, 0, .06); } } body { margin: 0; color: var(--text); font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif; letter-spacing: 0.2px; } img { max-width: 100%; display: block; } .container { width: min(100% - 32px, var(--container)); margin: 0 auto; } .site-header { position: sticky !important; top: 0; z-index: 50; backdrop-filter: saturate(1.1) blur(8px); background: color-mix(in srgb, var(--bg), transparent 20%); border-bottom: 1px solid var(--stroke); } .header-inner { display: flex; align-items: center; gap: 20px; padding: 14px 0; } .logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); text-decoration: none; background-image: url("assets/logo.png"); width: 150px; height: 50px; background-repeat: no-repeat; background-size: contain; margin-left: -10px; background-position: center; } .site-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; } .site-nav a { color: var(--muted); text-decoration: none; font-weight: 600; } .site-nav a:hover { color: var(--text); } .nav-toggle { display: none; background: transparent; border: 0; color: var(--text); } .sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); white-space: nowrap; overflow: hidden; } .hero { padding: 72px 0 24px; position: relative; } .hero-inner { display: grid; align-items: center; gap: 32px; grid-template-columns: 1.1fr .9fr; } .hero-copy h1 { font-size: clamp(28px, 2.8vw, 48px); line-height: 1.15; margin: 0 0 12px; letter-spacing: .2px; } .accent { background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; } .hero-copy p { color: var(--muted); margin: 0 0 20px; } .cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; } .trust { display: flex; gap: 18px; padding: 0; list-style: none; color: var(--muted); font-weight: 600; } .trust li { display: inline-flex; align-items: center; gap: 8px; } .hero-art { width: 100%; height: 100%; background-image: url("assets/art.png"); background-repeat: no-repeat; background-size: contain; background-position: center; } @media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; } .hero-art { order: -1; } } .section { padding: 56px 0; } .section.alt { background: var(--bg-alt); border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); } h2 { font-size: clamp(22px, 2.2vw, 36px); margin: 0 0 20px; } .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; } .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; } @media (max-width: 760px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } .trust { display: block; } } .card { background: var(--card); border: 1px solid var(--stroke); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; } .card:hover { transform: translateY(-2px); } .case-list { display: grid; gap: 14px; } .case { background: var(--card); border: 1px solid var(--stroke); border-radius: var(--radius); padding: 18px; } .meta { color: var(--muted); margin-top: -6px; } .steps { counter-reset: s; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; padding: 0; list-style: none; } .steps li { background: var(--card); border: 1px solid var(--stroke); border-radius: var(--radius); padding: 16px; font-weight: 700; display: flex; align-items: center; gap: 12px; } .steps li span { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #fff; font-variant-numeric: tabular-nums; } @media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } } .pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; } .price-card { background: var(--card); border: 1px solid var(--stroke); border-radius: var(--radius); padding: 18px; position: relative; align-content: start; gap: 12px; display: flex; flex-direction: column; justify-content: space-between; height: 100% } .price-card .line { background: #1359c4; position: relative; left: -18px; width: calc(100% + 36px); padding: 8px 20px; } .price-card .line-muted { background: #e8ecf3; } .price-card span { font-size: 16px; color: #fff; font-weight: 600; } .price-card .line-muted span { font-size: 16px; color: var(--muted); ; font-weight: 600; } .price-card ul li { padding-top: 10px; } .price-card.hit { border-color: color-mix(in srgb, var(--brand), var(--stroke) 60%); } .price-card .tag { position: absolute; top: -10px; right: 12px; background: var(--brand); color: #fff; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 800; } .price-card .btn { margin-top: auto; } .footnote { color: var(--muted); margin-top: 10px; } .contact-form label { display: grid; gap: 8px; font-weight: 700; } .contact-form input, .contact-form textarea { background: var(--bg); color: var(--text); border: 1px solid var(--stroke); border-radius: 10px; padding: 12px 12px; } .contact-form input:focus, .contact-form textarea:focus { outline: 2px solid color-mix(in srgb, var(--brand), transparent 40%); } .consent { display: flex; align-items: center; gap: 10px; font-weight: 600; } .site-footer { border-top: 1px solid var(--stroke); padding: 28px 0; background: var(--bg-alt); } .footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; } .footer-nav { display: flex; gap: 16px; justify-content: center; } .brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); text-decoration: none; background-image: url("assets/logo.png"); width: 150px; height: 50px; background-repeat: no-repeat; background-size: contain; margin-left: -10px; background-position: center; filter: brightness(0) invert(1); } @media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; } } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 16px; border-radius: 12px; text-decoration: none; font-weight: 800; border: 1px solid var(--stroke); background: var(--card); color: var(--text); } .btn:hover { transform: translateY(-1px); } .btn-primary { background: var(--brand); color: #fff; border: none; } .btn-outline { background: transparent; } .btn-ghost { background: transparent; border-color: transparent; color: var(--muted); } .btn-ghost:hover { color: var(--text); } .reveal { opacity: 0; transform: translateY(8px); transition: .6s ease; } .reveal.visible { opacity: 1; transform: none; } :root { --ensi-blue: #1359c4; --ensi-blue-2: #6ec6ff; --card-r: 18px; --shadow: 0 16px 36px rgba(12, 19, 34, .08) } img, video, svg { max-width: 100%; height: auto; display: block } table { width: 100%; display: block; overflow-x: auto } pre { white-space: pre-wrap; word-break: break-word } .container { width: min(100% - 32px, 1160px); margin-inline: auto } @media(max-width:980px) { .hero .container, .hero-inner { display: grid; grid-template-columns: 1fr; gap: 22px } } @media(max-width:760px) { [class*="grid"], [class*="row"] { display: grid; grid-template-columns: 1fr; gap: 16px } .btn, button, input[type=submit] { width: 100% } } .site-header .container, header .container { display: flex; align-items: center; justify-content: space-between; gap: 12px } header .hamburger, header .menu-toggle, header .menu-btn, header .burger, header .nav-toggle { margin-left: auto; position: static; flex: 0 0 auto; line-height: 0 } .hero-art, .card .media, figure, .thumbnail { overflow: hidden; border-radius: inherit } .ensi-grid { display: grid; gap: 18px; margin-top: 12px } .ensi-grid.cols-4 { grid-template-columns: repeat(4, 1fr) } .ensi-grid.cols-3 { grid-template-columns: repeat(3, 1fr) } @media(max-width:1200px) { .ensi-grid.cols-4 { grid-template-columns: repeat(2, 1fr) } } @media(max-width:980px) { .ensi-grid.cols-3 { grid-template-columns: repeat(2, 1fr) } } @media(max-width:760px) { .ensi-grid.cols-3, .ensi-grid.cols-4 { grid-template-columns: 1fr } } .big-card { background: #fff; border: 1px solid rgba(31, 109, 255, .18); border-radius: 18px; box-shadow: var(--shadow); padding: 22px; position: relative; overflow: hidden } .big-card::before { content: ""; position: absolute; inset: -1px; border-radius: 20px; padding: 1px; background: linear-gradient(135deg, var(--ensi-blue), var(--ensi-blue-2)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .18; pointer-events: none } .big-card h3 { margin: 0 0 6px; font-size: 20px } .big-card p { margin: 0; opacity: .85; } .badge-top { position: absolute; top: 14px; right: 14px; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(31, 109, 255, .2); background: #eef5ff; font-weight: 800; font-size: 12px } .icon-badge { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: #eef5ff; border: 1px solid rgba(31, 109, 255, .18); color: #1f6dff } .icon-badge svg { width: 22px; height: 22px } .big-card.why { grid-template-columns: auto 1fr; display: grid; gap: 12px; align-items: start } .step-badge { width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(135deg, var(--ensi-blue), var(--ensi-blue-2)); display: grid; place-items: center; color: #fff; font-weight: 900 } .big-step { grid-template-columns: auto 1fr; display: grid; gap: 12px; align-items: start } .big-step .meta { font-size: 13px; opacity: .7; margin-top: -2px } .site-header .container, header .container, .site-header .wrap, header .wrap { display: flex !important; align-items: center; justify-content: space-between !important; gap: 12px; } header .hamburger, header .menu-toggle, header .menu-btn, header .burger, header .nav-toggle { position: static !important; margin-left: auto !important; flex: 0 0 auto; line-height: 0; display: none; align-items: center; justify-content: center; width: 42px; height: 42px; } header .brand, header .logo, header .logo-wrap { display: flex; align-items: center; gap: 10px; min-width: 0; } header .brand .name, .brand-name, .site-title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } @media (max-width:360px) { header .brand .name, .brand-name, .site-title { display: none } } .section .container, section .container, .container { width: min(100% - 32px, 1160px); margin-inline: auto; padding-inline: 0; } img, video, svg { max-width: 100%; height: auto; display: block } .hero-art, .card .media, figure, .thumbnail, .image { overflow: hidden; border-radius: inherit } @media (max-width: 760px) { .pricing, .prices, .plans, .tariffs, .price-cards, .pricing .row { display: grid !important; grid-template-columns: 1fr !important; gap: 16px !important; } .pricing>*, .prices>*, .plans>*, .tariffs>*, .price-cards>*, .pricing .card { width: 100% !important; max-width: 100% !important; margin: 0 !important; } } :root { --sp5: 32px; --sp6: 48px; } .section, section { padding-block: var(--sp6); } @media (max-width:760px) { .section, section { padding-block: var(--sp5) !important; } } :root { --header-h: 64px; } header, .site-header { background: #fff; } @media (max-width: 980px) { header, .site-header { position: fixed !important; top: 0; left: 0; right: 0; z-index: 9999; box-shadow: 0 2px 12px rgba(0, 0, 0, .06); } body { padding-top: var(--header-h); } header .container, .site-header .container { min-height: var(--header-h); } main, body, html { overflow-x: hidden; } } @media (min-width: 768px) and (max-width: 992px) { header .container, .site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; } header .brand, header .logo, header .logo-wrap { white-space: nowrap; display: flex; align-items: center; gap: 10px; min-width: 0; } header .brand .name, .brand-name, .site-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } header .hamburger, header .menu-toggle, header .menu-btn, header .burger, header .nav-toggle { margin-left: auto; } } @media (max-width: 860px) { .nav-toggle { display: inline-flex !important; } .site-nav { position: fixed; inset: 68px 16px auto 16px; background: var(--card); border: 1px solid var(--stroke); border-radius: var(--radius); padding: 16px; display: grid; gap: 14px; transform-origin: top right; transform: scale(.98); opacity: 0; pointer-events: none; transition: .18s ease; } .site-nav.open { opacity: 1; pointer-events: all; transform: scale(1); box-shadow: var(--shadow); } } @media (min-width: 768px) and (max-width: 900px) { .hero, [class*="hero"] { padding-top: 80px; } .hero .container, .hero-inner, [class*="hero"] .container { display: grid !important; grid-template-columns: 1fr !important; gap: 20px !important; align-items: start; justify-items: center; } .hero .media, .hero-media, .hero-art { display: none; max-width: 100% !important; width: min(100%, 720px) !important; margin: 0 auto !important; position: relative !important; left: 0 !important; right: 0 !important; } } :root { --ensi-blue: #1359c4; --ensi-teal: #619cf3; } .btn, .button, button, input[type="submit"] { position: relative; z-index: 0; isolation: isolate; transition: transform .15s ease, box-shadow .15s ease; } .btn:hover, .button:hover, button:hover, input[type="submit"]:hover { transform: translateY(-1px); } .btn:active, .button:active, button:active, input[type="submit"]:active { transform: translateY(0); } .btn.primary, .btn--primary, .cta .btn:first-child { color: #fff !important; border: none !important; box-shadow: 0 10px 24px rgba(31, 109, 255, .25); } .btn.outline, .btn--ghost, .btn-secondary, .pricing .card .btn { background: #fff; border: 1px solid rgba(31, 109, 255, .35); } .btn.outline:hover, .btn--ghost:hover, .btn-secondary:hover, .pricing .card .btn:hover { box-shadow: 0 8px 18px rgba(31, 109, 255, .18); border-color: rgba(31, 109, 255, .6); } a, button, .btn, input, textarea, select { outline: none; } a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { box-shadow: 0 0 0 3px rgba(31, 109, 255, .25), 0 0 0 6px rgba(18, 216, 223, .2); border-radius: 12px; } .form-modern { background: #fff; border: 1px solid rgba(31, 109, 255, .18); border-radius: 18px; padding: 22px; box-shadow: 0 16px 36px rgba(12, 19, 34, .08); } .form-modern .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } @media (max-width:760px) { .form-modern .row { grid-template-columns: 1fr; } } .form-modern label { font-weight: 600; margin: 8px 0 6px; display: block; } .form-modern .field { position: relative; } .form-modern .field .icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: #1f6dff; opacity: .9; } .form-modern input, .form-modern textarea, .form-modern select { width: 100%; padding: 12px 12px 12px 38px; border-radius: 12px; border: 1px solid rgba(31, 109, 255, .35); background: #fff; transition: box-shadow .15s ease, border-color .15s ease; } .form-modern textarea { min-height: 120px; resize: vertical; } .form-modern input:focus, .form-modern textarea:focus, .form-modern select:focus { border-color: #1f6dff; box-shadow: 0 10px 24px rgba(31, 109, 255, .18); } .form-modern .actions { margin-top: 14px; display: flex; gap: 12px; } .form-modern .actions .btn { padding: 12px 18px; border-radius: 12px; width: 100%; } .mega-footer { background: #0b1020; color: #c7cede; margin-top: 60px; } .mega-footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; padding: 36px 0px; } .mega-footer h4 { color: #fff; margin: 0 0 12px; font-size: 16px; } .mega-footer a { color: #c7cede; text-decoration: none; } .mega-footer a:hover { color: #fff; text-decoration: underline; } .mega-footer .brand { display: flex; align-items: center; gap: 10px; } .mega-footer .copy { border-top: 1px solid rgba(255, 255, 255, .08); padding: 12px 16px; text-align: center; font-size: 12px; opacity: .8; } @media (max-width:980px) { .mega-footer .container { grid-template-columns: 1fr 1fr; } } @media (max-width:760px) { .mega-footer .container { grid-template-columns: 1fr; } } @media (min-width: 768px) and (max-width: 900px) { .hero, [class*="hero"] { padding-top: 24px !important; } .hero .container, .hero-inner, [class*="hero"] .container { display: grid !important; grid-template-columns: 1fr !important; gap: 20px !important; align-items: start; justify-items: center; } .hero .media, .hero-media, .hero-art { width: min(100%, 740px) !important; margin-inline: auto !important; left: auto !important; right: auto !important; } } main>section:first-of-type, .section:first-of-type { margin-top: 0 !important; } .is-cta, .btn.cta, .btn-contact, .btn-choose-popular { color: #fff !important; background: radial-gradient(120px 120px at var(--mx, 50%) var(--my, 50%), var(--ensi-teal), var(--ensi-blue, #125ac5)) !important; border: none !important; box-shadow: 0 12px 28px rgba(31, 109, 255, .28) !important; transition: transform .15s ease, box-shadow .15s ease; } .is-cta:hover, .btn.cta:hover, .btn-contact:hover, .btn-choose-popular:hover { transform: translateY(-1px); } .is-cta:active, .btn.cta:active, .btn-contact:active, .btn-choose-popular:active { transform: translateY(0); } .form-modern.minimal { background: #fff; border: 1px solid rgba(31, 109, 255, .16); border-radius: 18px; padding: 22px; box-shadow: 0 16px 36px rgba(12, 19, 34, .06); } .form-modern.minimal .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } @media (max-width:760px) { .form-modern.minimal .row { grid-template-columns: 1fr; } } .form-modern.minimal label { font-weight: 600; margin: 8px 0 6px; display: block; } .form-modern.minimal input, .form-modern.minimal textarea, .form-modern.minimal select { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(31, 109, 255, .35); background: #fff; transition: border-color .15s ease, box-shadow .15s ease; } .form-modern.minimal textarea { min-height: 120px; resize: vertical; } .form-modern.minimal input:focus, .form-modern.minimal textarea:focus, .form-modern.minimal select:focus { border-color: #1f6dff; box-shadow: 0 8px 22px rgba(31, 109, 255, .18); } .form-modern.minimal .actions { margin-top: 14px; } .form-modern.minimal .actions .btn { width: 100%; border-radius: 12px; } .mega-footer { margin-top: 0 !important; } .numbers { display: flex; justify-content: space-around; text-align: center; gap: 24px; margin: 40px 0; } .numbers .item { flex: 1; } .numbers .item strong { font-size: 28px; color: var(--ensi-blue, #1f6dff); display: block; } @media (max-width:760px) { .numbers { flex-direction: column; gap: 16px; } } .timeline { position: relative; padding-left: 40px; margin: 40px 0; } .timeline::before { content: ''; position: absolute; top: 0; left: 16px; bottom: 0; width: 4px; background: linear-gradient(to bottom, #1f6dff, #12d8df); border-radius: 2px; } .timeline .step { position: relative; margin-bottom: 32px; } .timeline .step::before { content: attr(data-step); position: absolute; left: -40px; top: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--ensi-blue, #1f6dff); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; } .timeline .step h3 { margin: 0 0 6px; } .timeline .step p { margin: 0; color: #555; } .testimonials { margin: 60px 0; text-align: center; } .testimonials h2 { margin-bottom: 20px; } .carousel { display: flex; overflow: hidden; } .carousel .card { flex: 0 0 100%; transition: transform .6s ease; padding: 20px; } .carousel .card blockquote { font-size: 18px; font-style: italic; margin: 0 0 12px; } .carousel .card cite { font-size: 14px; color: #666; } .carousel-nav { margin-top: 12px; } .carousel-nav button { width: 10px; height: 10px; border-radius: 50%; border: none; margin: 0 4px; background: #ccc; } .carousel-nav button.active { background: var(--ensi-blue, #1f6dff); } .hero-art svg { width: 100%; max-width: 720px; height: auto; display: block; margin: auto; } .section .container, section .container { width: min(100% - 32px, 1160px); margin-inline: auto; } .timeline { max-width: 820px; margin: 40px auto; padding-left: 40px; position: relative; } .timeline::before { left: 16px; } .timeline .step { margin-bottom: 32px; } .timeline .step::before { left: -40px; } .numbers-section { background: linear-gradient(180deg, rgba(240, 247, 255, .7), rgba(240, 247, 255, 0)); padding: 28px 0; } .numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; } @media (max-width:980px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width:760px) { .numbers-grid { grid-template-columns: 1fr; } } .metric { background: #fff; border: 1px solid rgba(31, 109, 255, .15); border-radius: 16px; padding: 18px; text-align: center; box-shadow: 0 12px 28px rgba(12, 19, 34, .06); } .metric .circle { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 10px; background: radial-gradient(60px 60px at 30% 30%, #12d8df, #1f6dff); display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 20px; } .metric strong { display: block; font-size: 32px; line-height: 1.1; color: #0b1a3a; } .metric span { color: #647189; } .testimonials-section { padding: 40px 0; } .t-wrap { background: #fff; border: 1px solid rgba(31, 109, 255, .15); border-radius: 18px; padding: 18px; box-shadow: 0 12px 28px rgba(12, 19, 34, .06); } .t-viewport { overflow: hidden; } .t-track { display: flex; transition: transform .6s ease; } .t-card { flex: 0 0 100%; padding: 10px 6px; } .t-inner { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; } .avatar { width: 48px; height: 48px; border-radius: 50%; background: radial-gradient(50px 50px at 35% 35%, #12d8df, #1f6dff); display: grid; place-items: center; color: #fff; font-weight: 900; } .t-quote { font-size: 18px; font-style: italic; margin: 0 0 6px; } .t-meta { font-size: 13px; color: #647189; } .t-nav { display: flex; justify-content: center; gap: 6px; margin-top: 8px; } .t-nav button { width: 8px; height: 8px; border-radius: 50%; border: none; background: #c9d3e6; } .t-nav button.active { background: #1f6dff; } .section .container, section .container { width: min(100% - 32px, 1160px); margin-inline: auto; } .h-timeline { position: relative; margin: 40px auto; } .h-timeline::before { content: ''; position: absolute; left: 0; right: 0; top: 32px; height: 4px; background: linear-gradient(90deg, #1f6dff, #0096d1); border-radius: 2px; } .h-timeline .h-grid { display: grid; grid-template-columns: repeat(5, minmax(160px, 1fr)); gap: 24px; align-items: start; } .hstep { position: relative; padding-top: 20px; } .hstep .num { position: absolute; top: -6px; left: 0; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: #1f6dff; color: #fff; font-weight: 800; box-shadow: 0 6px 16px rgba(31, 109, 255, .25); } .hstep h3 { margin: 24px 0 4px 0; } .hstep .meta { color: #647189; font-size: 14px; } @media (max-width:980px) { .h-timeline .h-grid { grid-template-columns: repeat(3, minmax(160px, 1fr)); } } @media (max-width:760px) { .h-timeline::before { display: none } .h-timeline .h-grid { grid-template-columns: 1fr; } .hstep { padding-top: 0 } .hstep .num { position: static; margin-bottom: 8px; } } .numbers-section { background: linear-gradient(180deg, rgba(240, 247, 255, .7), rgba(240, 247, 255, 0)); padding: 40px 0; } .numbers-section .container h2 { margin: 0 0 16px; } .metrics { display: grid; grid-template-columns: repeat(4, minmax(220px, 1fr)); gap: 28px; align-items: stretch; } .metric-card { background: #fff; border: 1px solid rgba(31, 109, 255, .15); border-radius: 18px; padding: 24px; box-shadow: 0 12px 28px rgba(12, 19, 34, .06); text-align: center; display: flex; flex-direction: column; align-items: center; height: 100%; } .metric-card .bubble { width: 86px; height: 86px; border-radius: 50%; margin: 0 auto 12px; background: radial-gradient(72px 72px at 35% 35%, #5595f5, #1359c4); display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 22px; flex: 0 0 auto; } .metric-card .title { font-size: 30px; font-weight: 800; color: #0b1a3a; line-height: 1.1; margin: 6px 0 6px; flex: 0 0 auto; } .metric-card .desc { color: #647189; font-size: 15px; margin-top: auto; } @media (max-width: 1024px) { .metrics { grid-template-columns: repeat(2, minmax(220px, 1fr)); } } @media (max-width: 560px) { .metrics { grid-template-columns: 1fr; } } .testi-marquee { padding: 40px 0; } .marquee-viewport { overflow: hidden; } .marquee-track { display: flex; gap: 16px; will-change: transform; animation: scroll var(--speed, 38s) linear infinite; } .testi-card { flex: 0 0 calc((100% - 64px)/4); background: #fff; border: 1px solid rgba(31, 109, 255, .15); border-radius: 14px; padding: 14px; box-shadow: 0 10px 24px rgba(12, 19, 34, .05); } @media (max-width:980px) { .testi-card { flex: 0 0 calc((100% - 32px)/2); } } @media (max-width:760px) { .testi-card { flex: 0 0 100%; } } .testi-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; } .logo-dot { width: 28px; height: 28px; border-radius: 50%; background: radial-gradient(24px 24px at 35% 35%, #12d8df, #1f6dff); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 12px; } .client { font-weight: 700; } .role { font-size: 12px; color: #647189; } .quote { font-size: 14px; line-height: 1.4; margin: 6px 0 0; color: #0e1b3a; } .marquee-viewport:hover .marquee-track { animation-play-state: paused; } @keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } } .section .container, section .container { width: min(100% - 32px, 1160px); margin-inline: auto; } section { padding-block: 40px; background: transparent; } @media (max-width:760px) { section { padding-block: 28px; } } .h-timeline { position: relative; margin: 8px auto 24px; } .h-timeline::before { content: ''; position: absolute; left: 0; right: 0; top: 32px; height: 4px; background: linear-gradient(90deg, #1f6dff, #0096d1); border-radius: 2px; } .h-timeline .h-grid { display: grid; grid-template-columns: repeat(5, minmax(160px, 1fr)); gap: 24px; align-items: start; } .hstep { position: relative; padding-top: 20px; } .hstep .num { position: absolute; top: -6px; left: 0; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: #1f6dff; color: #fff; font-weight: 800; box-shadow: 0 6px 16px rgba(31, 109, 255, .25); } .hstep h3 { margin: 24px 0 4px 0; } .hstep .meta { color: #647189; font-size: 14px; } @media (max-width:980px) { .h-timeline .h-grid { grid-template-columns: repeat(3, minmax(160px, 1fr)); } } @media (max-width:760px) { .h-timeline::before { display: none } .h-timeline .h-grid { grid-template-columns: 1fr; } .hstep { padding-top: 0 } .hstep .num { position: static; margin-bottom: 8px; } } #metrics-ensi h2 { margin: 0 0 14px; } #metrics-ensi .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; } @media (max-width:980px) { #metrics-ensi .grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width:760px) { #metrics-ensi .grid { grid-template-columns: 1fr; } } .metric-card { background: #fff; border: 1px solid rgba(31, 109, 255, .15); border-radius: 18px; padding: 22px; box-shadow: 0 12px 28px rgba(12, 19, 34, .06); text-align: center; } .metric-card .bubble { width: 86px; height: 86px; border-radius: 50%; margin: 0 auto 12px; background: radial-gradient(72px 72px at 35% 35%, #5595f5, #1359c4); display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 22px; } .metric-card .title { font-size: 30px; font-weight: 800; color: #0b1a3a; line-height: 1.1; margin: 6px 0 6px; } .metric-card .desc { color: #647189; font-size: 15px; } #testimonials-ensi { padding: 40px 0; } #testimonials-ensi .marquee-viewport { overflow: hidden; } #testimonials-ensi .card { flex: 0 0 calc((100% - 48px)/3); background: #fff; border: 1px solid rgba(31, 109, 255, .15); border-radius: 14px; padding: 14px; box-shadow: 0 10px 24px rgba(12, 19, 34, .05); } @media (max-width:1200px) { #testimonials-ensi .card { flex: 0 0 calc((100% - 64px)/3); } } @media (max-width:980px) { #testimonials-ensi .card { flex: 0 0 calc((100% - 16px)/2); } } @media (max-width:760px) { #testimonials-ensi .card { flex: 0 0 100%; } } #testimonials-ensi .head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; } #testimonials-ensi .logo { width: 28px; height: 28px; border-radius: 50%; background: radial-gradient(24px 24px at 35% 35%, #619cf3, #1359c4); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 12px; } #testimonials-ensi .client { font-weight: 700; } #testimonials-ensi .role { font-size: 12px; color: #647189; } #testimonials-ensi .quote { font-size: 14px; line-height: 1.4; margin: 6px 0 0; color: #0e1b3a; } #testimonials-ensi .marquee-viewport:hover .track { animation-play-state: paused; } section:has(.form-modern), section:has(.h-timeline) { background: transparent; } #work-ensi .h-timeline { position: relative; } #work-ensi .h-timeline::before { left: 0; right: 0; top: 34px; } #testimonials-ensi .marquee-viewport:hover .track { animation-play-state: running !important; } #testimonials-ensi .card { transition: none; border-top: 1px solid rgba(31, 109, 255, .15); background-clip: padding-box; } #testimonials-ensi .card:hover { transform: none; box-shadow: 0 10px 24px rgba(12, 19, 34, .05); } @media (max-width: 760px) { #work-ensi .h-timeline { margin: 6px 0 10px; } #work-ensi .h-timeline::before { display: none; } #work-ensi .h-timeline .h-grid { grid-template-columns: 1fr; gap: 12px; } #work-ensi .hstep { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border: 1px solid rgba(31, 109, 255, .14); border-radius: 14px; background: #fff; box-shadow: 0 8px 18px rgba(12, 19, 34, .04); } #work-ensi .hstep .num { position: static; margin: 10px 0 0; width: 34px; height: 25px; } #work-ensi .hstep h3 { margin: 0 0 4px; font-size: 15px; } #work-ensi .hstep .meta { font-size: 13px; } } #contact-ensi .form-modern.minimal input, #contact-ensi .form-modern.minimal textarea, #contact-ensi .form-modern.minimal select { -webkit-appearance: none; appearance: none; border-radius: 12px; } #contact-ensi .form-modern.minimal select { background-color: #fff; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231f6dff' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; background-size: 12px 8px; padding-right: 28px; } :root { --ensi-blue: #1359c4; --sr-dist: 14px; } .btn-primary { background: #1359c4; color: #fff; border: none; } [data-ensibtn] { position: relative; overflow: hidden; isolation: isolate; } .sr { opacity: 0; transform: translateY(var(--sr-dist)); transition: opacity .6s ease, transform .6s cubic-bezier(.22, .61, .36, 1); will-change: transform, opacity; } .sr.in-view { opacity: 1; transform: none; } .sr-delay-1 { transition-delay: .06s } .sr-delay-2 { transition-delay: .12s } .sr-delay-3 { transition-delay: .18s } .sr-delay-4 { transition-delay: .24s } .sr-delay-5 { transition-delay: .30s } .form-status { margin-top: 10px; font-weight: 700; } .form-status.ok { color: #2e7d32; } .form-status.err { color: #c62828; } .input-error { border-color: #c62828 !important; box-shadow: 0 0 0 2px rgba(198, 40, 40, .15); } .faq-list { display: grid; gap: 1rem; } .faq-item { border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); overflow: hidden; transition: all 0.3s ease; } .faq-question { width: 100%; padding: 1rem 1.25rem; font-size: 1rem; font-weight: 600; text-align: left; background: none; border: none; outline: none; cursor: pointer; transition: background 0.3s; color: #000; } .faq-question:hover { background: #f9fafb; } .faq-answer { max-height: 0; overflow: hidden; padding: 0 1.25rem; font-size: 0.95rem; color: #4b5563; transition: max-height 0.4s ease, padding 0.3s ease; } .faq-item.active .faq-answer { max-height: 200px; padding: 1rem 1.25rem; } .icon-20 { width: 32px; height: 32px; display: inline-block; vertical-align: middle; } .icon-20 svg { width: 100%; height: 100%; display: block; } .legal-hero { padding: 64px 0; } .legal-hero h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; margin: 0 0 8px; } .legal-meta { color: #6b7280; font-size: 14px; margin-top: 4px; } .legal-grid { display: grid; gap: 32px; } @media (min-width: 980px) { .legal-grid { grid-template-columns: 280px 1fr; } .legal-toc { position: sticky; top: var(--header-h, 72px); } } .legal-card { background: #fff; border: 1px solid rgba(17, 24, 39, .08); border-radius: 14px; padding: 24px; box-shadow: 0 8px 24px rgba(2, 6, 23, .04); } .legal-toc h3 { margin: 0 0 12px; font-size: 16px; } .legal-toc a { display: block; padding: 10px 12px; border-radius: 10px; color: #374151; text-decoration: none; border: 1px solid transparent; } .legal-toc a:hover { border-color: rgba(17, 24, 39, .08); background: #f9fafb; } .legal h2 { margin-top: 36px; margin-bottom: 12px; font-size: clamp(20px, 3vw, 28px); } .legal h3 { margin-top: 26px; margin-bottom: 8px; font-size: clamp(18px, 2.4vw, 22px); } .legal p, .legal li { color: #374151; } .legal ul { padding-left: 18px; } .legal small { color: #6b7280; } #testimonials-ensi { overflow: hidden; } #testimonials-ensi .marquee-viewport { overflow: hidden; width: 100%; } #testimonials-ensi .track { display: flex; gap: 20px; will-change: margin-left; } #testimonials-ensi .card { flex: 0 0 auto; width: 320px; } .price-card .list { list-style: none; padding: 0; margin: 0 0 12px; } .price-card .list li { display: flex; align-items: center; gap: 8px; margin: 6px 0; font-weight: 500; font-size: 15px; } .price-card .list li::before { content: "✔"; font-weight: 800; color: #1f6dff; display: inline-block; width: 18px; text-align: center; } .price-card .list li.excluded { opacity: 0.55; text-decoration: line-through; } .price-card .list li.excluded::before { content: "✖"; color: #c62828; }