/* ==========================================================================
   notify.lk — hand-written stylesheet.
   Numbers come from baseline/css/inline/* and baseline/style-tokens.json,
   not from taste. Breakpoints match the live site: 1024 / 767 / 479.
   ========================================================================== */

/* --------------------------------------------------------------- tokens */
:root {
	--brand: #148dce;
	--brand-hover: #727272;
	--link: #1e73be;
	--text: #2e2e2e;
	--muted: #69727d;
	--band: #eef0f2;
	--footer-bg: #2b2b2b;
	--copyright-bg: #222222;
	--success: #5cb85c;
	--star: #f0ad4e;
	--rule: #bcbcbc;
	--card-border: #e1e8ed;
	--accordion-border: #d5d8dc;
	--font: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--container: 1100px;   /* GeneratePress content container */
	--container-wide: 1140px; /* Elementor boxed container inside stretched sections */
	--header-h: 75px;
}

/* ----------------------------------------------------------- reset/base */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	padding-top: var(--header-h);
	font-family: var(--font);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--text);
	background-color: #fff;
	overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; border: 0; }
svg { display: block; }

a { color: var(--link); text-decoration: none; }
a:hover, a:focus, a:active { color: #000; }

h1, h2, h3, h4, h5, h6 { margin: 0 0 20px; line-height: 1.2em; font-weight: 400; }
h1 { font-size: 40px; font-weight: 300; }
h2 { font-size: 30px; font-weight: 300; }
/* GeneratePress: explicit 700 — the UA default `bolder` only reaches 400 inside 300-weight headings. */
b, strong { font-weight: 700; }
h3 { font-size: 20px; }
h4, h5, h6 { font-size: inherit; }
p { margin: 0 0 1.5em; }

button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
/* GeneratePress resets these globally; Chrome's UA margins on radios/checkboxes leak otherwise. */
button, input, select, textarea { margin: 0; vertical-align: baseline; }
/* normalize.css rule the live site ships; keeps <sup> from inflating line boxes. */
sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; top: -0.5em; }

.u-visually-hidden, .skip-link {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}
.skip-link:focus {
	position: static !important;
	width: auto; height: auto; margin: 0; clip: auto;
	display: inline-block; padding: 8px 12px; background: #fff;
}
.u-underline { text-decoration: underline; }

/* --------------------------------------------------------------- layout */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
}
.container--wide { max-width: var(--container-wide); }
.container--full { max-width: none; }
.container--narrow { max-width: 760px; }
.container--middle { max-width: var(--container-wide); min-height: 450px; display: flex; flex-direction: column; justify-content: center; }
.col { padding: 10px; }
.grid { display: flex; flex-wrap: wrap; }
.grid--4 > .col { width: 25%; }

.band--grey { background-color: var(--band); }

/* Sections that are "stretched" on the live site run full-bleed but keep a
   1140px inner container. Non-stretched sections sit in the 1100px container. */
.section-stat > .container,
.section-counters > .container,
.section-partners > .container,
.section-reviews > .container { max-width: var(--container-wide); }

/* --------------------------------------------------------------- header */
.site-header {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	z-index: 888;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, .117647) 0 1px 3px;
}
.inside-header {
	display: flex;
	align-items: flex-start;
	padding: 10px 0;
}
.site-logo { width: 19.061%; padding: 14px 10px 10px; }
.site-logo img { display: block; width: 150px; height: 31px; }
.site-nav { width: 80.939%; padding: 14px 10px 10px; display: flex; justify-content: flex-end; }

.nav__list { display: flex; justify-content: flex-end; align-items: center; margin: 0; padding: 0; list-style: none; }
.nav__item { margin: 0 12px; }
.nav__item:first-child { margin-left: 0; }
.nav__item:last-child { margin-right: 0; }
.nav__link {
	position: relative;
	display: block;
	padding: 4px 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	text-transform: uppercase;
	color: var(--text);
}
.nav__link::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1px;
	background-color: var(--brand);
	transform: scaleX(0);
	transition: transform .3s;
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__item--highlight { background: var(--brand); margin-left: 0; padding: 0 11px 0 12px; }
.nav__item--highlight .nav__link { color: #fff; }
.nav__item--highlight .nav__link::after { display: none; }

.nav-toggle { display: none; padding: 7px; border-radius: 3px; background: #f2f2f2; color: #494c4f; }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle__close { display: none; }

/* --------------------------------------------------------------- footer */
.site-footer {
	background-color: var(--footer-bg);
	color: #fff;
	padding: 45px 0 50px;
}
.site-footer .container { max-width: var(--container-wide); }
.site-footer__grid { display: flex; flex-wrap: wrap; }
.site-footer__col { width: 33.333%; }
.site-footer__about { padding: 10px; }
.site-footer__about h3 { font-size: 20.79px; margin: 0 0 24px; padding: 15px 15px 0; color: #fff; }
.site-footer__about > p { font-size: 14.79px; line-height: 24px; color: #fff; margin: 0 0 -10px; padding: 0 15px; }
.site-footer__logo { padding: 0 0 0 15px; margin-top: 20px; }
.site-footer__logo img { width: 176px; height: 31px; }
.site-footer__contact { display: flex; align-items: center; margin-top: 10px; padding-left: 15px; }
.social-icons { display: flex; gap: 5px; list-style: none; margin: 0; padding: 0; width: 34.444%; }
.social-icon {
	display: flex; align-items: center; justify-content: center;
	width: 28px; height: 28px; color: #fff;
}
.social-icon svg { width: 14px; height: 14px; }
.social-icon--facebook { background: #3b5998; }
.social-icon--twitter { background: #1da1f2; }
.social-icon--whatsapp { background: #25d366; }
.site-footer__phone { display: flex; align-items: center; gap: 7px; margin: 0; font-size: .8em; font-weight: 600; color: #fff; }
.site-footer__phone svg { width: 26px; height: 26px; color: #fff; }

.site-footer__nav { padding: 22px 25px 25px; }
.site-footer__nav h5 { font-size: 20.79px; color: #fff; font-weight: 400; line-height: 1.2em; margin: 0 0 18px; }
.site-footer__social h5 { font-size: 20.79px; color: #fff; font-weight: 400; line-height: 1; margin: 0 0 18px; }
.footer-menu { list-style: none; margin: 0; padding: 0; line-height: 25px; }
.footer-menu a { color: #fff; font-size: 15.28px; }
.footer-menu a::before { content: "\203A"; padding-right: 7px; }
.footer-menu a:hover { color: #fff; text-decoration: underline; }

.site-footer__social { padding: 27px 15px 15px; }
.fb-page-embed { padding-top: 10px; margin-bottom: 20px; max-width: 500px; }
.fb-page-embed iframe { display: block; width: 100%; max-width: 500px; height: 214px; border: none; overflow: hidden; }
.trustpilot-widget { min-height: 52px; text-align: center; }
.trustpilot-widget a { color: #fff; }

.site-info { background-color: var(--copyright-bg); color: #fff; padding: 20px; }
.site-info .container { max-width: var(--container); }
.copyright-bar { text-align: center; font-weight: 300; font-size: 14px; }

/* ----------------------------------------------------------- components */
/* button ------------------------------------------------------------- */
.btn {
	background-color: var(--brand);
	color: #fff;
	font-family: inherit;
	line-height: 1;
	text-align: center;
	border: 0;
	border-radius: 3px;
	padding: 15px 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: background-color .3s;
}
.btn:hover, .btn:focus { color: #fff; background-color: var(--brand-hover); }
.btn__content { display: inline-flex; align-items: center; justify-content: center; }
.btn__icon svg { width: auto; height: 1em; } /* FontAwesome glyphs are not square */
.btn-wrapper { text-align: center; line-height: 0; }
.btn-wrapper--start { text-align: left; }

.btn--hero { font-size: 22px; font-weight: 400; border-radius: 0; }
.btn--cta { font-size: 21px; border-radius: 15px; }
.btn--cta .btn__content { gap: 12px; }
.btn--success { background-color: var(--success); padding: 12px 24px; font-size: 15px; }
.btn--success:hover, .btn--success:focus { background-color: #4c9c4c; }

/* hero --------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__bg {
	position: absolute; inset: 0;
	background-color: #fff;
	background-image: url(/wp-content/uploads/2018/04/home-bg.jpg);
	background-size: cover;
	background-position: 50% 50%;
}
.hero__overlay { position: absolute; inset: 0; background-color: rgba(0, 0, 0, .4); }
.hero__inner {
	position: relative;
	height: 550px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 0 10px;
}
.hero__contents { max-width: 66%; }
.hero__heading { font-size: 55px; font-weight: 700; line-height: 1.3em; margin-bottom: 30px; }
.hero__description { font-size: 22px; font-weight: 400; line-height: 1.36em; margin-bottom: 30px; }

/* intro band --------------------------------------------------------- */
.section-intro { padding: 50px 0 30px; text-align: center; }
.heading { margin: 0 0 20px; line-height: 1; font-weight: 600; color: var(--text); text-align: center; }
.heading--intro { font-size: 33px; }
.intro-text { font-size: 20px; color: var(--text); }


/* icon boxes --------------------------------------------------------- */
.section-features { padding: 70px 0; }
.icon-box { display: flex; flex-direction: column; align-items: center; gap: 15px; text-align: center; }
.icon-box__icon { color: var(--brand); }
.icon-box__icon svg { width: 70px; height: 70px; }
.icon-box__title { font-size: 19px; font-weight: 700; color: var(--text); margin: 0 0 20px; line-height: 1.2em; }
.icon-box__description { font-size: 15px; font-weight: 400; line-height: 1.5; margin: 0; }

/* 44% stat band ------------------------------------------------------ */
.section-stat {
	position: relative;
	padding: 150px 0 160px;
	background-image: url(/wp-content/uploads/2017/11/phone-table-back.jpg);
	background-position: center right;
	background-size: cover;
}
.section-stat__overlay { display: none; position: absolute; inset: 0; background-color: #000; opacity: .75; }
.section-stat > .container { position: relative; }
.section-stat__lead { font-size: 26px; }
.section-stat__sub { font-size: 20px; font-weight: 600; color: var(--brand); }
.section-stat p { margin-bottom: 5px; }

/* animated headline -------------------------------------------------- */
.section-headline { margin-top: 70px; }
.headline {
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2em;
	text-align: center;
	color: var(--text);
}
.headline__rotator { position: relative; display: inline-block; color: var(--brand); }
.headline__rotator::after {
	content: "";
	display: inline-block;
	width: 2px;
	height: 1em;
	margin-left: 2px;
	vertical-align: -.12em;
	background: var(--brand);
	animation: headline-caret 1s step-end infinite;
}
.headline__word { display: none; }
.headline__word.is-active { display: inline; }
@keyframes headline-caret { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* counters ----------------------------------------------------------- */
.section-counters { padding: 30px 0 100px; border-bottom: 2px solid #b4b4b4; }
.counter { text-align: center; }
.counter__number-wrapper { font-size: 2.7em; line-height: 1.26em; font-weight: 400; }
.counter__title { font-size: .8em; order: 2; }
.counter { display: flex; flex-direction: column; }
.counter__number-wrapper { order: 1; }

/* integrations card grid --------------------------------------------- */
.section-integrations { padding: 60px 0 50px; }
.heading--integrations { font-size: 24px; margin-bottom: 60px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 30px; row-gap: 35px; }
.card__thumb-link { display: block; width: 100%; margin-bottom: 20px; }
.card__thumb { position: relative; width: 100%; padding-bottom: 66%; overflow: hidden; }
.card__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card__title { font-size: 18px; font-weight: 400; line-height: 1.2em; margin: 0; }
.card__title a { color: var(--link); }

/* why band ----------------------------------------------------------- */
.section-why { padding: 70px 0 50px; text-align: center; }
.heading--why { font-size: 21px; }
.why-text { font-size: 20px; font-weight: 300; color: #0b172e; }


/* register CTA ------------------------------------------------------- */
.section-cta { padding: 90px 0; }
.heading--cta { font-size: 23px; margin-bottom: 70px; }

.section-partners { padding: 70px 0 50px; }
.heading--partners { font-size: 21px; }

/* carousel ----------------------------------------------------------- */
.carousel { position: relative; padding: 0 28px; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; transition: transform .35s ease; }
.carousel__slide { flex: 0 0 auto; }
.carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #919191;
	display: flex;
	align-items: center;
	justify-content: center;
}
.carousel__arrow--prev { left: 0; }
.carousel__arrow--next { right: 0; }
.carousel__arrow svg { width: 1em; height: 1em; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.carousel__dot { width: 6px; height: 6px; border-radius: 50%; background: #000; opacity: .2; }
.carousel__dot.is-active { opacity: 1; }

.carousel--logos .carousel__arrow { font-size: 30px; }
.carousel--logos .carousel__viewport { height: 122px; }
.carousel--logos .carousel__slide { padding: 15px; height: 122px; }
.carousel--logos .carousel__dots { height: 30px; align-items: center; margin-top: 0; }
.logo-slide { width: 100%; height: 100%; background-repeat: no-repeat; background-position: 50% 50%; background-size: contain; }

/* reviews ------------------------------------------------------------ */
.section-reviews { padding: 50px 0; border-bottom: 1px solid var(--rule); }
.heading--reviews { font-size: 21px; }
.reviews-lead { display: flow-root; margin-top: -10px; margin-bottom: 20px; }
.carousel--reviews .carousel__arrow { font-size: 20px; }
.carousel--reviews .carousel__dots { margin-top: 20px; height: 18px; align-items: center; }

.testimonial { background: #fff; border: 1px solid var(--card-border); }
.testimonial__header {
	display: flex;
	align-items: center;
	padding: 20px 20px 15px;
	border-bottom: 1px solid var(--card-border);
	color: inherit;
}
.testimonial__image { flex: 0 0 auto; margin-right: 9px; }
.testimonial__image img { width: 40px; height: 40px; border-radius: 50%; display: block; }
.testimonial__cite { flex: 1 1 auto; font-style: normal; display: block; }
.testimonial__name { display: block; font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.5; }
.testimonial__title { display: block; font-size: 13.6px; color: var(--muted); line-height: 1.5; }
.stars { display: flex; align-items: center; height: 20px; color: var(--star); }
.stars .star { width: 13.6px; height: 12px; }
.testimonial__icon { flex: 0 0 auto; }
.testimonial__icon svg { width: 30px; height: 30px; }
.testimonial__icon--facebook { color: #3b5998; }
.testimonial__icon--twitter { color: #1da1f2; }
.testimonial__content { padding: 15px 20px 20px; }
.testimonial__text { font-size: .9em; line-height: 1.6em; }

/* questions ---------------------------------------------------------- */
.section-questions { padding: 90px 0; }
.heading--questions { font-size: 23px; margin-bottom: 70px; }
.questions-text { text-align: center; }


/* FAQ accordion ------------------------------------------------------ */
.section-faq { padding: 30px 0; }
.heading--faq { font-size: 30px; font-weight: 300; color: var(--text); text-align: left; }
.accordion { margin-bottom: 20px; }
.accordion__item { border: 1px solid var(--accordion-border); }
.accordion__item + .accordion__item { border-top: none; }
.accordion__title {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	outline: none;
}
.accordion__icon { display: inline-flex; flex: 0 0 auto; width: 15px; margin-right: 10px; color: var(--text); }
.accordion__icon svg { width: 15px; height: 15px; }
.accordion__icon-opened { display: none; }
.accordion__title[aria-expanded="true"] .accordion__icon-closed { display: none; }
.accordion__title[aria-expanded="true"] .accordion__icon-opened { display: block; }
.accordion__content { padding: 15px 20px; border-top: 1px solid var(--accordion-border); }
.accordion__content p:last-child { margin-bottom: 1.5em; }

/* ---------------------------------------------------------- breakpoints */
@media (max-width: 1024px) {
	:root { --container: 1024px; --container-wide: 1024px; }

	.nav-toggle { display: block; }
	.site-nav { align-items: center; }
	.nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		box-shadow: rgba(0, 0, 0, .117647) 0 3px 3px;
		display: none;
	}
	.nav.is-open { display: block; }
	.nav__list { display: block; }
	.nav__item { margin: 0; }
	.nav__item--highlight { background: none; padding-right: 0; }
	.nav__item--highlight .nav__link { color: var(--text); padding-left: 0; }
	.nav__link { text-align: center; padding: 12px 20px; }
	.nav__link::after { display: none; }
	.nav.is-open ~ .nav-toggle .nav-toggle__open,
	.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
	.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

	.card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	h1 { font-size: 30px; }
	h2 { font-size: 25px; }
	.heading--faq { font-size: 25px; }
	.section-stat__overlay { display: block; }
	.section-stat { color: #fff; text-align: center; }
	.section-stat__sub { color: var(--brand); }
}

@media (max-width: 767px) {
	:root { --container: 767px; --container-wide: 767px; }

	.site-logo { width: 65%; padding: 15px 10px 0 20px; }
	.site-nav { width: 30%; padding: 14px 10px 10px; }
	.nav__link { font-size: 17px; }

	.hero__contents { max-width: 95%; }
	.hero__heading { font-size: 31px; }
	.hero__description { font-size: 20px; }
	.btn--hero { font-size: 23px; }

	.heading--intro { font-size: 21px; }
	.intro-text { font-size: 16px; }

	.grid--4 > .col { width: 100%; }

	.card-grid { grid-template-columns: 1fr; }
	.card__thumb { padding-bottom: 50%; }

	.heading--why { font-size: 17px; }
	.why-text { font-size: 16px; }

	/* header measures 97px tall at 390 on the live site (style-tokens header390) */
	.inside-header { min-height: 97px; }

	/* the carousels drop their arrow gutters at phone width — arrows overlay the slide */
	.carousel { padding: 0; }

	.section-cta { padding: 30px 0 40px; }
	.heading--cta { font-size: 18px; margin-bottom: 20px; }
	.btn--cta { font-size: 15px; }

	.heading--partners { font-size: 17px; }

	.section-questions { padding: 30px 0 40px; }
	.heading--questions { font-size: 18px; margin-bottom: 20px; }

	.site-footer__col { width: 100%; }
	/* Vertical rhythm measured from the live 390px capture (logo/social/phone/heading gaps). */
	.site-footer__logo { margin-top: 22px; }
	.site-footer__contact { display: block; margin-top: 14px; }
	.social-icons { width: auto; }
	.site-footer__phone { margin-top: 32px; }
	.site-footer__phone svg { width: 23px; height: 23px; }
	.site-footer__about { margin-bottom: 49px; }
	.site-footer__nav { margin-bottom: 25px; padding: 0 0 0 20px; }
	.site-footer__nav h5 { margin-bottom: 22px; }
	.site-footer__social { padding: 25px 10px 0 25px; }
}

@media (max-width: 479px) {
	.hero__heading { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}
