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

/* ===== RESET & BASE ===== */
.sk-landing {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: #1f2937;
	line-height: 1.6;
	overflow-x: hidden;
	--sk-navbar-height: 80px;
	--sk-accent: #00b295;
	--sk-primary: #00487C;
}

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

.sk-landing h1,
.sk-landing h2,
.sk-landing h3,
.sk-landing h4,
.sk-landing h5 {
	margin: 0 0 0.5em;
	line-height: 1.3;
	font-weight: 700;
}

.sk-landing p {
	margin: 0 0 1em;
}

.sk-landing a {
	text-decoration: none;
	color: inherit;
}

.sk-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ===== BUTTONS ===== */
.sk-btn {
	display: inline-block;
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	text-align: center;
}

.sk-btn-login {
	background: #00487C;
	color: #ffffff !important;
	padding: 10px 24px;
	border-radius: 6px;
	font-size: 14px;
}

.sk-btn-login:hover {
	background: #003a63;
	transform: translateY(-1px);
}

.sk-btn-hero {
	background: #ffffff;
	color: #2563eb;
	padding: 14px 40px;
	font-size: 16px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.sk-btn-hero:hover {
	background: #f0f4ff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.sk-btn-primary {
	background: #00487C;
	color: #ffffff;
	padding: 14px 40px;
	font-size: 16px;
}

.sk-btn-primary:hover {
	background: #003a63;
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(0, 72, 124, 0.4);
}

.sk-btn-interest {
	background: #dc2626;
	color: #ffffff !important;
}

.sk-btn-interest:hover {
	background: #b91c1c;
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

/* ===== NAVBAR ===== */
.sk-navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #ffffff;
	box-shadow: 0 13px 30px rgba(127, 137, 161, 0.3);
	transition: background 0.2s ease, box-shadow 0.2s ease;
	padding: 0;
}

.sk-navbar.scrolled {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.sk-navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	height: var(--sk-navbar-height);
}

.sk-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #0f172a;
	font-weight: 700;
	font-size: 18px;
	flex: 0 0 auto;
	height: 100%;
}

.sk-logo-img {
	display: block;
	height: 70px;
	width: auto;
	max-width: 260px;
	object-fit: contain;
}

.sk-logo-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #ffffff;
	color: #2563eb;
	border-radius: 8px;
	font-weight: 800;
	font-size: 14px;
}

.sk-logo-text {
	color: #ffffff;
}

.sk-nav-links {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0;
	flex: 1 1 auto;
	justify-content: flex-end;
	flex-wrap: nowrap;
	height: 100%;
}

.sk-nav-links li a {
	color: #6b7280;
	font-size: 14px;
	font-weight: 700;
	padding: 0 10px;
	border-radius: 0;
	transition: color 0.15s ease, border-color 0.15s ease;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	border-bottom: 3px solid transparent;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	height: var(--sk-navbar-height);
	line-height: 1;
}

.sk-nav-links li a:hover,
.sk-nav-links li a[href="#home"] {
	color: rgba(15, 23, 42, 0.95);
	border-bottom-color: var(--sk-accent);
}

/* Hamburger */
.sk-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.sk-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #0f172a;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* ===== HERO ===== */
.sk-hero {
	background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
	color: #ffffff;
	padding: 140px 0 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.sk-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.03);
}

.sk-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
}

.sk-hero-content {
	position: relative;
	z-index: 1;
	max-width: 750px;
	margin: 0 auto;
}

.sk-hero h1 {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.sk-highlight {
	color: #00b295;
}

.sk-hero h3 {
	font-size: 20px;
	font-weight: 400;
	opacity: 0.9;
	font-style: italic;
	margin-bottom: 24px;
}

.sk-hero p {
	font-size: 16px;
	opacity: 0.85;
	line-height: 1.8;
	margin-bottom: 36px;
}

/* ===== FEATURES ===== */
.sk-features {
	padding: 8% 0;
	background: #ffffff;
}

.sk-section-title {
	text-align: center;
	font-size: 45px;
	font-weight: bold;
	color: #1e293b;
	margin-bottom: 8px;
	border-bottom: 4px solid #00b295;
	display: inline-block;
	padding: 4px 0;
}

.sk-section-header {
	text-align: center;
	margin-bottom: 48px;
}

.sk-section-subtitle {
	text-align: center;
	font-size: 16px;
	color: #64748b;
	margin-bottom: 48px;
	font-style: italic;
}

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

.sk-feature-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.sk-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
	border-color: #bfdbfe;
}

.sk-feature-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	background: #eff6ff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2563eb;
}

.sk-feature-icon svg {
	width: 28px;
	height: 28px;
}

.sk-feature-card h4 {
	font-size: 16px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 8px;
}

.sk-feature-card p {
	font-size: 14px;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}

/* ===== CORRESPONDENCE ===== */
.sk-correspondence {
	background: #ffffff;
	padding: 8% 0;
	text-align: center;
}

.sk-correspondence .sk-section-title {
	margin-bottom: 16px;
}

.sk-correspondence .sk-section-subtitle {
	font-style: italic;
	color: #6b7280;
}

/* ===== HOW IT WORKS ===== */
.sk-how-it-works {
	padding: 80px 0;
	background: #ffffff;
}

.sk-how-desc {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 16px;
	color: #475569;
	font-size: 15px;
	line-height: 1.8;
}

.sk-how-tagline {
	text-align: center;
	font-size: 23px;
	font-weight: 700;
	color: #6b7280;
	margin-bottom: 48px;
}

.sk-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.sk-step-card {
	text-align: center;
	padding: 40px 24px;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.sk-step-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.sk-step-number {
	width: 56px;
	height: 56px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 800;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.sk-step-card h4 {
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 12px;
}

.sk-step-card p {
	font-size: 14px;
	color: #64748b;
	margin: 0;
	line-height: 1.7;
}

/* ===== BENEFITS ===== */
.sk-benefits {
	padding: 8% 0;
	background: #ffffff;
}

.sk-benefits-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.sk-benefits-wrapper h2 {
	font-size: 32px;
	color: #1e293b;
	margin-bottom: 12px;
}

.sk-benefits-lead {
	font-size: 16px;
	color: #64748b;
	margin-bottom: 24px;
}

.sk-benefits-wrapper h4 {
	font-size: 18px;
	color: #1e293b;
	margin-bottom: 16px;
}

.sk-checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}

.sk-checklist li {
	position: relative;
	padding: 10px 0 10px 36px;
	font-size: 15px;
	color: #475569;
	border-bottom: 1px solid #e2e8f0;
}

.sk-checklist li:last-child {
	border-bottom: none;
}

.sk-checklist li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	top: 10px;
	width: 24px;
	height: 24px;
	background: #dcfce7;
	color: #16a34a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
}

.sk-benefits-cta {
	text-align: center;
	margin-top: 16px;
}

/* ===== SERVICE LINKS ===== */
.sk-service-links {
	padding: 80px 0;
	background: #ffffff;
}

.sk-links-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.sk-link-card {
	display: block;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px 20px;
	transition: all 0.3s ease;
}

.sk-link-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	border-color: #bfdbfe;
	background: #eff6ff;
}

.sk-link-card h4 {
	font-size: 16px;
	color: #2563eb;
	margin-bottom: 8px;
	font-weight: 700;
}

.sk-link-card p {
	font-size: 13px;
	color: #64748b;
	margin: 0;
	line-height: 1.6;
}

/* ===== EDUCATION ===== */
.sk-education {
	padding: 60px 0;
	background: #f8fafc;
}

.sk-edu-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 800px;
	margin: 0 auto;
}

.sk-edu-card {
	display: block;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 32px 24px;
	text-align: center;
	transition: all 0.3s ease;
}

.sk-edu-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	border-color: #bfdbfe;
}

.sk-edu-card h4 {
	font-size: 18px;
	color: #2563eb;
	margin-bottom: 8px;
}

.sk-edu-card p {
	font-size: 14px;
	color: #64748b;
	margin: 0;
	line-height: 1.6;
}

/* ===== CONTACT ===== */
.sk-contact {
	padding: 80px 0;
	background: #ffffff;
}

.sk-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	margin-top: 40px;
}

.sk-contact-form {
	background: #F0F8FF;
	border-radius: 15px;
	padding: 32px;
	box-shadow: 0 1px 16px rgba(127, 137, 161, 0.35);
}

.sk-contact-item {
	margin-bottom: 24px;
}

.sk-contact-item h4 {
	font-size: 14px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 4px;
}

.sk-contact-item p {
	font-size: 15px;
	color: #475569;
	margin: 0;
}

.sk-contact-item a {
	color: #00487C;
	transition: color 0.2s;
}

.sk-contact-item a:hover {
	color: #003a63;
}

.sk-contact-form form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sk-contact-form input,
.sk-contact-form select,
.sk-contact-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	color: #1f2937;
	background: #ffffff;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.sk-contact-form input:focus,
.sk-contact-form select:focus,
.sk-contact-form textarea:focus {
	outline: none;
	border-color: #00487C;
	box-shadow: 0 0 0 3px rgba(0, 72, 124, 0.15);
}

.sk-contact-form textarea {
	resize: vertical;
	min-height: 80px;
}

.sk-contact-form .sk-btn {
	width: 100%;
}

/* ===== FOOTER ===== */
.sk-footer {
	background: #E6E8E6;
	color: #1f2937;
	padding: 40px 0 24px;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.sk-footer-policies {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	justify-content: center;
	margin-bottom: 16px;
}

.sk-footer-policies a {
	color: #00487C;
	font-size: 14px;
	text-decoration: underline;
	transition: color 0.2s;
}

.sk-footer-policies a:hover {
	color: #003a63;
}

.sk-footer-address {
	text-align: center;
	margin-bottom: 16px;
}

.sk-footer-address p {
	font-size: 14px;
	color: #374151;
	margin: 0 0 4px;
}

.sk-footer-bottom {
	padding-top: 16px;
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sk-footer-bottom p {
	font-size: 13px;
	color: #6b7280;
	margin: 0 0 8px;
}

.sk-footer-admin {
	color: #00487C !important;
	font-size: 13px;
	text-decoration: underline;
}

.sk-footer-admin:hover {
	color: #003a63 !important;
}

/* ===== ADDITIONS FOR REFERENCE LANDING (assets + sections) ===== */
.sk-carousel {
	position: relative;
	margin-top: var(--sk-navbar-height);
	background: #ffffff;
}

.sk-carousel-viewport {
	position: relative;
	overflow: hidden;
}

/* No overlay on carousel - matches simplykhata.com */

.sk-carousel-track {
	display: flex;
	transform: translateX(0);
	transition: transform 650ms ease;
	will-change: transform;
}

.sk-carousel-slide {
	min-width: 100%;
	height: 520px;
	position: relative;
}

.sk-carousel-slide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.sk-carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(0, 0, 0, 0.25);
	color: #ffffff;
	font-size: 28px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.sk-carousel-btn:hover {
	background: rgba(0, 0, 0, 0.4);
	transform: translateY(-50%) scale(1.04);
}

.sk-carousel-prev {
	left: 16px;
}

.sk-carousel-next {
	right: 16px;
}

.sk-carousel-indicators {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 2;
}

.sk-carousel-indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.8);
	cursor: pointer;
	transition: background 0.2s;
}

.sk-carousel-indicator.is-active {
	background: rgba(255, 255, 255, 1);
}

/* ===== SAY HELLO (matches simplykhata.com) ===== */
.sk-say-hello {
	padding: 60px 0;
	background: #ffffff;
}

.sk-say-hello-title {
	font-size: 45px;
	font-weight: bold;
	color: #00b295;
	text-align: center;
	margin: 0 0 48px;
}

.sk-say-hello-subtitle {
	color: #00487C;
	font-size: 22px;
	text-align: center;
	margin-bottom: 24px;
}

.sk-say-hello-desc {
	text-align: center;
	font-size: 22px;
	color: #6b7280;
	max-width: 90%;
	margin: 0 auto 32px;
	line-height: 1.8;
	font-style: italic;
}

.sk-video-wrap {
	margin-top: 32px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 16px rgba(127, 137, 161, 0.35);
}

.sk-video-wrap video {
	display: block;
	width: 100%;
	height: auto;
}

.sk-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sk-hero-content h1 {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
	color: #ffffff;
}

.sk-hero-content h3 {
	font-size: 20px;
	font-weight: 400;
	opacity: 0.95;
	font-style: italic;
	margin-bottom: 24px;
	color: #ffffff;
}

.sk-hero-content p {
	font-size: 16px;
	opacity: 0.9;
	line-height: 1.8;
	margin-bottom: 36px;
	color: rgba(255, 255, 255, 0.95);
}

.sk-features-grid-img {
	grid-template-columns: repeat(4, 1fr);
}

.sk-feature-img {
	width: min(230px, 100%);
	height: auto;
	display: block;
	margin: 0 auto 14px;
}

.sk-feature-caption {
	margin: 0;
	color: #334155;
	font-size: 14px;
	line-height: 1.6;
}

.sk-media-card {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	background: #ffffff;
	margin-top: 28px;
}

.sk-media-card img {
	display: block;
	width: 100%;
	height: auto;
}

.sk-steps-img .sk-step-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
}

.sk-step-img {
	width: min(230px, 100%);
	height: auto;
	display: block;
	margin: 0 auto 10px;
}

.sk-benefits-split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 32px;
	align-items: center;
	margin-top: 40px;
}

.sk-inline-cta {
	text-align: center;
	margin-top: 16px;
}

.sk-service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 36px;
}

.sk-service-card {
	position: relative;
	display: block;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sk-service-card img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: contain;
	background: #ffffff;
	padding: 18px;
}

.sk-service-overlay {
	position: absolute;
	inset: 0;
	padding: 14px;
	background: #00201A;
	color: #ffffff;
	font-size: 13px;
	line-height: 1.45;
	opacity: 0;
	transition: opacity 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.sk-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.sk-service-card:hover .sk-service-overlay {
	opacity: 1;
}

.sk-learning-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 980px;
	margin: 40px auto 0;
}

.sk-learning-card {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #F0F8FF;
	border: 1px solid transparent;
	border-radius: 14px;
	padding: 18px 18px;
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.sk-learning-card:hover {
	transform: translateY(-3px);
	border-color: #00487C;
}

.sk-learning-card img {
	width: 72px;
	height: 72px;
	object-fit: contain;
	flex: 0 0 auto;
}

.sk-learning-card p {
	margin: 0;
	color: #475569;
	font-size: 14px;
	line-height: 1.6;
}

.sk-learning-card b {
	color: #0f172a;
}

.sk-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: none;
}

.sk-modal.is-open {
	display: block;
}

.sk-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.sk-modal-card {
	position: relative;
	z-index: 1;
	max-width: 980px;
	margin: 72px auto;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid rgba(226, 232, 240, 1);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
	padding: 24px;
}

.sk-modal-close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	color: #0f172a;
	font-size: 22px;
	cursor: pointer;
}

.sk-modal-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 10px;
}

.sk-modal-option {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 18px;
	background: #f8fafc;
	text-align: center;
}

.sk-modal-option img {
	width: min(230px, 100%);
	height: auto;
	display: block;
	margin: 0 auto 10px;
}

.sk-muted {
	color: #64748b;
}

.sk-partners-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 40px;
}

.sk-partner-card {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
}

.sk-partner-card img {
	max-width: 240px;
	max-height: 120px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.sk-contact-form label span {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #334155;
	margin-bottom: 6px;
}

.sk-chat-launcher {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 2100;
	width: 74px;
	height: 74px;
	border-radius: 999px;
	border: 1px solid rgba(226, 232, 240, 1);
	background: #ffffff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	padding: 10px;
}

.sk-chat-launcher img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.sk-chat-form {
	display: none;
	position: fixed;
	right: 18px;
	bottom: 104px;
	z-index: 2100;
	width: min(360px, calc(100vw - 36px));
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
	overflow: hidden;
}

.sk-chat-form.is-open {
	display: block;
}

.sk-chat-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	background: #0f172a;
	color: #ffffff;
}

.sk-chat-close {
	border: none;
	background: transparent;
	color: #ffffff;
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
	padding: 0 6px;
}

#sk-chat-inner-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 14px;
}

#sk-chat-inner-form input,
#sk-chat-inner-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	font-size: 14px;
	font-family: inherit;
}


/* ===== SUBSCRIPTION PAGE ===== */
.sk-plan-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 40px;
}

.sk-plan-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px 20px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sk-plan-title {
	margin: 0;
	text-align: center;
	font-size: 20px;
	color: #0f172a;
}

.sk-plan-sub {
	margin: 0;
	text-align: center;
	color: #64748b;
	font-size: 14px;
}

.sk-plan-price {
	margin: 0;
	text-align: center;
	color: #0f172a;
	font-size: 16px;
}

.sk-plan-price b {
	font-size: 22px;
}

.sk-plan-list {
	list-style: none;
	padding: 0;
	margin: 12px 0 6px;
	flex: 1;
}

.sk-plan-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 8px 0;
	font-size: 14px;
	color: #475569;
	border-bottom: 1px solid #eef2f7;
}

.sk-plan-list li:last-child {
	border-bottom: none;
}

.sk-plan-list img {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	flex: 0 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.sk-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

	.sk-steps .sk-step-card:last-child {
		grid-column: 1 / -1;
		max-width: 400px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.sk-hamburger {
		display: flex;
	}

	.sk-nav-links {
		display: none;
		position: absolute;
		top: var(--sk-navbar-height);
		left: 0;
		right: 0;
		flex-direction: column;
		background: rgba(255, 255, 255, 1);
		border-bottom: 1px solid rgba(226, 232, 240, 0.9);
		padding: 16px 24px;
		gap: 4px;
	}

	.sk-nav-links.active {
		display: flex;
	}

	.sk-nav-links li a {
		display: block;
		padding: 12px 16px;
		font-size: 15px;
		border-bottom: 1px solid rgba(226, 232, 240, 0.9);
	}

	.sk-hero {
		padding: 120px 0 70px;
	}

	.sk-hero h1 {
		font-size: 32px;
	}

	.sk-hero h3 {
		font-size: 16px;
	}

	.sk-section-title {
		font-size: 28px;
	}

	.sk-features-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.sk-steps {
		grid-template-columns: 1fr;
	}

	.sk-steps .sk-step-card:last-child {
		max-width: none;
	}

	.sk-links-grid {
		grid-template-columns: 1fr;
	}

	.sk-edu-grid {
		grid-template-columns: 1fr;
	}

	.sk-contact-wrapper {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 480px) {
	.sk-hero h1 {
		font-size: 26px;
	}

	.sk-container {
		padding: 0 16px;
	}

	.sk-feature-card {
		padding: 24px 16px;
	}

	.sk-step-card {
		padding: 32px 16px;
	}
}

/* ===== HIDE FRAPPE DEFAULT ELEMENTS ===== */
.sk-landing .page-header {
	display: none !important;
}

/* Frappe's .web-footer is a sibling of .sk-landing, not a child — use :has() */
body:has(.sk-landing) .web-footer,
body:has(.sk-landing) footer.web-footer {
	display: none !important;
}

/* Ensure the landing page takes full width */
.sk-landing .main-section {
	padding: 0 !important;
}

/* Full-width: remove container constraints */
body:has(.sk-landing) {
	overflow-x: hidden;
}

body:has(.sk-landing) .page-content-wrapper,
body:has(.sk-landing) main,
body:has(.sk-landing) .page_content {
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body:has(.sk-landing) > div,
body:has(.sk-landing) [id^="page-"] {
	max-width: none !important;
	width: 100% !important;
}

.sk-landing {
	width: 100%;
	max-width: none;
}

/* Carousel full viewport width - breakout technique */
.sk-carousel {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* ===== RESPONSIVE (reference landing additions) ===== */
@media (max-width: 1024px) {
	.sk-features-grid-img {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

	.sk-learning-grid {
		grid-template-columns: repeat(1, 1fr);
	}

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

	.sk-benefits-split {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.sk-carousel-slide {
		height: 320px;
	}

	.sk-say-hello-title {
		font-size: 32px;
	}

	.sk-hero-content h1 {
		font-size: 32px;
	}

	.sk-hero-content h3 {
		font-size: 16px;
	}

	.sk-features-grid-img {
		grid-template-columns: 1fr;
	}

	.sk-plan-grid {
		grid-template-columns: 1fr;
	}

	.sk-service-grid {
		grid-template-columns: 1fr;
	}

	.sk-modal-grid {
		grid-template-columns: 1fr;
	}

	.sk-partners-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.sk-hero-content h1 {
		font-size: 26px;
	}
}
