/*
Theme Name: Owliver
Theme URI: https://owliver.ai/
Author: Owliver
Description: Custom Owliver marketing theme with ACF-powered Home template.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: owliver
*/

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Roboto", Sans-serif;
	margin: 0;
	color: #101828;
	background: #fff;
}

a {
	text-decoration: none;
	color: inherit;
}

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

button,
input,
textarea {
	font-family: inherit;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.relative {
	position: relative;
}

.container {
	max-width: 1440px;
	padding: 0 80px;
	width: 100%;
	margin: 0 auto;
}

.header {
	border-bottom: 1px solid #F3F4F6;
	padding: 14px 0;
}

.header .menu-btn{
	padding: 0;
	width: 24px;
	height: 24px;
	border: unset;
	outline: unset;
	display: none;
	background: transparent;
}

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

.header .site-logo a {
	display: block;
	height: fit-content;
}

.header .site-logo img {
	width: 168px;
}

.header .nav-items {
	display: flex;
	align-items: center;
	gap: 32px;
}

.header .nav-items ul {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}

.header .nav-items ul a {
	font-size: 16px;
	color: #4A5565;
	text-transform: uppercase;
}

.header .nav-items ul a:hover {
	color: #000000;
}

.btn {
	background: #000000;
	color: #fff;
	font-size: 16px;
	padding: 8px 24px;
	border-radius: 10px;
	transition: 0.3s ease-in-out;
	display: block;
	width: fit-content;
	display: flex;
	align-items: center;
	gap: 8px;
}

.btn:hover {
	background: #4A5565;
}

:root {
	--bac-orange: #F54900;
	--bac-orange-dark: #DB7E0A;
	--bac-orange-light: #F29500;
	--bac-text: #0A0A0A;
	--bac-muted: #4A5565;
	--bac-border: #e2e5ea;
	--bac-bg: #f4f5f7;
	--bac-white: #ffffff;
	--bac-radius: 24px;
	--bac-radius-sm: 10px;
	--bac-shadow: 0 20px 60px rgba(0, 0, 0, .18);
	--owliver-orange: #F54900;
	--owliver-orange-dark: #DB7E0A;
	--owliver-accent: #F29500;
	--text: #0A0A0A;
	--text-muted: #4A5565;
	--card: #ffffff;
	--border: #E5E7EB;
}


.bac-wrap {
	background: var(--bac-white);
	border-radius: var(--bac-radius);
	overflow: hidden;
	max-width: 460px;
	width: 100%;
	margin: 0 auto;
	box-shadow: var(--bac-shadow);
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	color: var(--bac-text);
}


.bac-header {
	background: linear-gradient(101.98deg, #F29500 2.52%, #DB7E0A 72.38%);
	padding: 28px 28px 16px;
	color: var(--bac-white);
}

.bac-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .1em;
	text-transform: uppercase;
	opacity: .92;
	margin-bottom: 10px;
}

.bac-badge-icon {
	width: 16px;
	height: 16px;
	stroke: var(--bac-white);
	flex-shrink: 0;
}

.bac-heading {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 8px;
	color: var(--bac-white);
}

.bac-subtext {
	font-size: 16px;
	opacity: .88;
	line-height: 1.3;
	margin: 0;
}


.bac-tabs {
	display: flex;
	border-bottom: 1px solid var(--bac-border);
	background: var(--bac-white);
}

.bac-tab {
	flex: 1;
	padding: 14px 0;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var(--bac-muted);
	position: relative;
	transition: .2s;
	background-color: #F9FAFB;
}

.bac-tab::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--bac-orange);
	transform: scaleX(0);
	transition: transform .25s ease;
}

.bac-tab:active,
.bac-tab:focus,
.bac-tab:hover {
	background-color: unset;
	color: #4A5565;
}

.bac-tab--active {
	color: var(--bac-orange);
	background-color: #fff;
}

.bac-tab--active:active,
.bac-tab--active:focus,
.bac-tab--active:hover {
	color: var(--bac-orange);
}

.bac-tab--active::after {
	transform: scaleX(1);
}


.bac-body {
	padding: 36px 28px 8px;
}

.bac-panel {
	display: none;
}

.bac-panel--active {
	display: block;
	animation: bac-fade-in .22s ease;
}

@keyframes bac-fade-in {
	from {
		opacity: 0;
		transform: translateY(6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.bac-dummy-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bac-field-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.bac-label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--bac-text);
}

.bac-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.bac-input-icon {
	position: absolute;
	left: 14px;
	display: flex;
	align-items: center;
	color: #aab0bb;
	pointer-events: none;
}

.ff_submit_btn_wrapper{
	margin-top: 36px;
}

.bac-input-icon svg {
	width: 17px;
	height: 17px;
}

.bac-input {
	width: 100%;
	padding: 14px !important;
	border: 1.5px solid var(--bac-border);
	border-radius: var(--bac-radius-sm);
	font-size: 14px;
	color: var(--bac-text);
	background: var(--bac-white);
	outline: none;
	transition: border-color .2s, box-shadow .2s;
	box-sizing: border-box;
}

.bac-input::placeholder {
	color: #b4b9c3;
}

.bac-input:focus {
	border-color: var(--bac-orange);
	box-shadow: 0 0 0 3px rgba(232, 150, 10, .12);
}


.bac-input--pass {
	padding-right: 44px;
}

.bac-toggle-pass {
	position: absolute;
	right: 13px;
	background: none;
	border: none;
	cursor: pointer;
	color: #aab0bb;
	padding: 0;
	display: flex;
	align-items: center;
	transition: color .2s;
}

.bac-toggle-pass:hover {
	color: var(--bac-muted);
}

.bac-toggle-pass svg {
	width: 18px;
	height: 18px;
}


.bac-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 16px !important;
	background: linear-gradient(101.98deg, #F29500 2.52%, #DB7E0A 72.38%);
	color: var(--bac-white);
	border: none;
	border-radius: var(--bac-radius-sm);
	font-size: 16px;
	font-weight: 500 !important;
	cursor: pointer;
	margin-top: 4px;
	transition: background .2s, transform .15s, box-shadow .2s;
	box-shadow: 0 4px 16px rgba(232, 150, 10, .35);
}

.bac-cta:hover {

	box-shadow: 0 6px 22px rgba(232, 150, 10, .6);
}

.bac-cta:active {
	transform: translateY(0);
}


.bac-footer-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 6px 28px 0;
	font-size: 13px;
	text-decoration: underline;
}

.bac-link {
	color: var(--bac-text);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color .2s;
}

.bac-link:hover {
	color: var(--bac-orange);
}

.bac-divider {
	color: var(--bac-border);
}


.bac-social {
	padding: 16px 28px 28px;
}

.bac-social-rule {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--bac-muted);
	font-size: 14px;
	margin-bottom: 16px;
}

.bac-social-rule::before,
.bac-social-rule::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--bac-border);
}

.bac-social-btns {
	display: flex;
}

.bac-social-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 14px;
	background: var(--bac-white);
	border: 1.5px solid var(--bac-border);
	border-radius: var(--bac-radius-sm);
	font-size: 14px;
	font-weight: 600;
	color: var(--bac-text);
	cursor: pointer;
	transition: border-color .2s, background .2s, transform .15s;
}

.bac-social-btn:hover {
	border-color: var(--bac-border);
	background: var(--bac-bg);
	transform: translateY(-1px);
	color: #0A0A0A;
}

.bac-social-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}


.bac-panel .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bac-panel .wpcf7-form p {
	margin: 0;
}

.bac-panel .wpcf7-form input[type="text"],
.bac-panel .wpcf7-form input[type="email"],
.bac-panel .wpcf7-form input[type="password"] {
	width: 100%;
	padding: 13px 14px;
	border: 1.5px solid var(--bac-border);
	border-radius: var(--bac-radius-sm);
	font-size: 14px;
	color: var(--bac-text);
	outline: none;
	transition: border-color .2s, box-shadow .2s;
	box-sizing: border-box;
}

.bac-panel .wpcf7-form input:focus {
	border-color: var(--bac-orange);
	box-shadow: 0 0 0 3px rgba(232, 150, 10, .12);
}

.bac-panel .wpcf7-form input[type="submit"] {
	width: 100%;
	padding: 14px;
	background: var(--bac-orange);
	color: var(--bac-white);
	border: none;
	border-radius: var(--bac-radius-sm);
	font-size: 15.5px;
	font-weight: 500;
	cursor: pointer;
	transition: background .2s, transform .15s;
	box-shadow: 0 4px 16px rgba(232, 150, 10, .35);
}

.bac-panel .wpcf7-form input[type="submit"]:hover {
	background: var(--bac-orange-dark);
	transform: translateY(-1px);
}

.icon-badge {
	border-radius: 20px;
	padding: 8px 16px;
	background: #FFF7ED;
	border: 1px solid #FFD6A7;
	display: flex;
	width: fit-content;
	letter-spacing: 1px;
	align-items: center;
	gap: 6px;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	color: var(--bac-orange);
}

.hero-content .btn {
	margin-top: 32px;
	padding: 12px 26px;
}
.hero-content .btn:hover{
	color: #fff !important;
}

.cq-wrap {
	width: 100%;
	box-sizing: border-box;
	padding: 2px;
	margin: 0;
	background: linear-gradient(97.67deg, #FF9D00 2.24%, #99E600 98.97%);
	border-radius: 18px;
}

.cq-box {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	background: white;
	border-radius: 18px;
	box-shadow: 0px 2.13px 12.78px rgba(0, 0, 0, 0.07);
	padding: 20px 20px 8px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.cq-textarea {
	width: 100%;
	box-sizing: border-box;
	border: none;
	outline: none;
	resize: none;
	background: transparent;
	font-size: 16px;
	line-height: 1.55;
	color: var(--bac-text);
	height: 66px;
	overflow-y: auto;
	padding: 0;
	margin: 0;
	scrollbar-width: thin;
	scrollbar-color: #ddd transparent;
}

.cq-textarea::-webkit-scrollbar {
	width: 4px;
}

.cq-textarea::-webkit-scrollbar-track {
	background: transparent;
}

.cq-textarea::-webkit-scrollbar-thumb {
	background: #ddd;
	border-radius: 4px;
}

.cq-textarea::placeholder {
	color: var(--bac-muted);
	opacity: 1;
}

.cq-counter {
	align-self: flex-end;
	font-size: 14px;
	color: var(--bac-muted);
	letter-spacing: .02em;
	user-select: none;
	line-height: 1;
	margin-bottom: 2px;
}


.cq-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	border-top: 1px solid var(--bac-border);
	padding-top: 8px;
}

.cq-actions {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}

.cq-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 6px 10px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 400;
	color: #3f3f3f;
	transition: background .18s ease, color .18s ease;
	white-space: nowrap;
}

.cq-action-btn:hover {
	background: rgba(0, 0, 0, .05);
	color: var(--cq-text);
}

.cq-action-btn svg {
	flex-shrink: 0;
	stroke: currentColor;
}

.cq-action-btn--recording {
	color: #e53e3e;
	background: rgba(229, 62, 62, .08);
}

.cq-send {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: var(--bac-orange-dark);
	color: #fff;
	transition: transform .15s ease, opacity .2s ease, box-shadow .2s ease;
}

.cq-send:active {
	transform: scale(.93);
}

.cq-send svg {
	stroke: #fff;
	min-width: 18px;
}

.cq-box .screen-reader-response,
.cq-box .wpcf7-response-output,
.cq-box .wpcf7-spinner,
.cq-box .hidden-fields-container,
.cq-box .wpcf7-form br {
  display: none !important;
}

.cq-box .wpcf7-form,
.cq-box .wpcf7-form p {
  margin: 0;
}

/* Style the real CF7 textarea to look like your original design */
.cq-box .wpcf7-form-control-wrap[data-name="your-question"] {
  display: block;
  width: 100%;
}

.cq-box .wpcf7-form textarea[name="your-question"] {
  width: 100%;
  box-sizing: border-box;
  border: none;
  outline: none;
  resize: none;
  background: transparent;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.55;
  color: var(--bac-text);
  height: 66px;
  max-height: 260px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}

.cq-box .wpcf7-form textarea[name="your-question"]::placeholder {
  color: var(--bac-muted);
  opacity: 1;
}

/* Visually hide (but keep functional) the native file inputs + submit button —
   the custom mic / upload / send buttons trigger them via JS instead */
.cq-box .wpcf7-form-control-wrap[data-name="file-upload"],
.cq-box .wpcf7-form-control-wrap[data-name="voice-upload"],
.cq-box .wpcf7-form input[type="submit"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus ring + active send button states referenced by the JS */
.cq-box--focus {
  border-color: var(--bac-orange);
}

.cq-send {
  opacity: .55;
}

.cq-send--active {
  opacity: 1;
}

.rainbow-section {
	position: relative;
	overflow: hidden;
}

.rainbow-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 45%;
	background: linear-gradient(to bottom,
			#ffffff 0%,
			rgba(255, 255, 255, 0) 100%);
	z-index: 1;
	pointer-events: none;
}


.rainbow-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 45%;
	background: linear-gradient(to top,
			#ffffff 0%,
			rgba(255, 255, 255, 0) 100%);
	z-index: 1;
	pointer-events: none;
}


.rainbow-section>.elementor-container,
.rainbow-section>* {
	position: relative;
	z-index: 2;
}

.light-gradient {
	background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 247, 237, 0.3) 50%, #FFFFFF 100%);
}

.light-gradient-2 {
	overflow: hidden !important;
	background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}

.icon-card {
	background: #fff;
	flex: 1;
	border-radius: 10px;
	padding: 24px;
	padding: 20px 15px;
	border: 1px solid #E5E7EB;
	box-shadow: 0px 1px 2px -1px #0000001A;
	box-shadow: 0px 1px 3px 0px #0000001A;
}

.icon-card strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	margin-top: 12px;
	line-height: 28px;
	color: #101828;
}

.icon-card p {
	margin-bottom: 0;
	font-size: 14px;
	color: #4A5565;
}

.icon-card img {
	box-shadow: 0px 4px 6px -4px #0000001A;
	box-shadow: 0px 10px 15px -3px #0000001A;
}

.app-image {
	height: 370px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.study-points .point {
	display: inline-flex;
	margin-right: 16px;
	margin-top: 8px;
	font-size: 14px;
	background-color: rgba(255, 247, 237, 0.15);
	align-items: center;
	border-radius: 22px;
	gap: 8px;
	padding: 8px 16px;
}

.section-badge.purple .icon-badge {
	border: 1px solid #E9D4FF;
	color: #9810FA;
	background: #F3E8FF;
}

.section-badge.blue .icon-badge {
	border: 1px solid #BEDBFF;
	color: #155DFC;
	background: #DBEAFE;
}

.icon-card.two-col {
	padding: 32px;
}

.icon-card.two-col strong {
	font-size: 24px;
	line-height: 32px;
	margin-top: 24px 0 12px;
}

.reinforcement-stats {
	background: linear-gradient(101.98deg, #F29500 2.52%, #DB7E0A 72.38%);
	box-shadow: 0px 25px 50px -12px #00000040;
	border-radius: 24px;
}

.reinforcement-stats .stat-card {
	flex: 1;
	height: fit-content;
}

.reinforcement-stats .stat-card h3 {
	font-size: 60px;
	line-height: 60px;
	margin-top: 0;
	margin-bottom: 8px;
}

.reinforcement-stats .stat-card p {
	font-size: 18px;
	margin-bottom: 0;
	line-height: 28px;
}

.footer {
	display: flex;
	flex-direction: column;
	gap: 32px;
	background: #fff;
	padding: 48px 0;
}

.footer .container.flex {
	display: flex;
	justify-content: space-between;
}

.footer-logo {
	width: 260px;
}

.footer-logo p {
	color: #4A5565;
	margin-bottom: 0;
	margin-top: 16px;
	font-size: 14px;
}

.footer-nav {
	display: flex;
	gap: 32px;
}

.footer-nav .nav-items {
	width: 202px;
}

.footer-nav .nav-items b {
	color: #101828;
	font-size: 16px;
	line-height: 24px;
	display: block;
	margin-bottom: 16px;
}

.footer-nav .nav-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-nav .nav-links a,
.copyright {
	color: #4A5565;
	font-size: 14px;
	line-height: 20px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	width: 100%;
	border-top: 1px solid #E5E7EB;
	padding-top: 32px;
}

.footer-bottom .social-icons {
	display: flex;
	align-items: center;
	gap: 24px;
}

.footer-bottom p {
	margin: 0;
}

.mentorship-content-wrapper .study-points {
	display: flex;
	box-shadow: 0px 2px 4px -2px #0000001A;
	box-shadow: 0px 4px 6px -1px #0000001A;
	border: 1px solid #F3F4F6;
	background: #FFFFFF;
	border-radius: 16px;
	gap: 16px;
}

.mentorship-content-wrapper .study-points h4 {
	font-size: 20px;
	color: #101828;
	margin-top: 0;
	font-weight: 700;
	margin-bottom: 8px;
}

.mentorship-content-wrapper .study-points p {
	margin: 0;
}

.mentorship-content-wrapper .study-points img {
	min-width: 54px;
	height: fit-content;
}

.study-points .points {
	display: flex;
	margin-top: 16px;
	flex-wrap: wrap;
}

.web-app-image {
	width: 58%;
	aspect-ratio: 2 / 1.15;
	position: relative;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center right;
}

.search-points {
	display: flex;
	align-items: center;
	gap: 32px;
	justify-content: center;
}

.search-points .point {
	display: flex;
	align-items: center;
	gap: 8px;
}
.cta-btn-wrapper{
	display: flex;
	justify-content: center;
}
.cta-btn-wrapper button{
	gap: 8px;
	width: fit-content;
	border-radius: 34px;
	padding: 18px 40px !important;
	font-size: 18px;
}

.cta-btn-wrapper button img{
	width: 20px;
	height: 20px;
}
.bac-dummy-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bac-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bac-label {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: var(--bac-text);
  line-height: 1.4;
	font-family: "Roboto";
}

.bac-label .bac-required {
  color: #e53e3e;
  margin-left: 2px;
}

.bac-input {
  width: 100%;
  padding: 13px 14px !important;
  border: 1.5px solid var(--bac-border) !important;
  border-radius: var(--bac-radius-sm) !important;
  font-size: 15px;
  font-family: inherit;
  color: var(--bac-text);
  background: var(--bac-white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}

.bac-input::placeholder {
  color: #9aa0ab;
  opacity: 1;
}

.bac-input:focus {
  border-color: var(--bac-orange);
  box-shadow: 0 0 0 3px rgba(232, 150, 10, .12);
}

.ff_submit_btn_wrapper {
  margin-top: 12px;
}
.bac-redirect-msg {
  border: 1px solid var(--bac-border);
  border-radius: var(--bac-radius-sm);
  padding: 14px;
  font-size: 14px;
  color: var(--bac-text);
  text-align: center;
}

@media (max-width: 1024px) {
	.container{
		padding: 0 40px;
	}
	.header .nav-items ul{
		gap: 26px;
		padding-left: 24px;
	}
	.header .nav-items ul li a{
		font-size: 15px;
	}
	.header .site-logo img{
		width: 144px;
	}
	.hero-content p:last-of-type{
		display: flex;
		justify-content: center;
	}
	.hero-content p:last-of-type a{
		margin-top: 10px;
	}
	.bac-wrap{
		max-width: unset;
	}
	.icon-card-wrapper{
		flex-wrap: wrap;
	}
	.icon-card-wrapper .icon-card{
		flex-basis: 48%;
	}
	.reinforcement-stats .stat-card, .reinforcement-stats .stat-card p {
		font-size: 18px !important;
		line-height: 26px !important;
	}
	.web-app-image{
		width: 150%;
        flex: 1 0 auto;
        position: relative;
        right: -60px;
        bottom: unset;
		background-position: center center;
	}
	.footer-nav .nav-items{
		width: 120px;
	}
}
.header-inner {
	width: 100%;
	max-width: 800px !important;
	padding: 2rem 1.5rem 0rem;
	margin: 0 auto;
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
}

.header-sep {
	opacity: 0.85;
	font-weight: 300;
	user-select: none;
}

.brand {
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0;
}

.page-heading {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* Legal pages (Cookie Policy, Privacy, Terms) */
.legal-page {
	background: #fff;
}

.legal-content.main,
.main {
	max-width: 800px !important;
	margin: 0 auto;
	padding: 3rem 1.5rem 4rem;
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.65;
}

.legal-content .legal-title,
.main > .legal-title {
	font-family: "SF Pro", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #0A0A0A;
	margin: 0 0 1rem;
}

.meta {
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

.main h2,
.legal-content h2 {
	font-size: 1.125rem;
	margin: 2rem 0 0.75rem;
	color: #0A0A0A;
	font-weight: 700;
}

.main h2.section-start {
	margin-top: 0;
}

.main h3 {
	font-size: 1rem;
	margin: 1.35rem 0 0.5rem;
	font-weight: 600;
	color: var(--text);
}

.main p,
.main ul {
	margin: 0 0 1rem;
}

.main ul {
	padding-left: 1.25rem;
}

.main li {
	margin-bottom: 0.35rem;
}

.main a {
	color: var(--text);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.main a:hover {
	color: var(--owliver-orange);
}

.main strong {
	color: #0A0A0A;
	font-weight: 700;
}

.main .card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 1rem 1.25rem;
	margin: 1rem 0;
}

.main .note {
	font-size: 0.9rem;
	color: var(--text-muted);
	border-left: 4px solid var(--owliver-accent);
	padding-left: 1rem;
	margin: 1rem 0;
}

.main .tldr {
	background: #F9FAFB;
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 2rem;
}

.main .tldr h2 {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	color: var(--text);
}

.main .tldr ul {
	margin-bottom: 0;
	padding-left: 1.25rem;
}

.main .tldr li {
	margin-bottom: 0.75rem;
}

.main .tldr li:last-child {
	margin-bottom: 0;
}

.main .policy-sep {
	border: 0;
	border-top: 2px solid var(--border);
	margin: 3rem 0 2rem;
}

.main .cookie-policy-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: #0A0A0A;
	margin: 0 0 0.25rem;
}

.page-footer {
	max-width: 50rem;
	margin: 0 auto;
	padding: 0 1.5rem 2rem;
	font-size: 0.875rem;
	color: var(--text-muted);
}

@media (max-width: 767px) {
	.legal-content.main,
	.main {
		padding: 2rem 1rem 3rem;
	}

	.legal-content .legal-title,
	.main > .legal-title {
		font-size: 2rem;
		line-height: 1.2;
	}
}

@media print {
	header {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}
}
@media only screen and (max-width: 767px){
	.header{
		position: relative;
	}
	.container{
		padding: 0 16px;
	}
	.header .menu-btn{
		display: block;
	}
	.header .nav-items .main-nav{
		padding-top: 24px;
	}
	.header .nav-items{
		position: absolute;
		top: 100%;
		overflow: hidden;
		opacity: 0;
		left: 0;
		width: 100%;
		height: 0;
		z-index: 100;
		background: #fff;
		box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
		flex-direction: column;
		align-items: center;
		transition: height 0.3s ease-in-out;
		transition: opacity 0.6s ease-in-out;
	}
	.header .nav-items.active{
		height: 100vh;
		opacity: 1;
	}
	.header .nav-items ul{
		flex-direction: column;
		gap: 16px;
		padding-left: 0;
	}
	.header .nav-items ul li a{
		font-size: 16px;
	}
	.header .site-logo img{
		width: 120px;
	}
	.hero-content p:last-of-type{
		flex-direction: column;
		align-items: center;
	}
	.hero-content p:last-of-type a{
		margin-top: 16px;
	}
	.hero-content .elementor-widget-heading{
		max-width: 100% !important;
	}
	.hero-content .elementor-widget-text-editor{
		max-width: 100% !important;
	}	
	.rainbow-section .elementor-widget-heading{
		max-width: 85% !important;
	}
	.rainbow-section .elementor-widget-text-editor{
		max-width: 60% !important;
	}
	.cq-counter{
		display: none;
	}
	.cq-action-btn {
		width: 20px;
		overflow: hidden;
		padding: 0;
	}
	.cq-action-btn svg{
		width: 20px;
		height: 20px;
	}
	.cq-actions{
		gap: 18px;
	}
	.rainbow-section .elementor-widget-html{
		width: 100%;
	}
	.icon-card-wrapper .icon-card{
		padding: 24px;
	}
	.search-points{
		gap: 8px;
	}
	.search-points .point{
		gap: 4px;
	}
	.web-app-image{
		width: 100%;
		right: 0;
		margin: 0;
		background-position: center center;
	}
	.footer .container.flex{
		flex-direction: column;
		gap: 24px;
	}
	.footer-logo{
		width: 80%;
	}
	.footer-nav{
		flex-direction: column;
		gap: 24px;
	}
	.footer-nav .nav-items{
		width: unset;
	}
	.footer{
		gap: 18px;
		padding: 30px 0;
	}
	.footer-bottom{
		align-items: center;
		flex-direction: column;
		gap: 10px;
	}
	.footer-bottom p{
		order: 2;
	}
}