/* ==========================================================
   ShuleSoft School Management System UI
   Modern SaaS Design
   Primary Color: rgb(52,73,94)
   Font: Inter
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================
   Root Variables
========================================================== */

:root {
	--primary: #34495E;
	--primary-light: #4B6584;
	--primary-dark: #243447;

	--secondary: #F5F8FC;

	--white: #FFFFFF;
	--background: #FFFFFF;

	--text: #1B263B;
	--text-light: #6C7A89;

	--border: #E8EDF5;

	--success: #2ECC71;
	--danger: #E74C3C;
	--warning: #F39C12;

	--radius-sm: 12px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-xl: 32px;

	--shadow-sm: 0 6px 20px rgba(0, 0, 0, .05);
	--shadow-md: 0 12px 30px rgba(52, 73, 94, .08);
	--shadow-lg: 0 25px 60px rgba(52, 73, 94, .16);

	--footer-gap: 48px;
}

/* ==========================================================
   Reset
========================================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--background);
	color: var(--text);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
svg {
	max-width: 100%;
	display: block;
}

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

ul {
	list-style: none;
}

/* ==========================================================
   Container
========================================================== */

.container,
.shulesoft-container {
	width: 100%;
	max-width: 1280px;
	margin: auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* ==========================================================
   Sections
========================================================== */

section {
	padding: 110px 0;
}

section.section-compact {
	padding: 70px 0;
}

section.section-tight {
	padding: 50px 0;
}

.site-main {
	padding-bottom: var(--footer-gap);
}

/* ==========================================================
   Typography
========================================================== */

h1 {
	font-size: 72px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -2px;
}

h2 {
	font-size: 48px;
	font-weight: 800;
	letter-spacing: -1px;
}

h3 {
	font-size: 34px;
	font-weight: 700;
}

h4 {
	font-size: 26px;
	font-weight: 700;
}

h5 {
	font-size: 20px;
	font-weight: 700;
}

p {
	color: var(--text-light);
	font-size: 17px;
}

.highlight {
	color: var(--primary);
}

/* ==========================================================
   Site Header / Navbar
========================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white);
	border-bottom: 1px solid var(--border);
}

.navbar {
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.site-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.site-brand__name {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
}

.site-brand__tagline {
	font-size: 11px;
	color: var(--text-light);
	font-weight: 400;
}

.site-brand__icon {
	color: var(--primary);
	flex-shrink: 0;
}

.nav-wrap {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 38px;
}

.nav-links li {
	position: relative;
}

.nav-links a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 15px;
	font-weight: 500;
	color: var(--primary);
	transition: .25s;
	padding: 8px 0;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--primary);
	border-radius: 1px;
	transform: scaleX(0);
	transition: transform .25s;
}

.nav-links a:hover {
	color: var(--primary-dark);
}

.nav-links li.is-active > a {
	font-weight: 600;
}

.nav-links li.is-active > a::after {
	transform: scaleX(1);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.nav-login {
	font-size: 15px;
	font-weight: 500;
	color: var(--text);
	transition: .25s;
}

.nav-login:hover {
	color: var(--primary);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--primary);
	border-radius: 1px;
}

/* ==========================================================
   Buttons
========================================================== */

.btn,
.shulesoft-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 32px;
	border: none;
	border-radius: 14px;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 600;
	transition: .3s;
}

.btn-primary,
.shulesoft-btn--primary {
	background: var(--primary);
	color: white;
}

.btn-primary:hover,
.shulesoft-btn--primary:hover {
	background: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	color: white;
}

.btn-outline,
.shulesoft-btn--outline {
	background: white;
	border: 1px solid var(--primary);
	color: var(--primary);
}

.btn-outline:hover,
.shulesoft-btn--outline:hover {
	background: var(--primary);
	color: white;
}

.btn-sm {
	height: 48px;
	padding: 0 24px;
	font-size: 15px;
}

.btn-block {
	width: 100%;
}

/* ==========================================================
   Hero
========================================================== */

.hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
}

.hero-title {
	max-width: 650px;
}

.hero-description {
	margin-top: 25px;
	max-width: 620px;
	font-size: 20px;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 40px;
}

.hero-image {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.hero-image img,
.hero-image svg {
	width: 100%;
	max-width: 560px;
	height: auto;
	object-fit: contain;
}

/* ==========================================================
   Cards
========================================================== */

.card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 36px;
	box-shadow: var(--shadow-sm);
	transition: transform .3s, box-shadow .3s;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.card.is-pressed,
.card.is-touched {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
	.card:hover {
		transform: translateY(-8px);
		box-shadow: var(--shadow-lg);
	}
}

.featured {
	border: 2px solid var(--primary);
}

/* ==========================================================
   Pricing Cards
========================================================== */

.pricing-card {
	text-align: center;
	position: relative;
}

.plan-title {
	font-size: 34px;
	font-weight: 700;
	margin-top: 15px;
	color: var(--text);
}

.plan-description {
	margin-top: 12px;
	color: var(--text-light);
}

.price {
	margin-top: 30px;
	font-size: 60px;
	font-weight: 800;
	color: var(--primary);
	line-height: 1;
}

.price span {
	font-size: 20px;
	font-weight: 500;
	color: var(--text-light);
}

.plan-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto;
	border-radius: 18px;
	background: #F2F5F8;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
}

/* ==========================================================
   Badge
========================================================== */

.badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 18px;
	border-radius: 999px;
	background: var(--primary);
	color: white;
	font-size: 13px;
	font-weight: 700;
}

.badge--floating {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

/* ==========================================================
   Table
========================================================== */

.table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 40px;
	background: white;
}

.table th {
	text-align: left;
	font-size: 17px;
	color: var(--primary);
	font-weight: 700;
	padding: 22px;
	border-bottom: 2px solid var(--border);
}

.table td {
	padding: 22px;
	border-bottom: 1px solid var(--border);
	color: #5C6773;
}

.table tbody tr:hover {
	background: #FAFBFD;
}

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

.table-category td {
	background: var(--secondary);
	font-weight: 700;
	font-size: 18px;
	color: var(--primary);
}

.feature-title {
	color: var(--primary);
	font-weight: 700;
	font-size: 18px;
}

.table-check {
	display: inline-flex;
	color: var(--primary);
}

.table-cross {
	display: inline-flex;
	color: #CBD5E1;
}

.table-value {
	font-weight: 700;
	color: var(--primary);
}

/* ==========================================================
   Feature Cards
========================================================== */

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

.feature-icon {
	width: 70px;
	height: 70px;
	margin: auto;
	border-radius: 18px;
	background: #F2F5F8;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 30px;
}

.feature-card .feature-title {
	margin-top: 25px;
}

.feature-description {
	margin-top: 15px;
	color: var(--text-light);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* ==========================================================
   Stats
========================================================== */

.stats {
	background: var(--primary);
	color: white;
	border-radius: 24px;
	padding: 50px;
}

.stats h2 {
	color: white;
}

.stats p {
	color: #DCE5EF;
}

/* ==========================================================
   Footer
========================================================== */

.site-footer {
	background-color: var(--primary);
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	color: white;
	padding: 64px 0 32px;
}

.site-footer h4 {
	margin: 0 0 20px;
	color: white;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

.footer-bottom {
	margin-top: 56px;
	border-top: 1px solid rgba(255, 255, 255, .15);
	padding-top: 24px;
	color: #C8D2DC;
	text-align: center;
}

.footer-bottom p {
	display: block;
	margin: 0;
	color: #C8D2DC;
	font-size: 13px;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 1.2fr);
	gap: 0;
	align-items: stretch;
}

.footer-brand,
.footer-social,
.footer-newsletter {
	padding: 0 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
}

.footer-brand {
	padding-left: 0;
}

.footer-newsletter {
	padding-right: 0;
}

.footer-social,
.footer-newsletter {
	border-left: 1px solid rgba(255, 255, 255, .15);
}

.footer-social {
	padding: 0 40px;
	justify-content: flex-start;
}

.footer-social h4,
.footer-newsletter h4 {
	margin-bottom: 0;
}

.footer-social h4 {
	margin-bottom: 24px;
}

.footer-brand .site-brand {
	align-items: flex-start;
}

.footer-brand__description {
	margin: 0;
	max-width: 300px;
	font-size: 14px;
	color: rgba(255, 255, 255, .72);
	line-height: 1.7;
}

.footer-newsletter__text {
	margin: 0;
	max-width: 320px;
	font-size: 14px;
	color: rgba(255, 255, 255, .72);
	line-height: 1.6;
}

.footer-newsletter__form {
	display: flex;
	align-items: stretch;
	gap: 12px;
	max-width: 420px;
}

.footer-newsletter__form input {
	flex: 1;
	min-width: 0;
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 12px;
	background: rgba(255, 255, 255, .06);
	color: white;
	font-size: 14px;
}

.footer-newsletter__form input::placeholder {
	color: rgba(255, 255, 255, .45);
}

.footer-newsletter__form input:focus {
	border-color: rgba(255, 255, 255, .35);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, .08);
}

.footer-newsletter__submit {
	flex-shrink: 0;
	padding: 14px 24px;
	border: none;
	border-radius: 12px;
	background: white;
	color: var(--primary);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s, transform .2s;
}

.footer-newsletter__submit:hover {
	background: #F4F7FA;
}

.site-brand--footer .site-brand__name,
.site-brand--footer .site-brand__icon {
	color: white;
}

.site-brand--footer .site-brand__name {
	font-size: 28px;
	line-height: 1.1;
}

.site-brand--footer .site-brand__tagline {
	color: rgba(255, 255, 255, .65);
	font-size: 13px;
}

.site-brand--footer .site-brand__icon {
	width: 34px;
	height: 38px;
}

.social-links {
	display: flex;
	gap: 12px;
	margin: 0;
}

.footer-social .social-links {
	justify-content: space-between;
	width: 100%;
	gap: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	color: white;
}

.social-links a:hover {
	background: rgba(255, 255, 255, .2);
	color: white;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================
   Forms
========================================================== */

input,
select,
textarea {
	width: 100%;
	padding: 16px 20px;
	border: 1px solid var(--border);
	border-radius: 14px;
	outline: none;
	transition: .3s;
	font-size: 16px;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(52, 73, 94, .12);
}

/* ==========================================================
   Utility Classes
========================================================== */

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

.text-primary {
	color: var(--primary);
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 60px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 60px; }

.shadow {
	box-shadow: var(--shadow-md);
}

.rounded {
	border-radius: 24px;
}

.page-content {
	padding: 80px 0;
}

.shulesoft-editor-content > *:first-child {
	margin-top: 0;
}

.shulesoft-bb-content {
	width: 100%;
}

.page-content h1 {
	font-size: 48px;
	margin-bottom: 24px;
	color: var(--text);
}

.home-hero {
	background: var(--white);
	padding: 32px 0 24px;
}

.home-hero .hero {
	margin-bottom: 32px;
	gap: 40px;
}

.home-hero .hero-title {
	flex: 1 1 420px;
	max-width: 560px;
}

.home-hero__heading {
	font-size: clamp(2rem, 3.2vw, 2.875rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -1.2px;
	color: var(--text);
}

.home-hero .hero-description {
	margin-top: 18px;
	font-size: 17px;
	line-height: 1.65;
}

.home-hero .hero-buttons {
	margin-top: 28px;
	gap: 14px;
}

.home-hero .hero-image {
	flex: 1 1 768px;
	min-width: 0;
	justify-content: flex-end;
}

.home-hero .hero-image img,
.home-hero .hero-image svg {
	width: 100%;
	max-width: 768px;
	height: auto;
	object-fit: contain;
}

.home-hero__heading .highlight {
	display: inline;
	color: var(--primary-light);
}

/* ==========================================================
   Section Header / Eyebrow
========================================================== */

.section-header {
	margin-bottom: 40px;
}

.section-eyebrow {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-light);
	margin-bottom: 10px;
}

.section-header h2 {
	font-size: clamp(1.75rem, 2.4vw, 2.375rem);
	line-height: 1.2;
	letter-spacing: -0.8px;
}

.section-header h2,
.home-testimonials h2 {
	color: var(--text);
}

.home-features {
	background: var(--background);
	padding: 32px 0 56px;
}

.home-about {
	background: var(--white);
	padding: 56px 0 32px;
}

.home-testimonials {
	background: var(--background);
	padding: 32px 0 32px;
}

.home-cta {
	background: var(--background);
	padding: 32px 0 0;
}

.features-grid--six {
	grid-template-columns: repeat(3, 1fr);
}

.home-features .feature-card {
	padding: 24px 20px;
}

.home-features .feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
}

.home-features .feature-card .feature-title {
	margin-top: 16px;
	font-size: 17px;
}

.home-features .feature-description {
	margin-top: 8px;
	font-size: 15px;
	line-height: 1.6;
}

.home-features .features-grid {
	gap: 20px;
}

/* ==========================================================
   Stats Bar
========================================================== */

.stats-bar {
	background: var(--primary);
	border-radius: 20px;
	padding: 28px 32px 28px 44px;
}

.stats-bar__grid {
	display: flex;
	align-items: center;
	width: 100%;
}

.stats-bar__item {
	flex: 1 1 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	padding: 0 12px 0 36px;
	min-width: 0;
	position: relative;
}

.stats-bar__item:first-child {
	padding-left: 0;
}

.stats-bar__item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 56px;
	background: rgba(255, 255, 255, .14);
}

.stats-bar__icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.stats-bar__icon svg {
	width: 26px;
	height: 26px;
}

.stats-bar__content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: left;
	flex-shrink: 0;
}

.stats-bar__value {
	color: white;
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.4px;
	white-space: nowrap;
}

.stats-bar__label {
	color: rgba(255, 255, 255, .75);
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	line-height: 1.35;
	white-space: nowrap;
}

/* ==========================================================
   About Section
========================================================== */

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.about-content h2 {
	font-size: clamp(1.625rem, 2.2vw, 2.125rem);
	color: var(--text);
	margin-bottom: 16px;
	line-height: 1.25;
}

.about-description {
	margin-bottom: 20px;
	max-width: 480px;
	font-size: 16px;
	line-height: 1.65;
}

.about-checklist {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 4px;
}

.about-checklist li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 500;
	color: var(--text);
}

.about-checklist svg {
	flex-shrink: 0;
}

.about-visual {
	position: relative;
	margin-bottom: 32px;
}

.about-visual__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: #e8edf5;
}

.about-visual img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
}

.review-badge {
	position: absolute;
	bottom: -24px;
	left: -24px;
	z-index: 2;
	background: white;
	border-radius: var(--radius-md);
	padding: 20px 24px;
	box-shadow: var(--shadow-lg);
	max-width: 320px;
	border: 1px solid var(--border);
}

.review-badge__avatars {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.review-badge__avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid white;
	margin-left: -8px;
	flex-shrink: 0;
	overflow: hidden;
	display: block;
}

.review-badge__avatar:first-child {
	margin-left: 0;
}

.review-badge__avatar img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	display: block;
}

.review-badge__text {
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	margin: 0 0 8px;
	line-height: 1.4;
}

.review-badge__rating {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.review-badge__score {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
}

.review-badge__stars {
	display: flex;
	gap: 2px;
}

.review-badge__count {
	font-size: 12px;
	color: var(--text-light);
}

/* ==========================================================
   Testimonials
========================================================== */

.home-testimonials h2 {
	margin-bottom: 40px;
	font-size: clamp(1.75rem, 2.4vw, 2.375rem);
	line-height: 1.2;
	color: var(--text);
}

.testimonials-carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonials-carousel__btn {
	display: inline-flex;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--text-light);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	transition: border-color .2s, color .2s, box-shadow .2s;
}

.testimonials-carousel__btn:hover {
	border-color: #D4DEE8;
	color: var(--primary);
	box-shadow: var(--shadow-sm);
}

.testimonials-carousel__btn:disabled {
	opacity: .35;
	cursor: not-allowed;
	pointer-events: none;
}

.testimonials-grid {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	gap: 24px;
	flex: 1;
	min-width: 0;
	cursor: grab;
}

.testimonials-grid.is-dragging {
	scroll-snap-type: none;
	scroll-behavior: auto;
	cursor: grabbing;
	user-select: none;
}

.testimonials-grid::-webkit-scrollbar {
	display: none;
}

.testimonial-card {
	flex: 0 0 calc((100% - 48px) / 3);
	scroll-snap-align: start;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	min-height: 260px;
	text-align: left;
	transition: border-color .25s, box-shadow .25s;
}

@media (hover: hover) and (pointer: fine) {
	.testimonial-card:hover {
		border-color: #D4DEE8;
		box-shadow: 0 8px 24px rgba(52, 73, 94, .06);
	}
}

.testimonial-quote {
	flex: 1;
	font-size: 15px;
	color: #5C6773;
	line-height: 1.7;
	margin: 20px 0 0;
	font-style: normal;
}

.testimonial-author {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-top: 0;
	background: transparent;
	padding: 0;
	color: inherit;
}

.testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	flex-shrink: 0;
	object-fit: cover;
}

.testimonial-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.testimonial-name {
	font-style: normal;
	font-size: 15px;
	font-weight: 700;
	color: var(--primary);
	display: block;
	line-height: 1.3;
}

.testimonial-role {
	font-size: 13px;
	color: var(--text-light);
	margin: 0;
	line-height: 1.4;
}

.testimonial-stars {
	display: flex;
	gap: 3px;
	margin-top: 16px;
}

/* ==========================================================
   CTA Banner
========================================================== */

.cta-banner {
	background-color: var(--primary);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: var(--radius-xl);
	padding: 36px 56px;
	min-height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	overflow: hidden;
	position: relative;
}

.cta-banner::before,
.cta-banner::after {
	content: '';
	position: absolute;
	width: 72px;
	height: 72px;
	background-image: radial-gradient(circle, rgba(255, 255, 255, .18) 1.5px, transparent 1.5px);
	background-size: 10px 10px;
	pointer-events: none;
	z-index: 0;
}

.cta-banner::before {
	bottom: 28px;
	left: 28px;
}

.cta-banner::after {
	top: 28px;
	right: 28px;
}

.cta-content {
	max-width: 480px;
	flex: 1 1 46%;
	position: relative;
	z-index: 1;
}

.cta-content h2 {
	color: white;
	font-size: clamp(2rem, 3.2vw, 2.75rem);
	line-height: 1.15;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.cta-highlight {
	color: #4B9BFF;
}

.cta-content p {
	color: #DCE5EF;
	margin-bottom: 24px;
	font-size: 15px;
	line-height: 1.65;
}

.cta-perks {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 28px;
}

.cta-perk {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: white;
}

.cta-buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.btn-cta-primary {
	background: #4B9BFF;
	color: white;
	gap: 8px;
}

.btn-cta-primary:hover {
	background: #3A8AEE;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(75, 155, 255, .35);
}

.btn-cta-outline {
	background: transparent;
	border: 1px solid rgba(75, 155, 255, .55);
	color: white;
	gap: 8px;
}

.btn-cta-outline:hover {
	background: rgba(75, 155, 255, .12);
	color: white;
	border-color: #4B9BFF;
	transform: translateY(-2px);
}

.btn-white {
	background: white;
	color: var(--primary);
}

.btn-white:hover {
	background: var(--secondary);
	color: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.btn-outline-white {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .4);
	color: white;
}

.btn-outline-white:hover {
	background: rgba(255, 255, 255, .1);
	color: white;
	border-color: white;
}

.cta-illustration {
	flex: 0 0 54%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	z-index: 1;
}

.cta-illustration img {
	width: 100%;
	max-width: 100%;
	max-height: 420px;
	height: auto;
	border-radius: 0;
	object-fit: contain;
	object-position: center right;
}

/* ==========================================================
   Trust Bar
========================================================== */

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
}

.trust-item .feature-icon {
	margin: 0;
}

.trust-item p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	max-width: 220px;
}

/* ==========================================================
   Responsive
========================================================== */

@media (max-width: 992px) {
	h1 {
		font-size: 54px;
	}

	h2 {
		font-size: 38px;
	}

	.hero {
		flex-direction: column;
		text-align: center;
	}

	.hero-description {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
		row-gap: 12px;
		gap: 12px;
		justify-content: center;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-buttons .btn {
		width: 100%;
	}

	.home-hero .hero-title {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
	}

	.home-hero .hero-image {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
		justify-content: center;
		margin-top: 28px;
	}

	.home-hero .hero-image img,
	.home-hero .hero-image svg {
		max-width: 100%;
		margin: 0 auto;
	}

	.hero-image img {
		margin: 0 auto;
	}

	.features-grid,
	.features-grid--six,
	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.home-features .features-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.home-features .feature-card {
		padding: 20px 14px 18px;
		border-radius: 14px;
		background: var(--white);
		border: 1px solid var(--border);
		box-shadow: 0 4px 16px rgba(52, 73, 94, 0.06);
		-webkit-tap-highlight-color: transparent;
	}

	.home-features .feature-card.is-pressed,
	.home-features .feature-card.is-touched {
		transform: translateY(-6px);
		box-shadow: var(--shadow-lg);
	}

	.home-features .feature-icon {
		width: 48px;
		height: 48px;
		border-radius: 12px;
		background: #F2F5F8;
	}

	.home-features .feature-icon svg {
		width: 22px;
		height: 22px;
	}

	.home-features .feature-card .feature-title {
		margin-top: 12px;
		font-size: 13px;
		line-height: 1.3;
	}

	.home-features .feature-description {
		margin-top: 6px;
		font-size: 11px;
		line-height: 1.45;
	}

	.home-features .section-header {
		margin-bottom: 28px;
		padding: 0 4px;
	}

	.home-features .section-header h2 {
		font-size: clamp(1.25rem, 5vw, 1.75rem);
		letter-spacing: -0.3px;
		line-height: 1.25;
	}

	.home-features {
		background: #F9FAFB;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.about-content {
		order: 1;
	}

	.about-visual {
		order: 2;
		margin-bottom: 0;
	}

	.review-badge {
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		transform: none;
		width: 100%;
		margin-top: -16px;
		max-width: none;
		padding: 20px 24px;
		border-radius: 24px;
		box-shadow: var(--shadow-lg);
	}

	.stats-bar__grid {
		flex-wrap: wrap;
	}

	.stats-bar__item {
		flex: 1 1 50%;
		padding: 12px 16px;
	}

	.stats-bar__item:nth-child(odd)::after {
		display: block;
	}

	.stats-bar__item:nth-child(1),
	.stats-bar__item:nth-child(2) {
		padding-bottom: 20px;
		border-bottom: 1px solid rgba(255, 255, 255, .12);
	}

	.stats-bar__item:nth-child(2)::after {
		display: none;
	}

	.cta-banner {
		flex-direction: column;
		text-align: center;
		padding: 32px 28px;
	}

	.cta-content {
		max-width: 100%;
	}

	.cta-perks,
	.cta-buttons {
		justify-content: center;
	}

	.cta-illustration {
		flex: 1 1 auto;
		width: 100%;
		justify-content: center;
		margin-top: 24px;
	}

	.cta-illustration img {
		margin: 0 auto;
		max-width: 100%;
		max-height: 320px;
		object-position: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-brand,
	.footer-social,
	.footer-newsletter {
		padding: 0;
	}

	.footer-social,
	.footer-newsletter {
		border-left: none;
	}

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

@media (max-width: 768px) {
	:root {
		--footer-gap: 40px;
	}

	h1 {
		font-size: 42px;
	}

	h2 {
		font-size: 30px;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
		row-gap: 12px;
		gap: 12px;
	}

	.hero-buttons .btn {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		height: 52px;
	}

	.container,
	.shulesoft-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.navbar {
		height: 72px;
	}

	.nav-wrap {
		display: none;
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		background: white;
		border-bottom: 1px solid var(--border);
		padding: 16px 18px 24px;
	}

	.nav-wrap.is-open {
		display: block;
	}

	.nav-links {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.header-actions {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.site-footer {
		padding: 40px 0 28px;
	}

	.footer-brand,
	.footer-social,
	.footer-newsletter {
		justify-content: flex-start;
		min-height: 0;
		gap: 16px;
	}

	.footer-brand {
		padding-bottom: 28px;
		border-bottom: 1px solid rgba(255, 255, 255, .15);
	}

	.footer-social {
		padding: 28px 0;
		border-bottom: 1px solid rgba(255, 255, 255, .15);
	}

	.footer-social h4 {
		margin-bottom: 20px;
	}

	.footer-newsletter {
		padding-top: 28px;
	}

	.site-footer h4 {
		font-size: 17px;
		margin-bottom: 0;
	}

	.footer-brand__description {
		max-width: none;
		color: rgba(255, 255, 255, .78);
	}

	.footer-newsletter__text {
		max-width: none;
		margin-bottom: 16px;
	}

	.footer-newsletter__form {
		flex-direction: column;
		max-width: none;
		gap: 12px;
	}

	.footer-newsletter__form input,
	.footer-newsletter__submit {
		width: 100%;
	}

	.footer-newsletter__submit {
		padding: 16px 24px;
	}

	.social-links a {
		width: 46px;
		height: 46px;
	}

	.footer-social .social-links {
		justify-content: flex-start;
		max-width: none;
		gap: 12px;
	}

	.footer-bottom {
		margin-top: 32px;
		padding-top: 20px;
		text-align: left;
	}

	.footer-bottom p {
		width: 100%;
	}

	.trust-grid {
		grid-template-columns: 1fr;
	}

	.stats-bar {
		padding: 22px 20px 22px 28px;
	}

	.stats-bar__grid {
		flex-direction: column;
	}

	.stats-bar__item {
		flex: 1 1 auto;
		width: 100%;
		padding: 12px 0 12px 0;
	}

	.stats-bar__item:first-child {
		padding-left: 0;
	}

	.stats-bar__item:not(:last-child)::after {
		display: none;
	}

	.stats-bar__item:not(:last-child) {
		border-bottom: 1px solid rgba(255, 255, 255, .12);
		padding-bottom: 16px;
		margin-bottom: 12px;
	}

	.stats-bar__item:nth-child(1),
	.stats-bar__item:nth-child(2) {
		border-bottom: 1px solid rgba(255, 255, 255, .12);
		padding-bottom: 16px;
		margin-bottom: 12px;
	}

	.stats-bar__icon {
		width: 46px;
		height: 46px;
	}

	.stats-bar__icon svg {
		width: 22px;
		height: 22px;
	}

	.stats-bar__value {
		font-size: 20px;
	}

	.stats-bar__label {
		font-size: 13px;
		white-space: normal;
	}

	.testimonial-stars {
		margin-top: 14px;
	}

	.home-testimonials h2 {
		margin-bottom: 28px;
		font-size: clamp(1.375rem, 5vw, 1.75rem);
	}

	.home-testimonials .testimonials-carousel {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.home-testimonials .testimonials-carousel__btn {
		display: inline-flex;
		width: 36px;
		height: 36px;
	}

	.home-testimonials .testimonials-grid {
		gap: 16px;
	}

	.home-testimonials .testimonial-card {
		flex: 0 0 100%;
		scroll-snap-align: center;
		min-height: 0;
		padding: 24px 20px;
		-webkit-tap-highlight-color: transparent;
	}

	section {
		padding: 70px 0;
	}

	.home-hero {
		padding: 20px 0 32px;
	}

	.home-hero__heading {
		font-size: clamp(1.625rem, 6.5vw, 2.125rem);
		letter-spacing: -0.6px;
		line-height: 1.2;
	}

	.home-hero .hero-description {
		font-size: 15px;
		line-height: 1.6;
	}

	.home-hero .hero-buttons {
		margin-top: 24px;
		row-gap: 12px;
		gap: 12px;
		width: 100%;
		max-width: 100%;
	}

	.home-hero .hero-image {
		margin-top: 32px;
	}

	.home-features,
	.home-testimonials {
		padding: 36px 0 28px;
	}

	.home-about {
		padding: 40px 0 20px;
	}

	.home-testimonials {
		padding: 24px 0 24px;
	}

	.home-features .features-grid {
		gap: 12px;
	}

	.home-features .feature-card {
		padding: 20px 14px 18px;
	}

	.home-about .about-visual {
		margin-bottom: 0;
	}

	.home-about .about-visual__media {
		border-radius: 16px;
	}

	.home-about .review-badge {
		margin-top: -12px;
		padding: 20px 24px;
		border-radius: 24px;
		box-shadow: var(--shadow-lg);
	}

	.home-about .review-badge__avatars {
		margin-bottom: 12px;
	}

	.home-about .review-badge__avatar {
		width: 40px;
		height: 40px;
		margin-left: -12px;
	}

	.home-about .review-badge__text {
		font-size: 14px;
		line-height: 1.45;
		margin-bottom: 10px;
	}

	.home-about .review-badge__rating {
		gap: 6px;
		flex-wrap: nowrap;
	}

	.home-about .review-badge__score {
		font-size: 14px;
		flex-shrink: 0;
	}

	.home-about .review-badge__stars {
		flex-shrink: 0;
	}

	.home-about .review-badge__count {
		font-size: 11px;
		white-space: nowrap;
	}

	.home-cta {
		padding: 24px 0 0;
	}
}

@media (max-width: 480px) {
	.container,
	.shulesoft-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.home-hero__heading {
		font-size: 1.625rem;
	}

	.hero-buttons,
	.home-hero .hero-buttons {
		gap: 0;
		row-gap: 0;
	}

	.hero-buttons .btn:not(:last-child),
	.home-hero .hero-buttons .btn:not(:last-child) {
		margin-bottom: 12px;
	}

	.home-features .features-grid {
		gap: 10px;
	}

	.home-features .feature-card {
		padding: 18px 12px 16px;
		border-radius: 12px;
	}

	.home-features .feature-icon {
		width: 44px;
		height: 44px;
		border-radius: 10px;
	}

	.home-features .feature-icon svg {
		width: 20px;
		height: 20px;
	}

	.home-features .feature-card .feature-title {
		font-size: 12px;
	}

	.home-features .feature-description {
		font-size: 10px;
		line-height: 1.4;
	}

	.home-features .section-header h2 {
		font-size: 1.25rem;
	}
}
