body {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
    font-family: 'Manrope', 'Segoe UI', Tahoma, Arial, sans-serif;
  
	color: #fff;
	letter-spacing: 0.02em;  /* Add slight spacing */
}

a {
	text-decoration: none;
	color: #fff;
}

p {
	margin: 0;
	padding: 0;
}

ul {
	padding: 0;
}

li {
	list-style: none;
}

h1, h2, h3, h4, h5, h6, h7 {
	margin: 0;
}

input::-ms-clear {
	display: none;
}

input:focus {
	outline: none !important;
}

input[type=text]::-ms-clear {
	display: none;
	width: 0;
	height: 0;
}

input[type=text]::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

button:active, button:focus {
	outline: none;
}

button::-moz-focus-inner {
	border: 0;
}

button {
	cursor: pointer;
	border: 0;
}

::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #b2b2b2;
	opacity: 1;
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: #b2b2b2;
	opacity: 1;
}

:-ms-input-placeholder {
	/* IE 10+ */
	color: #b2b2b2;
	opacity: 1;
}

:-moz-placeholder {
	/* Firefox 18- */
	color: #b2b2b2;
	opacity: 1;
}

.text-center {
	text-align: center;
}

.center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

header {
	background: #222f54;
	padding: 10px 0;
}

nav{
	position: relative;
}

/* ===== LOGO STYLES - CONSISTENT FOR BOTH VERSIONS ===== */
.logo {
	display: block;
	position: relative;
}

.logo__image {
	/* Consistent sizing for both versions - matches HTML dimensions */
	width: 207px !important;
	height: 47px !important;
	object-fit: contain !important;
	max-width: 207px !important;
	min-width: 207px !important;
}

/* USA EDITION overlay - only shows when present */
.usa-edition-overlay,
.usa-edition-badge {
	position: absolute !important;
	top: 43px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	font-size: 11px !important;
	color: #007bff !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	background: rgba(255, 255, 255, 0.95) !important;
	padding: 1px 6px !important;
	border-radius: 2px;
	border: 1px solid #007bff !important;
	z-index: 1000 !important;
	white-space: nowrap;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	pointer-events: none !important;
}

/* Alternative subtle styling for USA badge */
.usa-edition-overlay.subtle,
.usa-edition-badge.subtle {
	color: #666 !important;
	background: rgba(240, 240, 240, 0.9) !important;
	border-color: #ccc !important;
	font-weight: 500 !important;
}
/* ===== END LOGO STYLES ===== */

.hamburger {
	position: absolute;
    right: 25px;
    top: 20px;
    width: 44px;
    height: 44px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer
}

.hamburger, .hamburger span {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg)
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 24px;
	margin: 4px 0;
    background: #fff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

.hamburger span:first-child {
    top: 0
}

.hamburger span:nth-child(2) {
    top: 8px
}

.hamburger span:nth-child(3) {
    top: 16px
}

.hamburger.open span:first-child {
    top: 9px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(135deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -30px
}

.hamburger.open span:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(135deg);
    transform: rotate(-135deg)
}


.mob-menu{
	display: none;
}

.mob-menu .logo {
    padding: 5px 5px 5px 10px;
}

.mob-list{
	padding-bottom: 30px
}

.mob-list ul{
	width: 100%;
}

.mob-list li{
	width: 320px;
	margin: 20px auto;
	text-align: center;
}

.mob-list .navbar-list-item:not(:last-child){
	margin: 20px auto;
}

.navbar {
  display: flex;
  align-items: center;
  position: relative;       /* needed for absolute centering of nav list */
  padding: 0;
}

/* Logo: left side, fixed width */
.navbar .logo {
  flex: 0 0 auto;
  margin-right: 0;
}

/* Nav list: truly centered inside the navbar bar */
.navbar-list {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.navbar-list-item-link {
  font-size: 18px;
}

.navbar-list-item:not(:last-child) {
  margin-right: 40px;
}

.navbar-list-item-link:hover {
  color: #e8edf5;
}

/* Right group: Buy Now + language dropdown */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;        /* pushes right group to the far right */
}

.center-holder {
	display: flex;
}

.title__image {
	display: inline-block;
	position: relative;
}

.title__image img {
	 max-width: 100%;
  height: auto;
}

.title__image .youtube {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;   /* or any size you want */
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.title__image .youtube:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.title__image .player-holder {
	position: absolute;
	/*top: 14px;
    left: 60px;*/
	top: 4%;
	left: 10%;
	width: 80%;
	height: 81%;
}

.title__text {
	display: inline-block;
	width: 550px;
}

.title__buttons {
	display: flex;
	margin-top: 45px;
}

.btn-green {
	background: #60cc02;
	text-shadow: 0 1px 2px rgba(0,0,0,0.4); /* boosts readability */
	padding: 5px 50px;
	border-radius: 15px;
	font-size: 20px;
	transition: all 0.3s ease-in-out;
}

.btn-green:hover {
	transform: scale(1.1);
}

.btn-title {
	padding: 5px 30px;
	border-radius: 25px;
	font-size: 26px;
}

.btn-blue {
	background: #0052CC;
	text-shadow: 0 1px 2px rgba(0,0,0,0.4); /* boosts readability */
}

/* .main overridden fully in NEW DESIGN 2025 section below */

.title-h1 {
	font-size: 40px;
	margin-bottom: 0px;
}

.main__text {
	font-size: 20px;
	margin-bottom: 50px;
}

.flag-flex {
	display: flex;
	justify-content: center;
}

.flag-flex-item:not(:last-child) {
	margin-right: 15px;
}

.circle-container {
	display: inline-block;
	position: absolute;
	margin-top: 20px;
	margin-left: 40px;
}

.download-circle {
	position: absolute;
	background: #eb5e0c;
	height: 150px;
	width: 150px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	transform: rotate(10deg);
	font-size: 16px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	padding-top: 20px;
	top: -35px;
	right: 0px;
}

.text-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.span-number {
	font-size: 44px;
	line-height: 44px;
	font-weight: 900;
}

.span-text {
	font-size: 25px;
	line-height: 20px;
}

.card {
	color: #000;
	text-align: center;
	-webkit-box-shadow: 0px 6px 8px 4px rgba(34, 60, 80, 0.15);
	-moz-box-shadow: 0px 6px 8px 4px rgba(34, 60, 80, 0.15);
	box-shadow: 0px 6px 8px 4px rgba(34, 60, 80, 0.15);
	background: transparent;
	border-radius: 15px;
	margin-bottom: 50px;
}

.cart__title {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.cart__title img {
	width: 200px;
	object-fit: scale-down;
	height: 38px;
}

.card__image {
	background: #f3f3f3;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card__image img {
	width: 100%;
	min-height: 300px;
	object-fit: scale-down;
}

.card__content {
	padding: 25px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.card__content-title {
	padding: 0 0 25px 0;
	font-weight: bold;
	font-size: 30px;
}

.card__content-text {
	font-size: 16px;
	min-height: 15px;
	padding: 0 15px;
}

.card__content-download {
	padding: 10px 50px;
	display: block;
	background-color: #62c800;
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
	border-radius: 30px;
	font-size: 18px;
  font-weight:700;
	width: 350px;
	margin: 0 auto;
	margin-top: 25px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.card__content-download:hover {
	transform: scale(1.1);
}

.card__content-download-small {
	font-size: 19px;
	width: 180px;
	text-align: center;
	padding: 7px 20px;
	border-radius: 18px;
}

.card__content-download:hover {
	transform: scale(1.1);
}

.bg1 {
	background: #532c6d;
}

.bg2 {
	background: #261541;
}

.bg3 {
	background: #2a8fb4;
}

.bg4 {
	background: #ed6905;
}

.card__content-link {
	color: #000;
	text-decoration: underline;
	font-weight: bold;
	margin-top: 15px;
	display: block;
}

.circle-2 {
	position: absolute;
	background: #eb5e0c;
	height: 100px;
	width: 100px;
	right: 10px;
	top: -10px;
	color: #fff;
	font-weight: bold;
	font-size: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(10deg);
	-webkit-box-shadow: 0px 20px 8px -10px rgba(34, 60, 80, 0.15);
	-moz-box-shadow: 0px 20px 8px -10px rgba(34, 60, 80, 0.15);
	box-shadow: 0px 20px 8px -10px rgba(34, 60, 80, 0.15);
}

.footer {
	background: #1a2440;
	padding: 14px 0;
	font-size: 14px;
}

.copy {
	text-align: center;
	color: #e3e3e3;
}

.download{
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.download .top-row{
	position: relative;
	width: max-content;
	margin: 0 auto;
}

.download .download-descr {
	font-size: 14px;
}

.download .top-img {
	margin: 20px auto;
	width: 700px;
}

.download .youtube {
    width: auto;
	height: 27%;
	position: absolute;
	top: 45%;
	left: 50%;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	transform: translate(-50%, -50%);
}

.download .youtube:hover {
    width: auto;
	height: 30%;
}

.download .player-holder {
	position: absolute;
	top: 8%;
	left: 10%;
	width: 80%;
	height: 76%;
}

.download .light-grey {
	background-color: #edf0f6;
}

.download .middle {
	margin: 20px 0;
	padding: 40px 0;
}

.download .light-grey img, .download .white img{
	width: 400px;
}

.download .light-grey img{
    float: right;
}

.download .white img{
    float: left
}

.download .light-grey .text-container, .download .white .text-container{
	width: 370px;
}

.download .light-grey .text-container{
	float: left;
}


.download .white .text-container{
	float: right;
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 1199.92px) {
	.navbar-list-item:not(:last-child) {
		margin-right: 20px;
	}
	.btn-buy {
		padding: 5px 10px;
	}
	.title__image {
		margin-right: 30px;
	}
	.title__image img {
		width: 400px;
		height: auto;
	}

	.circle {
		right: 120px;
	}
}

@media screen and (max-width: 991.98px) {

	header{
		padding: 0;
	}

	.btn-buy {
		text-align: center;
	}

	.desktop-menu{
		display: none;
	}

	.mob-menu{
		display: block;
	}

	.download .middle {
		margin: 10px 0 0;
		padding: 30px 0 20px;
		text-align: center;
	}

	.download .light-grey img,
	.download .white img {
		float: none;
		display: block;
		margin: 0 auto 30px;
	}

	.download .light-grey .text-container,
	.download .white .text-container {
		float: none;
		display: block;
		margin: 0 auto 30px;
	}

	.download .text-container h2{
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 767px) {

	.download .top-row{
		width: 100%;
	}

	.download-circle{
		display: none;
	}

	.download .top-img {
		width: 100%;
	}

}


@media screen and (max-width: 576px) {

	.download .light-grey img, .download .white img{
		width: 100%;
	}

	.download .light-grey .text-container, 
	.download .white .text-container {
		width: 100%;
	}

	.btn-buy {
		padding: 5px 50px;
		margin-top: 10px;
	}
	.navbar {
		flex-direction: column;
		padding: 20px 0;
	}
	.navbar-list {
		flex-direction: column;
		margin-right: 0px;
	}
	.navbar-list-item {
		margin-right: 0 !important;
	}
	.flag-flex {
		flex-wrap: wrap;
	}
	.flag-flex-item {
		margin-right: 0 !important;
	}
	.flag-flex-item {
		width: 50%;
	}
	.card__content-download {
		width: 100%;
		font-size: 20px;
	}
	.circle-2 {
		width: 50px;
		height: 50px;
		font-size: 14px;
	}
	.flag-flex {
		display: none;
	}
	.title-h1 {
		font-size: 27px;
		margin-bottom: 10px;
		line-height: 1.2;
	}
	.main {
		padding: 20px 0;
		margin-bottom: 20px;
	}
	.circle-container {
		display: none;
	}
	.main__text {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.center-holder {
		display: flex;
		flex-wrap: wrap;
	}
	.title__image {
		/*display: none;*/
		margin-left: -15px;
		margin-right: -15px;
	}
	.title__image img {
		width: 100%;
		height: auto;
	}
	.title__buttons {
		margin-top: 20px;
	}
	.btn-title {
		padding: 5px 20px;
		border-radius: 20px;
		font-size: 18px;
		margin: auto;
	}

	.download{
		margin-bottom: 0px;
		padding-bottom: 0px;
	}
}

/* ===== LANGUAGE FLAGS STYLES ===== */
.mobile-language-flags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.mobile-language-flags .flag {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.mobile-language-flags .flag:hover {
  transform: scale(1.1);
}

/* Language dropdown */
.lang-dropdown-wrap {
  position: relative;
}

.lang-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.lang-trigger:hover {
  background: rgba(255,255,255,0.18);
}

.lang-arrow {
  color: #fff;
  font-size: 11px;
  line-height: 1;
  pointer-events: none;
}

.lang-dropdown {
  position: absolute;
  top: 100%;                /* flush — no gap to cross */
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
  padding: 8px 0 6px;       /* top padding gives visual breathing room */
  min-width: 170px;
  display: none;
  z-index: 2000;
}

.lang-dropdown-wrap:hover .lang-dropdown,
.lang-dropdown-wrap:focus-within .lang-dropdown {
  display: block;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  color: #1a2440;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s ease;
}

.lang-dropdown a:hover {
  background: #f0f4fa;
}

img.flag {
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* Buy Now button — override old inline styles */
.btn-buy {
  padding: 8px 22px !important;
  margin: 0 !important;
  width: auto !important;
  display: inline-block !important;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
}

/* ============================================================
   NEW DESIGN 2025 - Modern Redesign Styles
   ============================================================ */

/* --- Hero Section: Full-bleed background image, text overlaid left --- */

.main {
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 100%;                  /* always full viewport width — no exceptions */
  background: #ffffff;
  margin-bottom: 0;
  color: #1a2440;
  /* NOTE: do NOT use aspect-ratio here — it would constrain the section WIDTH
     to match the image aspect ratio, causing a white gap on the right side.
     Instead, set explicit min-height per breakpoint below. */
  min-height: 600px;            /* desktop default — new 1920×672 hero image */
}

/* Image pinned to the RIGHT edge of the screen at all times.
   height: 100% fills the section; width: auto preserves natural proportions.
   The right edge of the photo always = right edge of the viewport. */
.hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;                     /* ← pinned to RIGHT edge */
  height: 100%;
  width: auto;                  /* natural proportions, not stretched */
  display: block;
  z-index: 0;
}

/* White-to-transparent gradient: solid white on the left (covers text),
   fades out toward the image so the transition is smooth. */
.main::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 52%;                   /* covers text column + fade zone */
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,1.00)  0%,   /* solid white — covers text at all widths */
    rgba(255,255,255,1.00) 65%,   /* stay solid until past the text column  */
    rgba(255,255,255,0.00) 100%   /* fade to transparent — smooth transition */
  );
  z-index: 1;
  pointer-events: none;
}

/* Absolutely-centred column that always aligns with the navbar logo.
   left:0; right:0; margin:auto; max-width:1240px is the CSS2 trick:
   the browser distributes (viewport - 1240px) / 2 on each side.
   display:flex + align-items:center vertically centres the text block. */
.hero-container {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* Text block: left portion of the container.
   Vertical centering is now handled by .hero-container (flex align-items:center). */
.hero-text-overlay {
  padding: 40px 0;
  max-width: 520px;
}

.hero-headline {
  font-size: 50px;
  font-weight: 800;
  color: #1a2440;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 20px;
  color: #1a2440;
  margin-bottom: 18px;
  font-style: normal;
  font-weight: 700;
}

.hero-description-text {
  font-size: 17px;
  color: #333;
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn-hero-download {
  background: #62c800;
  color: #fff;
  font-size: 22px;
  padding: 15px 52px;
  border-radius: 50px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(98, 200, 0, 0.35);
}

.btn-hero-download:hover {
  background: #72e000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(98, 200, 0, 0.45);
  color: #fff;
}

/* Shared container constraint for all new sections */
.hero-desc-section .container,
.feature-steps-section .container,
.video-section-new .container,
.wpm-banner-section .container,
.free-trial-banner-wrap {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* --- Hero Description Section --- */
.hero-desc-section {
  background: #fff;
  padding: 40px 0 20px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.hero-desc-section p {
  max-width: 1060px;
  margin: 0 auto 14px;
  font-size: 18px;
  line-height: 1.75;
  color: #444;
}

/* --- Master Typing Your Way Section --- */
.feature-steps-section {
  background: #fff;
  padding: 60px 0 50px;
  text-align: center;
}

.feature-steps-section h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1a2440;
  margin-bottom: 40px;
}

.feature-steps-row {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin: 0 auto;
  max-width: 960px;
}

.feature-step-card {
  background: linear-gradient(170deg, #8ecbf0 0%, #5488cc 100%);
  border-radius: 16px;
  padding: 32px 26px;
  flex: 1;
  color: #fff;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0 6px 20px rgba(84, 136, 204, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: row;                  /* number + text on same line */
  align-items: flex-start;
  gap: 12px;
}

.feature-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(84, 136, 204, 0.35);
}

.feature-step-card .step-num {
  font-size: 28px;
  font-weight: 900;
  flex-shrink: 0;                       /* number never wraps or shrinks */
  line-height: 1.4;
  opacity: 0.85;
}

.feature-step-card .step-text {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

/* --- Watch the Video Section --- */
.video-section-new {
  background: #fff;
  padding: 10px 0 60px;
}

.video-card-new {
  background: #f4f7fc;
  border-radius: 18px;
  padding: 0;                           /* no outer padding — image goes edge-to-edge */
  display: flex;
  align-items: stretch;                 /* both cols fill the card height */
  gap: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  max-width: 960px;                     /* matches feature-steps row width */
  margin: 0 auto;
  overflow: hidden;                     /* clips image to card border-radius */
}

.video-thumb-col {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  min-height: 240px;                    /* fallback if text col is very short */
}

/* Make picture + img fill the full column height */
.video-thumb-col picture {
  display: block;
  height: 100%;
}

.video-thumb-col picture img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center;
  display: block;
  border-radius: 0 !important;         /* card overflow:hidden handles rounding */
}

.video-text-col {
  flex: 1;
  padding: 36px 40px;                  /* text col carries the inner padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-text-col h3 {
  font-size: 30px;
  font-weight: 800;
  color: #1a2440;
  margin-bottom: 16px;
  line-height: 1.2;
}

.video-text-col p {
  font-size: 16px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* --- WPM Banner Section --- */
.wpm-banner-section {
  background: #fff;                     /* section is white — card has the colour */
  padding: 10px 0 60px;
  margin-bottom: 0;
}

.wpm-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* Card styled like the video card above it */
  background: linear-gradient(160deg, #8cc6e7 0%, #4065b3 100%);
  border-radius: 18px;
  padding: 40px 48px;
  max-width: 960px;                     /* same as video card & feature-steps row */
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  color: #fff;
}

.wpm-banner-text h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  white-space: nowrap;
}

.wpm-banner-text ul {
  font-size: 17px;
  margin: 0;
  padding: 0;
}

.wpm-banner-text ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  list-style: none;
  font-weight: 500;
}

.wpm-banner-text ul li::before {
  content: '\2022';
  position: absolute;
  left: 6px;
  color: rgba(255,255,255,0.7);
}

.btn-orange {
  background: #62c800;
  color: #fff;
  font-size: 18px;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(98, 200, 0, 0.35);
  flex-shrink: 0;
}

.btn-orange:hover {
  background: #72e000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(98, 200, 0, 0.45);
  color: #fff;
}

/* --- Products Section --- */
.products-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #1a2440;
  padding: 52px 0 10px;
  margin: 0;
  margin-bottom:40px;
}

.product {
  background: #fff;
  padding-bottom: 20px;
}

/* --- Free Trial Banner --- */
.free-trial-banner-wrap {
  padding: 16px 0 36px;
  text-align: center;
}

.free-trial-banner {
  background: #62c800;
  color: #fff !important;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 52px;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  box-shadow: 0 4px 18px rgba(98, 200, 0, 0.3);
}

.free-trial-banner:hover {
  background: #72e000;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(98, 200, 0, 0.4);
  color: #fff !important;
}

/* --- What Our Customers Are Saying --- */
.reviews-heading-new {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #1a2440;
  padding: 44px 0 10px;
  margin: 0;
  margin-bottom:40px;
}

/* --- Responsive: New Sections (non-hero) --- */
@media screen and (max-width: 991px) {
  .main .container,
  .hero-desc-section .container,
  .feature-steps-section .container,
  .video-section-new .container,
  .wpm-banner-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .feature-steps-row {
    flex-direction: column;
    align-items: center;
  }
  .feature-step-card {
    max-width: 480px;
    width: 100%;
  }
  .video-card-new {
    flex-direction: column;
    gap: 0;
  }
  .video-thumb-col {
    flex: 0 0 auto;
    width: 100%;
    min-height: 200px;
  }
  .video-text-col {
    padding: 24px 20px;
  }
  .wpm-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
    padding: 32px 24px;               /* tighter padding on small screens */
  }
  .wpm-banner-text h2 {
    font-size: 20px;
    white-space: normal;
  }
}

@media screen and (max-width: 576px) {
  /* hero font sizes handled in the HERO RESPONSIVE BREAKPOINTS block below */
  .feature-steps-section h2 {
    font-size: 28px;
  }
  .products-heading {
    font-size: 30px;
  }
  .free-trial-banner {
    font-size: 16px;
    padding: 15px 28px;
    border-radius: 40px;
  }
  .reviews-heading-new {
    font-size: 26px;
  }
}

/* ================================================================
   HERO — RESPONSIVE BREAKPOINTS
   All hero rules consolidated here so they cascade correctly
   after the base .main rules above.

   Screen tiers:
   ≥1200px   Base (50px headline, 500px text col, 580px section)
   1100-1199 Large laptop scaling  (46px headline)
   1024-1099 Medium laptop         (42px headline, 460px col)
    992-1023 Small laptop/tablet L (38px headline, 420px col)
    768-991  Tablet landscape      (36px, 500px min-height)
    480-767  Tablet portrait       (mobile layout, gradient bottom)
    <480     Phone                 (28px headline)
   ================================================================ */

/* 1440px+ — base 52% gradient is correct; no override needed */

/* 1300px laptop — keep same base, just confirm gradient covers text */
/* (base rules already handle this tier correctly) */

/* 1100px–1199px */
@media screen and (max-width: 1199px) {
  .main { min-height: 620px; }
  .hero-headline { font-size: 46px; }
  .hero-text-overlay {
    max-width: 480px;
  }
}

/* 1024px–1099px — medium laptop */
@media screen and (max-width: 1099px) {
  .main { min-height: 580px; }
  .hero-headline { font-size: 42px; }
  .hero-text-overlay {
    max-width: 460px;
  }
}

/* 992px–1023px — small laptop / tablet landscape */
@media screen and (max-width: 1023px) {
  .main { min-height: 540px; }
  .hero-headline {
    font-size: 38px;
  }
  .hero-text-overlay {
    max-width: 400px;
  }
  .hero-container {
    padding: 0 20px;
  }
  .main::after {
    width: 58%;
  }
}

/* 768px–991px — tablet landscape */
@media screen and (max-width: 991px) {
  .main { min-height: 520px; }
  .hero-headline { font-size: 36px; }
  .hero-text-overlay {
    max-width: 380px;
  }
  .main::after { width: 62%; }
  .btn-hero-download {
    font-size: 20px;
    padding: 13px 40px;
  }
}

/* ≤767px — tablet portrait / phone */
@media screen and (max-width: 767px) {
  /* Stack layout: image on top, text below */
  .main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  /* Gradient overlay not needed in stacked layout */
  .main::after {
    display: none;
  }
  /* Image flows in-document at full width, scales by aspect ratio */
  .hero-bg-img {
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    display: block;
    z-index: 0;
    
  }
  .hero-container {
    /* reset absolute positioning for stacked mobile layout */
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    display: block;
    max-width: 100%;
    padding: 0 16px;
  }
  .hero-text-overlay {
    padding: 20px 0 28px 0;
    max-width: 100%;
  }
  .hero-headline {
    font-size: 30px;
    margin-bottom:50px;
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .hero-description-text {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .btn-hero-download {
    font-size: 18px;
    padding: 12px 36px;
  }
}

/* ≤479px — phone portrait */
@media screen and (max-width: 479px) {
  .hero-text-overlay {
    padding: 14px 0 24px 0;
  }
  .hero-headline {
    font-size: 26px;
  }
}

  
.feature-list li {
  margin-bottom: 1.2em; /* adjust as needed */
}

    .reviews-box h3 {
 
 background: linear-gradient(135deg, #007bff, #0056b3);
 color: #fff;
 margin: 0;
 padding: 12px;
 text-align: center;
 font-size: 21px;
 border-radius: 10px 10px 0 0;
 margin-bottom:5px;
}

.review p{
 font-size:16px;
}


.reviews-box {
  max-width: 960px;
  position: relative;
  margin: 20px auto 40px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #222;
}

/* Hide the old blue header */
.reviews-box h3 {
  display: none;
}

/* Horizontal strip — nowrap, horizontal scroll only */
.reviews-content {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 4px 0 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-content::-webkit-scrollbar {
  display: none;
}

/* Each item = exactly half the container (minus half the gap) */
.review-item {
  flex: 0 0 calc(50% - 8px);
  min-width: 0;
}

/* Buttons */
.reviews-box .nav-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.reviews-box button {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: none;
  padding: 6px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.2s ease-in-out;
}

.reviews-box button:hover {
  background: linear-gradient(135deg, #0056b3, #003c80);
}

@media (max-width: 767px) {
  .reviews-box {
    width: 95%;
  }
  .review-item {
    flex: 0 0 100%;
  }
}


.card {
  display: flex;
  flex-direction: column;
  height: 96%;
}


.card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}



    

.info-box-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  margin:18px 0 18px;
}
@media (max-width: 767px){
  .info-box-grid{ grid-template-columns: 1fr; }
}
.info-box{
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  padding: 14px 16px;
}
.info-box h3{
  margin:0 0 8px;
  font-size: 1.15rem;
  line-height: 1.3;
  color:#111;
}
.info-box p{ margin:0 0 10px; color:#222; line-height:1.5; }
.info-box ul{ margin: 0 0 10px 20px; }
.info-box a{ text-decoration: underline; color: #0b63ce; }

.trust-box{
  max-width: 960px;
  margin: 26px auto 0;
}
.faq-wrap{
  max-width: 960px;
  margin: 26px auto 0;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.07);
  padding: 14px 14px 6px;
}
.faq-wrap h2{ margin: 6px 6px 12px; font-size: 1.6rem; }
.faq-item{
  border-top: 1px solid rgba(0,0,0,0.10);
  padding: 0;
}
.faq-item:first-of-type{ border-top:none; }
.faq-q{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding: 14px 8px;
  cursor:pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.faq-q:focus{ outline: 2px solid rgba(0,118,214,0.35); outline-offset: 2px; border-radius: 10px; }
.faq-icon{
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 16px;
  line-height: 1;
  color:#222;
}
.faq-a{
  display:none;
  padding: 12px 8px 14px;
  color:#222;
  line-height:1.6;
}
.faq-a p{ margin: 0 0 10px; }
.faq-a ul{ margin: 0 0 10px 20px; }
.faq-wrap a{ color:#000; text-decoration: underline; }
.faq-wrap a:visited{ color:#000; }

