:root {
--blue:#0759f5;
--blue2:#003ca7;
--navy:#061a3c;
--ink:#0b1f45;
--muted:#65728d;
--pale:#f4f8ff;
--line:#dfe7f5;
--green:#13c989;
--purple:#7c4dff;
--white:#fff;
--shadow:0 14px 40px rgba(10,45,110,.12)
}
* {
	box-sizing: border-box
}
html {
	scroll-behavior: smooth
}
body {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	color: var(--ink);
	background: #fff
}
a {
	text-decoration: none;
	color: inherit
}
button, input, select, textarea {
	font: inherit
}
.container {
	width: min(1160px, calc(100% - 40px));
	margin: auto
}
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(1,45,126,.9);
	backdrop-filter: blur(12px);
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,.12)
}
.nav-wrap {
	height: 70px;
	display: flex;
	align-items: center;
	gap: 34px
}
.brand {
	display: flex;
	align-items: center;
	gap: 9px;
	font-weight: 800
}
.brand-mark {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 9px;
	background: linear-gradient(135deg, #0af, #0759f5);
	color: #fff
}
.nav {
	display: flex;
	gap: 28px;
	margin-left: auto;
	font-size: 13px
}
.nav a {
	opacity: .86
}
.nav a:hover {
	opacity: 1
}
.nav-actions {
	display: flex;
	gap: 8px
}
.btn {
	border: 0;
	border-radius: 8px;
	padding: 11px 18px;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: .2s
}
.btn:hover {
	transform: translateY(-2px)
}
.btn-light {
	background: #fff;
	color: var(--blue)
}
.btn-ghost {
	background: rgba(255,255,255,.1);
	color: #fff;
	border: 1px solid rgba(255,255,255,.25)
}
.btn-primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 10px 24px rgba(7,89,245,.22)
}
.btn-green {
	background: var(--green);
	color: #fff
}
.btn-lg {
	padding: 14px 22px
}
.full {
	width: 100%
}
.menu-btn {
	display: none;
	margin-left: auto;
	background: none;
	border: 0;
	color: #fff;
	font-size: 25px
}
.hero {
	padding: 132px 0 45px;
	background: radial-gradient(circle at 70% 20%, rgba(48,143,255,.45), transparent 25%), linear-gradient(120deg, #063485, #0056df 58%, #0876ff);
	color: #fff;
	overflow: hidden
}
.hero-grid {
	display: grid;
grid-template-columns:1.05fr .95fr;
	align-items: center;
	gap: 70px
}
.eyebrow {
	display: inline-flex;
	padding: 6px 10px;
	border-radius: 20px;
	background: #e8f0ff;
	color: var(--blue);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em
}
.eyebrow.dark {
	background: rgba(255,255,255,.13);
	color: #d9ecff
}
.hero h1 {
	font-size: 52px;
	line-height: 1.03;
	margin: 18px 0;
	max-width: 650px;
	letter-spacing: -.045em
}
.hero p {
	font-size: 17px;
	line-height: 1.7;
	max-width: 600px;
	color: #d7e6ff
}
.hero-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 26px 0
}
.text-link {
	font-weight: 700;
	font-size: 14px
}
.hero-points {
	display: flex;
	gap: 22px;
	font-size: 12px;
	color: #cae0ff
}
.hero-visual {
	position: relative;
	min-height: 430px
}
.phone-card {
	position: absolute;
	right: 70px;
	top: 15px;
	width: 310px;
	min-height: 390px;
	border-radius: 28px;
	padding: 22px;
	background: linear-gradient(145deg, #fff, #eaf4ff);
	color: var(--ink);
	box-shadow: 0 30px 90px rgba(0,25,86,.35);
	transform: rotate(2deg)
}
.phone-top {
	display: flex;
	justify-content: space-between;
	font-size: 12px
}
.balance {
	margin: 25px 0
}
.balance small, .mini-stats small, .float-card small {
	display: block;
	color: #7b89a5;
	font-size: 10px
}
.balance strong {
	display: block;
	font-size: 31px;
	margin-top: 6px
}
.balance span {
	font-size: 16px
}
.mini-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px
}
.mini-stats div {
	padding: 14px;
	border-radius: 14px;
	background: #f7faff
}
.chart-bars {
	height: 110px;
	margin: 18px 0;
	display: flex;
	align-items: end;
	gap: 8px;
	padding: 12px;
	background: #f5f9ff;
	border-radius: 15px
}
.chart-bars i {
	display: block;
	flex: 1;
	background: linear-gradient(#1aa0ff, #0759f5);
	border-radius: 6px 6px 2px 2px
}
.chart-bars i:nth-child(1) {
	height: 42%
}
.chart-bars i:nth-child(2) {
	height: 68%
}
.chart-bars i:nth-child(3) {
	height: 51%
}
.chart-bars i:nth-child(4) {
	height: 85%
}
.chart-bars i:nth-child(5) {
	height: 64%
}
.chart-bars i:nth-child(6) {
	height: 93%
}
.chart-bars i:nth-child(7) {
	height: 75%
}
.transactions p {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 10px;
	padding: 9px 0;
	border-bottom: 1px solid #edf1f7
}
.transactions b {
	margin-left: auto
}
.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%
}
.dot.green {
	background: #18c991
}
.dot.blue {
	background: #1478ff
}
.float-card {
	position: absolute;
	display: flex;
	gap: 10px;
	align-items: center;
	background: #fff;
	color: var(--ink);
	padding: 12px 14px;
	border-radius: 13px;
	box-shadow: var(--shadow)
}
.float-card>span {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 9px;
	background: #e9f2ff;
	color: var(--blue);
	font-weight: 800
}
.float-a {
	right: 0;
	top: 45px
}
.float-b {
	left: 20px;
	top: 180px
}
.float-c {
	right: 4px;
	bottom: 50px
}
.stats-strip {
	margin-top: 35px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(255,255,255,.2);
	padding-top: 32px
}
.stats-strip div {
	text-align: center
}
.stats-strip strong {
	display: block;
	font-size: 24px
}
.stats-strip span {
	font-size: 11px;
	color: #dce9ff
}
.section {
	padding: 92px 0
}
.pale {
	background: var(--pale)
}
.section-head {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 46px
}
.section-head h2 {
	font-size: 36px;
	letter-spacing: -.035em;
	margin: 12px 0 8px
}
.section-head p {
	color: var(--muted);
	line-height: 1.7
}
.card-grid {
	display: grid;
	gap: 18px
}
.card-grid.four {
	grid-template-columns: repeat(4, 1fr)
}
.feature-card, .industry-card {
	background: #fff;
	border: 1px solid #e4ebf8;
	border-radius: 13px;
	padding: 24px;
	box-shadow: 0 8px 18px rgba(20,54,113,.06);
	transition: .25s
}
.feature-card:hover, .industry-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow)
}
.feature-card .icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: #eaf2ff;
	color: var(--blue);
	font-weight: 800
}
.icon.purple {
	background: #f1ebff;
	color: #7b4aff
}
.icon.green {
	background: #e5fbf4;
	color: #0ba875
}
.icon.orange, .icon.amber {
	background: #fff3df;
	color: #ef8c00
}
.icon.red {
	background: #ffe9e9;
	color: #e84a4a
}
.icon.cyan {
	background: #e7faff;
	color: #0aa5c7
}
.icon.violet {
	background: #f2ebff;
	color: #8654ff
}
.feature-card h3, .industry-card h3 {
	font-size: 15px;
	margin: 17px 0 8px
}
.feature-card p, .industry-card p {
	font-size: 12px;
	line-height: 1.6;
	color: var(--muted)
}
.feature-card a {
	font-size: 11px;
	color: var(--blue);
	font-weight: 700
}
.center {
	text-align: center;
	margin-top: 34px
}
.split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 70px
}
.network-graphic {
	height: 380px;
	position: relative;
	border-radius: 22px;
	background: radial-gradient(circle, #0b79ff, #0344c7 62%, #092f87);
	box-shadow: var(--shadow);
	overflow: hidden
}
.network-graphic:before, .network-graphic:after {
	content: "";
	position: absolute;
	inset: 52px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 50%
}
.network-graphic:after {
	inset: 105px
}
.network-core {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #fff;
	color: var(--blue);
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 0 40px rgba(255,255,255,.5)
}
.node {
	position: absolute;
	padding: 8px 11px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.25);
	color: #fff;
	border-radius: 10px;
	font-size: 11px
}
.n1 {
	left: 45%;
	top: 13%
}
.n2 {
	right: 13%;
	top: 30%
}
.n3 {
	right: 18%;
	bottom: 18%
}
.n4 {
	left: 42%;
	bottom: 10%
}
.n5 {
	left: 12%;
	bottom: 26%
}
.n6 {
	left: 13%;
	top: 24%
}
.about-copy h2 {
	font-size: 40px;
	margin: 12px 0
}
.about-copy>p {
	color: var(--muted);
	line-height: 1.75
}
.check-list {
	list-style: none;
	padding: 0;
	margin: 22px 0
}
.check-list li {
	margin: 13px 0;
	padding-left: 28px;
	position: relative;
	font-size: 13px
}
.check-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	top: -2px;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #e5fbf4;
	color: #0ba875;
	font-weight: 800
}
.metric-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px
}
.metric-row div {
	padding: 15px;
	border-radius: 12px;
	background: #f7f9fd;
	text-align: center
}
.metric-row b {
	display: block;
	color: var(--blue)
}
.metric-row small {
	color: var(--muted)
}
.industry-card span {
	font-size: 22px
}
.process {
	background: #fff
}
.timeline {
	position: relative;
	max-width: 760px;
	margin: auto
}
.timeline:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(var(--blue), #8f4bff, #15c98c)
}
.step {
	position: relative;
	width: 50%;
	padding: 0 42px 42px
}
.step.left {
	text-align: right
}
.step.right {
	margin-left: 50%
}
.step>span {
	position: absolute;
	top: 0;
	width: 27px;
	height: 27px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--blue);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	z-index: 2
}
.step.left>span {
	right: -14px
}
.step.right>span {
	left: -14px;
	background: #7b4dff
}
.step article {
	display: inline-block;
	text-align: left;
	max-width: 280px;
	background: #fff;
	border: 1px solid var(--line);
	padding: 20px;
	border-radius: 14px;
	box-shadow: var(--shadow)
}
.step h3 {
	margin: 0 0 7px;
	font-size: 15px
}
.step p {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.6
}
.dark-section {
	background: #051a3b;
	color: #fff
}
.section-head.light p {
	color: #a9bddf
}
.dashboard-shell {
	display: grid;
	grid-template-columns: 70px 1fr 230px;
	background: #0a2a59;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 18px;
	min-height: 390px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0,0,0,.3)
}
.dashboard-shell aside {
	padding: 20px;
	background: #08234a;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 23px
}
.logo-dot {
	width: 28px;
	height: 28px;
	border-radius: 9px;
	background: #1478ff
}
.dashboard-shell aside i {
	width: 22px;
	height: 7px;
	border-radius: 5px;
	background: #234672
}
.dash-main {
	padding: 28px
}
.dash-top {
	display: flex;
	justify-content: space-between;
	color: #c9daf4;
	font-size: 12px
}
.dash-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin: 25px 0
}
.dash-cards div, .side-widgets article {
	background: #0d356e;
	padding: 18px;
	border-radius: 12px
}
.dash-cards small, .side-widgets small {
	color: #92add2;
	font-size: 10px
}
.dash-cards b, .side-widgets b {
	display: block;
	margin-top: 7px;
	font-size: 18px
}
.big-chart {
	height: 180px;
	border-radius: 14px;
	background: repeating-linear-gradient(0deg, transparent, transparent 34px, rgba(255,255,255,.05) 35px), repeating-linear-gradient(90deg, transparent, transparent 70px, rgba(255,255,255,.04) 71px);
	position: relative;
	overflow: hidden
}
.chart-line {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 35px;
	height: 85px;
	background: linear-gradient(160deg, transparent 48%, #16a0ff 49%, #15d2d2 53%, transparent 54%)
}
.side-widgets {
	padding: 28px 24px 28px 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	align-content: center
}
.app-section {
	background: #03132d;
	color: #fff
}
.app-grid {
grid-template-columns:.85fr 1.15fr
}
.mobile-mock {
	width: 260px;
	height: 500px;
	margin: auto;
	border: 8px solid #10264c;
	border-radius: 38px;
	background: #030a18;
	padding: 12px;
	box-shadow: 0 30px 80px rgba(0,0,0,.5)
}
.mob-speaker {
	width: 70px;
	height: 7px;
	border-radius: 10px;
	background: #173258;
	margin: 0 auto 18px
}
.mob-screen {
	height: 445px;
	border-radius: 24px;
	padding: 24px;
	background: linear-gradient(160deg, #0569ff, #05286d 48%, #031b43);
	text-align: center
}
.mob-screen small {
	color: #b9d3ff
}
.mob-screen strong {
	display: block;
	font-size: 31px;
	margin: 12px
}
.mob-actions {
	display: flex;
	justify-content: space-around;
	margin: 28px 0
}
.mob-actions span {
	width: 50px;
	height: 50px;
	border-radius: 15px;
	background: rgba(255,255,255,.12);
	display: grid;
	place-items: center;
	font-size: 10px
}
.mob-list i {
	display: block;
	height: 48px;
	border-radius: 12px;
	background: rgba(255,255,255,.08);
	margin: 10px 0
}
.app-copy h2 {
	font-size: 44px;
	margin: 15px 0
}
.app-copy em {
	color: #15a8ff;
	font-style: normal
}
.app-copy>p {
	color: #afc4e7;
	line-height: 1.7
}
.light-list li:before {
	background: rgba(21,201,140,.15)
}
.store-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 24px
}
.store-btn {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 9px 14px;
	background: #fff;
	color: #111;
	border-radius: 9px;
	border: 0
}
.store-btn span {
	text-align: left;
	font-weight: 700
}
.store-btn small {
	display: block;
	font-size: 7px
}
.qr {
	background: #fff;
	color: #111;
	padding: 12px;
	border-radius: 8px;
	font-size: 25px
}
.store-row>div:last-child small {
	display: block;
	color: #8ba6d0
}
.logo-cloud {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px
}
.logo-cloud span {
	height: 58px;
	display: grid;
	place-items: center;
	background: #fff;
	border: 1px solid #e1e9f6;
	border-radius: 10px;
	font-weight: 800;
	font-size: 13px;
	color: #425273;
	box-shadow: 0 7px 15px rgba(15,45,100,.05)
}
.testimonial-track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	overflow: hidden
}
.testimonial-track article {
	padding: 25px;
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow);
	background: #fff
}
.stars {
	color: #ffad00
}
.testimonial-track p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.7
}
.testimonial-track footer {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-top: 20px
}
.testimonial-track footer>span {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #eaf2ff;
	color: var(--blue);
	font-weight: 800
}
.testimonial-track footer b, .testimonial-track footer small {
	display: block
}
.testimonial-track footer small {
	color: var(--muted);
	margin-top: 2px
}
.slider-controls {
	text-align: right;
	margin-top: 18px
}
.slider-controls button {
	width: 36px;
	height: 36px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 50%;
	cursor: pointer
}
.faq-grid {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 70px
}
.faq-side h2 {
	font-size: 40px
}
.faq-side>p {
	color: var(--muted);
	line-height: 1.7
}
.support-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 24px
}
.support-stats div {
	background: #fff;
	border-radius: 10px;
	padding: 15px;
	text-align: center
}
.support-stats b, .support-stats small {
	display: block
}
.support-stats b {
	color: var(--blue)
}
.support-stats small {
	font-size: 10px;
	color: var(--muted)
}
.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 10px;
	margin-bottom: 10px;
	overflow: hidden
}
.faq-item button {
	width: 100%;
	padding: 17px 20px;
	border: 0;
	background: #fff;
	text-align: left;
	font-weight: 700;
	color: var(--ink);
	display: flex;
	justify-content: space-between;
	cursor: pointer
}
.faq-item>div {
	display: none;
	padding: 0 20px 18px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.6
}
.faq-item.active>div {
	display: block
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px
}
.lead-form {
	padding: 26px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 15px;
	box-shadow: var(--shadow)
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px
}
.lead-form label, .modal-card label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	margin-bottom: 13px
}
.lead-form input, .lead-form select, .lead-form textarea, .modal-card input, .modal-card select {
	width: 100%;
	margin-top: 7px;
	padding: 13px;
	border: 1px solid #dce4f1;
	border-radius: 8px;
	outline: none
}
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(7,89,245,.1)
}
.form-status {
	font-size: 12px;
	text-align: center;
	color: #0ba875
}
.contact-map {
	min-height: 500px;
	border-radius: 15px;
	background: #dcecff;
	position: relative;
	overflow: hidden
}
.map-grid {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 49%, rgba(67,131,220,.15) 50%), linear-gradient(transparent 49%, rgba(67,131,220,.15) 50%);
	background-size: 55px 55px;
	transform: rotate(10deg) scale(1.4)
}
.map-pin {
	position: absolute;
	left: 53%;
	top: 40%;
	width: 48px;
	height: 48px;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	display: grid;
	place-items: center;
	background: var(--blue);
	color: #fff;
	font-weight: 800;
	box-shadow: 0 10px 25px rgba(7,89,245,.4)
}
.map-pin::first-letter {
	transform: rotate(45deg)
}
.map-label {
	position: absolute;
	left: 42%;
	top: 52%;
	padding: 10px 16px;
	background: #fff;
	border-radius: 9px;
	box-shadow: var(--shadow)
}
.map-label small {
	display: block;
	color: var(--muted)
}
.contact-card {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	background: var(--blue);
	color: #fff;
	border-radius: 12px;
	padding: 20px
}
.contact-card h3 {
	margin-top: 0
}
.contact-card p {
	margin: 7px 0;
	font-size: 12px;
	color: #dbe8ff
}
.cta-section {
	background: #04162f;
	padding: 40px 0
}
.cta-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 34px 42px;
	border-radius: 18px;
	color: #fff;
	background: linear-gradient(100deg, #0647cf, #087cff, #11c894)
}
.cta-box h2 {
	margin: 0 0 7px
}
.cta-box p {
	margin: 0;
	color: #ddedff
}
.footer {
	padding: 55px 0 20px;
	background: #031229;
	color: #a9bddf
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	gap: 35px
}
.footer-brand {
	color: #fff
}
.footer p {
	font-size: 12px;
	line-height: 1.7;
	max-width: 260px
}
.footer h4 {
	color: #fff;
	font-size: 13px
}
.footer-grid>div:not(:first-child) a {
	display: block;
	font-size: 11px;
	margin: 11px 0
}
.socials {
	display: flex;
	gap: 8px
}
.socials a {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border: 1px solid #26436a;
	border-radius: 7px
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #173154;
	padding-top: 18px;
	margin-top: 35px;
	font-size: 10px
}
.modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(2,13,35,.72);
	display: none;
	place-items: center;
	padding: 20px
}
.modal.open {
	display: grid
}
.modal-card {
	position: relative;
	width: min(430px, 100%);
	background: #fff;
	border-radius: 18px;
	padding: 30px;
	box-shadow: 0 30px 90px rgba(0,0,0,.35)
}
.modal-card h2 {
	margin: 0 0 7px
}
.modal-card>p {
	color: var(--muted)
}
.modal-close {
	position: absolute;
	right: 15px;
	top: 10px;
	border: 0;
	background: none;
	font-size: 28px;
	cursor: pointer
}
.modal-note {
	display: block;
	text-align: center;
	margin-top: 12px;
	color: #0ba875
}
.back-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 0;
	background: var(--blue);
	color: #fff;
	box-shadow: var(--shadow);
	display: none;
	cursor: pointer
}
.back-top.show {
	display: block
}
.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: .7s ease
}
.reveal.visible {
	opacity: 1;
	transform: none
}
.delay-1 {
	transition-delay: .12s
}
@media(max-width:900px) {
.nav, .nav-actions {
	display: none
}
.nav.open {
	display: flex;
	position: absolute;
	top: 70px;
	left: 0;
	right: 0;
	background: #063485;
	padding: 20px;
	flex-direction: column
}
.menu-btn {
	display: block
}
.hero-grid, .split-grid, .faq-grid, .contact-grid {
	grid-template-columns: 1fr
}
.hero h1 {
	font-size: 42px
}
.hero-visual {
	min-height: 440px
}
.card-grid.four {
	grid-template-columns: repeat(2, 1fr)
}
.dashboard-shell {
	grid-template-columns: 55px 1fr
}
.side-widgets {
	grid-column: 2;
	padding: 0 24px 24px
}
.logo-cloud {
	grid-template-columns: repeat(3, 1fr)
}
.footer-grid {
	grid-template-columns: repeat(2, 1fr)
}
.footer-grid>div:first-child {
	grid-column: 1/-1
}
.app-copy {
	text-align: center
}
.mobile-mock {
	order: 2
}
.check-list.light-list {
	display: inline-block;
	text-align: left
}
}
@media(max-width:600px) {
.container {
	width: min(100% - 24px, 1160px);margin: 0px 0px 0px 9px;
}
.wwa-text {
    margin-top: 50px;
    margin-left: 9px;
}
.hero {
	padding-top: 105px
}
.hero h1 {
	font-size: 36px
}
.hero-actions, .hero-points {
	flex-wrap: wrap
}
.phone-card {
	right: 15px;
	width: 280px
}
.float-b {
	left: 0
}
.stats-strip {
	grid-template-columns: 1fr 1fr;
	gap: 24px
}
.section {
	padding: 68px 0
}
.section-head h2, .about-copy h2, .faq-side h2 {
	font-size: 30px
}
.card-grid.four, .testimonial-track, .dash-cards, .form-row {
	grid-template-columns: 1fr
}
.timeline:before {
	left: 13px
}
.step, .step.right {
	width: 100%;
	margin-left: 0;
	padding-left: 48px;
	padding-right: 0;
	text-align: left
}
.step.left>span, .step.right>span {
	left: 0;
	right: auto
}
.dashboard-shell {
	grid-template-columns: 1fr
}
.dashboard-shell aside {
	display: none
}
.side-widgets {
	grid-column: 1;
	grid-template-columns: 1fr 1fr;
	padding: 0 20px 20px
}
.logo-cloud {
	grid-template-columns: repeat(2, 1fr)
}
.cta-box {
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding: 28px
}
.footer-grid {
	grid-template-columns: 1fr 1fr
}
.footer-bottom {
	flex-direction: column;
	gap: 10px
}
.contact-map {
	min-height: 430px
}
.hero-visual {
	transform: scale(.9);
	transform-origin: center top;
	margin-bottom: -40px
}
}
