/* ==========================================================================
   K7 Consultancy — Custom Styles
   Dark theme with red accents
   ========================================================================== */

/* --- CSS Variables --- */
:root {
	--k7-bg: #000000;
	--k7-bg-light: #1A1A1A;
	--k7-bg-card: #1A1A1A;
	--k7-red: #EE2934;
	--k7-red-dark: #C41F29;
	--k7-red-accent: #DE3F3A;
	--k7-white: #FFFFFF;
	--k7-cream: #EBE5D6;
	--k7-gray: #99A1AF;
	--k7-gray-light: #D1D5DC;
	--k7-border: #2A2A2A;
	--k7-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--k7-font-heading: 'Bai Jamjuree', 'Inter', sans-serif;
	--k7-font-body: 'DM Sans', 'Inter', sans-serif;
	--k7-font-ui: 'Inter', 'DM Sans', sans-serif;
	--k7-container: 1280px;
}

body {
	margin-bottom: 0 !important;
}

/* --- Global Reset --- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--k7-bg);
	color: var(--k7-white);
	font-family: var(--k7-font);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a,
a:visited,
a:link {
	text-decoration: none;
	color: inherit;
	transition: color 0.2s ease;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.k7-container {
	max-width: var(--k7-container);
	margin: 0 auto;
	padding: 0 0px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
	background-color: var(--k7-bg);
	border-bottom: 1px solid var(--k7-red);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}

.site-header.header-transparent {
	position: fixed;
	width: 100%;
	background-color: transparent;
	border-bottom-color: transparent;
}

.site-header.header-transparent.header-scrolled,
.site-header.header-transparent.header-black {
	background-color: var(--k7-bg);
	border-bottom-color: var(--k7-red);
}

.site-header.header-transparent.header-black {
	border-bottom: 1px solid var(--k7-red) !important;
}

.site-header .k7-container {
	display: flex;
	align-items: center;
	gap: 50px;
	padding-top: 32px;
	padding-bottom: 32px;
	padding-left: 0px;
	padding-right: 0px;
	justify-content: space-between;
}

.site-header .main-navigation {
	flex: 1;
	min-width: 0;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-logo {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--k7-white);
	letter-spacing: 1px;
	flex-shrink: 0;
}

.site-logo .logo-k {
	color: var(--k7-white);
}

.site-logo .logo-7 {
	color: var(--k7-white);
}

.site-logo img {
	height: 41px;
	width: auto;
}

/* Main Navigation */
.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 42px;
}

.main-navigation ul li a {
	display: block;
	padding: 0px 0;
	font-family: var(--k7-font-heading);
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--k7-cream);
	letter-spacing: 0.02em;
	transition: color 0.2s ease;
	position: relative;
	white-space: nowrap;
}

.main-navigation ul li a:hover {
	color: var(--k7-white);
}

.main-navigation ul li.current-menu-item a {
	color: var(--k7-red);
	font-weight: 500;
}

.main-navigation ul li.current-menu-item a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--k7-red);
}

.team-grid.cols-2 .team-card {
	display: grid;
	align-items: center;
	gap: 38px;
	grid-template-columns: repeat(2, 1fr);
}

/* Header CTA Button */
.header-cta {
	display: inline-flex;
	align-items: center;
	padding: 16px 24px;
	background-color: var(--k7-red);
	color: var(--k7-white);
	font-family: var(--k7-font-heading);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.025em;
	border-radius: 10px;
	transition: background-color 0.2s ease;
	white-space: nowrap;
}

.header-cta:visited {
	color: var(--k7-white);
}

.header-cta:hover {
	background-color: var(--k7-red-dark);
	color: var(--k7-white);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--k7-white);
	margin: 5px 0;
	transition: transform 0.3s ease;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.about-hero {
	position: relative;
	height: 362px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	background-color: var(--k7-bg);
	text-align: left !important;
	width: 100%;
	min-width: 100vw;
}

.about-hero *,
.about-hero h1,
.about-hero p {
	text-align: left !important;
}

.about-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%);
	z-index: 1;
}

/* .about-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 180px;
	height: 180px;
	background-color: var(--k7-bg);
	clip-path: path('M 180 0 L 30 150 Q 10 180, 0 180 L 180 180 Z');
	z-index: 2;
} */

.about-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(0% 0%,
			100% 0%,
			100% 51.4%,
			87.7% 94.1%,
			83.8% 100%,
			0% 100%);
}

.about-hero .k7-container {
	position: relative;
	z-index: 2;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	text-align: left !important;
	width: 100%;
}

.about-hero .hero-red-line {
	display: none;
}

.about-hero h1 {
	font-family: var(--k7-font-heading);
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0 0 16px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-align: left !important;
}

.about-hero .hero-subtitle {
	font-family: var(--k7-font-body);
	font-size: 20px;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	max-width: 620px;
	line-height: 1.6;

	text-align: left !important;
}

/* ==========================================================================
   FOUNDER SECTION
   ========================================================================== */

.founder-section {
	padding: 80px 48px;
	background-color: var(--k7-bg);
}

.founder-section h2 {
	font-family: var(--k7-font-heading);
	font-size: 46px;
	font-weight: 600;
	margin: 0 0 48px;
}

.founder-grid {
	display: grid;
	grid-template-columns: 276px 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.founder-image-wrap {
	text-align: left;
}

.founder-image-wrap img {
	min-width: 276px;
	height: 242px;
	object-fit: cover;
	border-radius: 8px;
	margin: 0 auto 16px;
	background-color: var(--k7-bg-card);
	border: 1px solid var(--k7-border);
}

.founder-name {
	font-family: var(--k7-font-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0 0 4px;
}

.founder-title {
	font-family: var(--k7-font-body);
	font-size: 20px;
	color: var(--k7-gray);
	margin: 0;
}

.founder-text {
	display: contents;
}

.founder-text-col {
	display: flex;
	flex-direction: column;
}

.founder-text p {
	font-family: var(--k7-font-body);
	font-size: 17px;
	color: var(--k7-gray-light);
	line-height: 1.8;
	margin: 0 0 16px;
}

/* ==========================================================================
   ABOUT US — VISION & MISSION
   ========================================================================== */

.vision-mission-section {
	padding: 0px 48px 30;
	background-color: var(--k7-bg);
}

.vision-mission-section>.k7-container>h2 {
	font-family: var(--k7-font-heading);
	font-size: 46px;
	font-weight: 600;
	margin: 0 0 40px;
}

.vision-mission-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.vm-card {
	background-color: transparent;
	border: 2px solid var(--k7-red);
	/* border-left: 4px solid var(--k7-red); */
	border-radius: 8px;
	padding: 32px;
}

.vm-card h3 {
	font-family: var(--k7-font-heading);
	font-size: 24px;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0 0 16px;
	position: relative;
	width: fit-content;
}

.vm-card h3::after {
	content: "";
	position: absolute;
	width: 100%;
	background-color: var(--k7-red);
	height: 2px;
	left: 0;
	bottom: -4px;
}

.vm-card p {
	font-family: var(--k7-font-body);
	font-size: 16;
	color: var(--k7-gray-light);
	line-height: 1.7;
	margin: 0 0 8px;
}

.vm-card p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   K7 VALUES
   ========================================================================== */

.values-section {
	padding: 80px 48px;
	background-color: var(--k7-bg);
}

.values-section h2 {
	font-family: var(--k7-font-heading);
	font-size: 46px;
	font-weight: 600;
	text-align: center;
	margin: 0 0 48px;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.value-card {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 0;
	height: 146px;
}

.value-card .value-content {

	background-color: transparent;
	/* border: 2px solid rgba(238, 41, 52, 0.6); */
	border-radius: 4px;
	padding: 28px 32px 0 140px;
	transition: border-color 0.2s ease;
	width: calc(100% - 29px);
	overflow: visible;
	background-image: url(../images/Vector.png);
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: auto;
	height: 100%
}

.value-card:hover {
	border-color: var(--k7-red);
}

/* Trapezium (red part with letter) */
.value-icon {
	position: absolute;
	left: 0;
	top: 0;
	width: 104px;
	height: 86px;
	/* background-color: var(--k7-red); */
	opacity: 1;
	/* border: 3px solid var(--k7-red); */
	color: var(--k7-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 800;
	background-image: url(../images/trank7.png);
	background-size: contain;
	background-repeat: no-repeat;
	padding: 21px 0 15px 26px;
	display: flex;
	align-items: baseline;
	justify-content: start;
	width: 104px;
	/* clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%); */
}

/* Diagonal gap between trapezium and card content */
/* .value-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 120px;
	height: 86px;
	background-color: var(--k7-bg);
	clip-path: polygon(104px 0, 120px 0, 82px 86px, 66px 86px);
	z-index: 1;
} */

.value-content h3 {
	font-family: var(--k7-font-heading);
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 8px;
}

.value-content p {
	font-family: var(--k7-font-body);
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   OUR TEAM
   ========================================================================== */

.team-section {
	padding: 80px 48px;
	background-color: var(--k7-bg);
}

.team-section>.k7-container>h2 {
	font-family: var(--k7-font-heading);
	font-size: 46px;
	font-weight: 600;
	text-align: center;
	margin: 0 0 56px;
}

.team-group {
	margin-bottom: 56px;
}

.team-group:last-child {
	margin-bottom: 0;
}

.team-group h3 {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0 0 15px;
	padding-bottom: 0;
	/* border-bottom: 1px solid var(--k7-border); */
}

.team-grid {
	display: grid;
	gap: 32px;
}

.team-grid.cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.team-grid.cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.team-grid.cols-2 {
	grid-template-columns: repeat(2, 1fr);
	/* max-width: 600px; */
}

.team-card {
	text-align: center;
}

.team-card-image {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	margin: 0 auto 16px;
	background-color: var(--k7-bg-light);
	transition: border-color 0.2s ease;
	/*
	   Diagonal cut top-right + ~20px rounded corners on the other 3 corners.
	   clip-path doesn't support border-radius, so corners are approximated
	   with extra polygon points (3-point bevels ≈ rounded).
	*/
	border-radius: 20px;
	clip-path: polygon(
			/* top-left corner */
			0 0,
			/* top edge → rounded bend into diagonal */
			76% 0,
			78% 0.5%,
			79.5% 1.5%,
			/* diagonal */
			98% 26%,
			/* rounded bend into right edge */
			99% 27.5%,
			99.5% 28.5%,
			100% 30%,
			/* right edge → bottom */
			100% 100%,
			/* bottom edge → left */
			0 100%);
}

.team-card:hover .team-card-image {
	/* border-color: var(--k7-red); */
}

.team-card-name {
	color: var(--k7-white);
	font-family: var(--k7-font-heading);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-align: left;
	margin: 0 0 6px;
}

.team-card-role {
	color: var(--k7-gray);
	font-family: var(--k7-font-body);
	font-size: 16px;
	text-align: left;
	margin: 0;
	line-height: 1.4;
}

/* Partner Cards — overlay style */
.partner-card .partner-card-inner {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background-color: var(--k7-bg-light);
}

/* Orange border that follows the overlay clip-path */
.partner-card-overlay::before {
	content: '';
	position: absolute;
	inset: 0;

	pointer-events: none;
	z-index: 1;

	background: rgba(0, 0, 0, 0.8);
	z-index: -1;
	top: 3px;
	width: 100%;
	height: 98%;
	border-radius: 17px 0 0;
	clip-path: polygon(0 1%, 52% 0, 66% 33%, 100% 33%, 100% 102%, 0 100%);
}

.partner-card .team-card-image {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	margin: 0;
	border-radius: 0;
	border: none;
}

.partner-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px 20px 20px;
	background-color: #ee293421;
	clip-path: polygon(0 1%, 52% 0, 66% 33%, 100% 33%, 100% 102%, 0 100%);
	border-radius: 20px;
	border-radius: 17px 0 0;
	min-height: 120px;
}

.partner-card .team-card-name {
	color: var(--k7-white);
	font-family: var(--k7-font-heading);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-align: left;
	margin: 0 0 6px;
}

.partner-card .team-card-role {
	color: var(--k7-gray);
	font-family: var(--k7-font-body);
	font-size: 16px;
	text-align: left;
	margin: 0;
	line-height: 1.4;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
	background-color: var(--k7-bg-card);
	padding: 64px 48px 0;
	border-top: none;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 48px;
	padding-bottom: 48px;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-brand .footer-logo {
	margin-bottom: 4px;
	font-size: 2rem;
}

.footer-brand .footer-logo img {
	height: 71px;
	width: auto;
}

.footer-brand-label {
	font-family: var(--k7-font-body);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--k7-white);
	letter-spacing: 0.0175em;
	margin-bottom: 16px;
}

.footer-brand .footer-tagline {
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: var(--k7-gray-light);
	line-height: 1.7;
	margin: 0;
}

.footer-col h4 {
	font-family: var(--k7-font);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0 0 20px;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul li a {
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: var(--k7-gray-light);
	transition: color 0.2s ease;
}

.footer-col ul li a:hover {
	color: var(--k7-white);
}

/* Footer Quick Links — 2-column layout */
.footer-links-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 24px;
}

/* Footer Contact */
.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 0.875rem;
	color: var(--k7-gray);
}

.footer-contact-item svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: var(--k7-gray);
}

/* Multi-line address: keep the pin icon aligned to the first line instead of
   centered across both lines. */
.footer-contact-item--address {
	align-items: flex-start;
}

.footer-contact-item--address svg {
	margin-top: 2px;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.footer-social a,
.footer-social .footer-social-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--k7-border);
	border-radius: 6px;
	color: var(--k7-gray);
	transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
	border-color: var(--k7-red);
	color: var(--k7-white);
}

.footer-social a svg,
.footer-social .footer-social-placeholder svg {
	width: 18px;
	height: 18px;
}

/* Footer Bottom Bar */
.footer-bottom {
	border-top: 0.5px solid rgba(235, 229, 214, 0.5);
	padding: 20px 0;
}

.footer-bottom .k7-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-bottom-left {
	font-size: 0.8125rem;
	color: var(--k7-gray);
}

.footer-bottom-right {
	display: flex;
	gap: 24px;
}

.footer-bottom-right a {
	font-size: 0.8125rem;
	color: var(--k7-gray);
}

.footer-bottom-right a:hover {
	color: var(--k7-white);
}

/* ==========================================================================
   COURSES LISTING PAGE
   ========================================================================== */

.page-template-page-courses,
.page-template-page-courses #page,
.page-template-page-courses #content,
.page-template-page-courses #primary {
	background-color: var(--k7-bg) !important;
}

.courses-hero {
	position: relative;
	height: 362px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	background-color: var(--k7-bg);
	text-align: left !important;
	width: 100%;
	min-width: 100vw;
}

.courses-hero *,
.courses-hero h1,
.courses-hero p {
	text-align: left !important;
}

.courses-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%);
	z-index: 1;

}

/* .courses-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 180px;
	height: 180px;
	background-color: var(--k7-bg);
	clip-path: path('M 180 0 L 30 150 Q 10 180, 0 180 L 180 180 Z');
	z-index: 2;
} */

.courses-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(0% 0%,
			100% 0%,
			100% 51.4%,
			87.7% 94.1%,
			83.8% 100%,
			0% 100%);

}

.courses-hero .k7-container {
	position: relative;
	z-index: 2;
	padding-left: 0px;
	padding-right: 0px;
	text-align: left !important;
	width: 100%;
	margin: auto;
}

.courses-hero h1 {
	font-family: var(--k7-font-heading);
	font-size: 60px;
	font-weight: 700;
	margin: 0 0 16px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-align: left !important;
}

.courses-hero .hero-subtitle {
	font-family: var(--k7-font-body);
	font-size: 20px;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	max-width: 620px;
	line-height: 1.6;
	/* font-style: italic; */
	text-align: left !important;
}

.courses-hero .hero-red-line {
	display: none;
}

/* Section Header — red square + title */
.courses-section-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 40px;
}

.courses-red-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: var(--k7-red);
	border-radius: 3px;
	flex-shrink: 0;
	clip-path: polygon(0 0, 100% 0, 34% 100%, 0% 100%);
	position: relative;
	top: -2px;

}

.courses-section-header h2 {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 600;
	margin: 0;
	color: var(--k7-white);
}

.courses-list-section {
	padding: 64px 0;
	background-color: var(--k7-bg);
}

/* Course Card */
.course-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	background-color: var(--k7-bg);
	border: none;
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 75px;
}

.course-card:last-child {
	margin-bottom: 0;
}

/* Alternating layout: even cards (2nd, 4th…) = text left, image right */
.course-card:nth-of-type(even) .course-card-image {
	order: 2;
}

.course-card:nth-of-type(even) .course-card-content {
	order: 1;
}

.course-card-image {
	position: relative;
	overflow: hidden;
	/* max-height: 450px; */
	clip-path: polygon(0% 1.957%,
			1.603% 0%,
			90.002% 0%,
			91.349% 0.898%,
			99.745% 16.824%,
			100% 17.883%,
			100% 98.043%,
			98.397% 100%,
			30.893% 100%,
			29.692% 99.338%,
			27.729% 96.623%,
			26.528% 95.961%,
			16.416% 95.961%,
			15.215% 96.623%,
			13.252% 99.338%,
			12.051% 100%,
			1.603% 100%,
			0% 98.043%);
	max-height: 600px;
}

.course-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 23px;
}

.course-card-content {
	padding: 32px;
	display: flex;
	flex-direction: column;
}

.course-card-content h3 {
	font-family: var(--k7-font-heading);
	font-size: 1.375rem;
	font-weight: 700;
	margin: 0 0 16px;
	line-height: 1.3;
}

.course-card-content h3 a {
	color: var(--k7-white);
	transition: color 0.2s ease;
	font-size: 36px;
	font-weight: 500;
}

.course-card-content h3 a:hover {
	color: var(--k7-red);

}

.course-modules {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.course-modules li {
	font-family: var(--k7-font-body);
	font-size: 21px;
	color: var(--k7-white);
	padding: 2px 0;
	padding-left: 16px;
	position: relative;
}

.course-modules li::before {
	content: '\2022';
	position: absolute;
	left: 0;
	color: var(--k7-white);
}

.course-desc {
	font-family: var(--k7-font-body);
	font-size: 21px;
	color: var(--k7-gray-light);
	line-height: 1.7;
	margin: 0 0 12px;
}

.course-learn-more,
.course-learn-more:visited,
.course-learn-more:hover,
.course-learn-more:active {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	font-family: var(--k7-font-heading);
	font-size: 18px;
	font-weight: 600;
	color: var(--k7-red) !important;
	text-decoration: none;
}

.course-card-divider {
	width: 100%;
	height: 1px;
	background-color: var(--k7-gray);
	margin: 20px 0 0;
}

.course-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
}

.course-price {
	font-family: var(--k7-font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--k7-white);
}

.course-cta,
.course-cta:visited,
.course-cta:hover,
.course-cta:active {
	display: inline-flex;
	align-items: center;
	padding: 14px 32px;
	background-color: var(--k7-red);
	color: var(--k7-white) !important;
	font-family: var(--k7-font-heading);
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.course-cta:hover {
	background-color: var(--k7-red-dark);
}

.no-courses {
	font-family: var(--k7-font-body);
	font-size: 1rem;
	color: var(--k7-gray);
	text-align: center;
	padding: 48px 0;
}

/* ==========================================================================
   SINGLE COURSE PAGE
   ========================================================================== */

/* Hero */
.course-hero {
	position: relative;
	height: 362px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	background-color: var(--k7-bg);
	text-align: left !important;
	width: 100%;
	min-width: 100vw;
}

.course-hero *,
.course-hero h1,
.course-hero p {
	text-align: left !important;
}

.course-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%);
	z-index: 1;
}

/* .course-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 180px;
	height: 180px;
	background-color: var(--k7-bg);
	clip-path: path('M 180 0 L 30 150 Q 10 180, 0 180 L 180 180 Z');
	z-index: 2;
} */

.course-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(0% 0%,
			100% 0%,
			100% 51.4%,
			87.7% 94.1%,
			83.8% 100%,
			0% 100%);

}

.course-hero .k7-container {
	position: relative;
	z-index: 2;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	text-align: left !important;
	width: 100%;
}

.course-breadcrumb {
	background-color: var(--k7-bg);
	padding: 48px 0;
}

.course-breadcrumb .k7-container {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
}

.course-breadcrumb a,
.course-breadcrumb a:visited {
	color: var(--k7-white);
	transition: color 0.2s ease;
}

.course-breadcrumb a:hover {
	color: var(--k7-gray-light);
}

.breadcrumb-sep {
	color: var(--k7-red);
}

.breadcrumb-current {
	color: var(--k7-red);
}

.course-hero h1 {
	font-family: var(--k7-font-heading);
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0 0 16px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-align: left !important;
}

.course-hero .hero-subtitle {
	font-family: var(--k7-font-body);
	font-size: 20px;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	max-width: 620px;
	line-height: 1.6;
	text-align: left !important;
}

/* Main Description — 2 col */
.course-main-section {
	padding: 72px 0;
	background-color: var(--k7-bg);
}

.course-main-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.course-main-label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: var(--k7-gray-light);
}

.course_title {
	display: flex;
}

.course_title .courses-red-icon {
	position: relative;
	top: 9px;
	left: -15px;
}

.course-main-text h2 {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 24px;
	line-height: 1.25;
}

.course-main-body {
	font-family: var(--k7-font-body);
	font-size: 18px;
	color: var(--k7-gray-light);
	line-height: 1.8;
}

.course-main-body p {
	margin: 0 0 16px;
}

.course-main-body ul {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
}

.course-main-body ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	color: var(--k7-white);
}

.course-main-body ul li::before {
	content: '\2022';
	position: absolute;
	left: 0;
	color: var(--k7-red);
	font-weight: 700;
}

.course-outline-tab-panel-image img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	clip-path: polygon(0% 1.957%, 1.603% 0%, 90.002% 0%, 91.349% 0.898%, 99.745% 16.824%, 100% 17.883%, 100% 98.043%, 98.397% 100%, 30.893% 100%, 29.692% 99.338%, 27.729% 96.623%, 26.528% 95.961%, 16.416% 95.961%, 15.215% 96.623%, 13.252% 99.338%, 12.051% 100%, 1.603% 100%, 0% 98.043%);
	height: 580px;
}

.course-main-image img {
	width: 100%;
	border-radius: 12px;
	display: block;
	clip-path: polygon(0% 2.421%, 1.587% 0%, 81.769% 0%, 82.834% 0.626%, 99.478% 23.613%, 100% 25.408%, 100% 97.579%, 98.413% 100%, 21.893% 100%, 20.373% 98.279%, 16.214% 77.266%, 14.694% 75.545%, 1.587% 75.545%, 0% 73.123%);
	max-height: 470px;
	object-fit: cover;
}

/* About This Course */
.course-about-section {
	padding: 64px 0;
	background-color: var(--k7-bg);
}

.course-section-header {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 24px;
}

.course-section-header h2 {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 600;
	margin: 0;
	color: var(--k7-white);
}

.course-about-body {
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
	color: var(--k7-gray-light);
	line-height: 1.8;
	max-width: 960px;
}

.course-about-body p {
	margin: 0 0 16px;
	font-size: 16px;
}

/* Core Content — Accordion */
.course-core-section {
	padding: 64px 0;
	background-color: var(--k7-bg);
}

.course-accordion {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.accordion-item {
	border: 1px solid var(--k7-border);
	border-radius: 8px;
	overflow: hidden;
	transition: border-color 0.2s ease;
}

.accordion-item:has(.accordion-trigger[aria-expanded="true"]) {
	border-color: rgba(238, 41, 52, 0.4);
}

.accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	background: var(--k7-bg-card);
	border: none;
	color: var(--k7-white);
	font-family: var(--k7-font-heading);
	font-size: 24px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.accordion-trigger:hover {
	background-color: #222;
}

.accordion-chevron {
	transition: transform 0.3s ease;
	flex-shrink: 0;
	color: var(--k7-red);
}

.accordion-trigger[aria-expanded="true"] .accordion-chevron {
	transform: rotate(180deg);
}

.accordion-panel {
	padding: 0 24px 24px;
	background: var(--k7-bg-card);
	font-family: var(--k7-font-body);
	font-size: 18px;
	color: var(--k7-gray-light);
	line-height: 1.8;
	padding-top: 21px;
}

.accordion-panel[hidden] {
	display: none;
}

.accordion-panel p {
	margin: 0 0 12px;
}

.accordion-panel ul {
	list-style: none;
	padding: 0;
	margin: 0 0 12px;
}

.accordion-panel ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
	color: var(--k7-gray-light);
}

.accordion-panel ul li::before {
	content: '\2022';
	position: absolute;
	left: 0;
	color: var(--k7-white);
}

/* Course Outline — 2 col */
.course-outline-section {
	padding: 72px 0;
	background-color: var(--k7-bg);
}

.course-outline-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.course-outline-text h2 {
	display: none;
}

.course-outline-text h3 {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 24px;
	line-height: 1.3;
}

.course-outline-body {
	font-family: var(--k7-font-body);
	font-size: 16;
	color: var(--k7-gray-light);
	line-height: 1.8;
}

.course-outline-body ul {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
}

.course-outline-body li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
	color: var(--k7-white);
	font-size: 24px;
}

.course-outline-body li::before {
	content: '\2022';
	position: absolute;
	left: 0;
	color: var(--k7-white);
}

.course-outline-image img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	clip-path: polygon(0% 1.957%,
			1.603% 0%,
			90.002% 0%,
			91.349% 0.898%,
			99.745% 16.824%,
			100% 17.883%,
			100% 98.043%,
			98.397% 100%,
			30.893% 100%,
			29.692% 99.338%,
			27.729% 96.623%,
			26.528% 95.961%,
			16.416% 95.961%,
			15.215% 96.623%,
			13.252% 99.338%,
			12.051% 100%,
			1.603% 100%,
			0% 98.043%);
}

/* After the Course */
.course-after-section {
	padding: 72px 0;
	background-color: var(--k7-bg);
}

.course-after-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.course-after-card {
	/* background-color: var(--k7-bg-card); */
	border: 2px solid var(--k7-red);
	border-radius: 8px;
	padding: 32px;
}

.course-after-card h3 {
	font-family: var(--k7-font-heading);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0 0 16px;
	text-decoration-line: underline;
	text-decoration-color: var(--k7-red);
	text-decoration-thickness: 2px;
	text-underline-offset: 11px;
}

.course-after-card p {
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: var(--k7-gray-light);
	line-height: 1.7;
	margin: 0;
}

/* ==========================================================================
   PAYMENT PAGE
   ========================================================================== */

.payment-hero .k7-container {
	padding-bottom: 56px;
}

.payment-section {
	padding: 64px 0;
	background-color: var(--k7-bg);
}

.payment-heading {
	font-family: var(--k7-font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0 0 48px;
}

.payment-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: start;
}

/* Card Info */
.payment-card-info h3,
.payment-order-summary h3 {
	font-family: var(--k7-font-heading);
	font-size: 24;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0 0 12px;
}

.payment-divider {
	height: 1px;
	background-color: var(--k7-border);
	margin-bottom: 36px;
}

.payment-card-info .payment-divider {
	margin-bottom: 20px;
}

.form-group {
	margin-bottom: 16px;
}

.form-group label {
	display: block;
	font-family: var(--k7-font-body);
	font-size: 16px;
	color: var(--k7-gray-light);
	margin-bottom: 8px;
}

.form-group label .required {
	color: var(--k7-red);
}

.form-group input {
	width: 100%;
	padding: 14px 16px;
	background-color: var(--k7-bg-card);
	border: 1px solid var(--k7-border);
	border-radius: 6px;
	color: var(--k7-white) !important;
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
	outline: none;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.form-group input:focus {
	border-color: var(--k7-gray);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--k7-red);
	cursor: pointer;
}

.form-checkbox label {
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: var(--k7-gray-light);
	cursor: pointer;
}

.pay-button {
	width: 100%;
	padding: 16px;
	background: transparent;
	border: 2px solid var(--k7-red);
	border-radius: 8px;
	color: var(--k7-red);
	font-family: var(--k7-font-heading);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	margin-bottom: 16px;
}

.pay-button:hover {
	background-color: var(--k7-red);
	color: var(--k7-white);
	border-color: var(--k7-bg) !important;
}

.payment-disclaimer {
	font-family: var(--k7-font-body);
	font-size: 14px;
	color: var(--k7-gray);
	line-height: 1.6;
	margin: 0;
}

/* Validation Errors */
.input-error {
	border-color: var(--k7-red) !important;
	box-shadow: 0 0 0 1px var(--k7-red);
}

.field-error {
	display: block;
	color: var(--k7-red);
	font-size: 0.75rem;
	margin-top: 4px;
	font-family: var(--k7-font-body);
}

/* Order Summary */
.order-line-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.order-item-name {
	font-family: var(--k7-font-heading);
	font-size: 18px;
	font-weight: 600;
	color: var(--k7-white);
}

.order-item-price {
	font-family: var(--k7-font-heading);
	font-size: 1rem;
	font-weight: 600;
	color: var(--k7-red);
}

.discount-row {
	display: flex;
	gap: 12px;
	margin-bottom: 40px;
}

.discount-row input {
	flex: 1;
	padding: 15px 16px;
	background-color: var(--k7-bg-card);
	border: 1px solid var(--k7-border);
	border-radius: 6px;
	color: var(--k7-white) !important;
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	outline: none;
	box-sizing: border-box;
}

.discount-row input:focus {
	border-color: var(--k7-gray);
}

.discount-apply {
	padding: 12px 24px;
	background-color: var(--k7-red);
	border: none;
	border-radius: 8px;
	color: var(--k7-white);
	font-family: var(--k7-font-heading);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.discount-apply:hover {
	background-color: var(--k7-red-dark);
}

.order-totals {
	border-top: 1px solid var(--k7-border);
	padding-top: 30px;
}

.order-total-line {
	display: flex;
	justify-content: space-between;
	font-family: var(--k7-font-body);
	font-size: 16px;
	color: var(--k7-gray-light);
	margin-bottom: 24px;
}

.course-main-image {
	position: relative;
}

.course-main-image_logo {
	position: absolute;
	width: 146px !important;
	bottom: -12px;
	left: -14px;
	padding: 28px;

}

.order-total-final {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--k7-border);
}

.total-label {
	display: block;
	font-family: var(--k7-font-heading);
	font-size: 1rem;
	font-weight: 600;
	color: var(--k7-white);
}

.total-tax-note {
	display: block;
	font-family: var(--k7-font-body);
	font-size: 16px;
	color: var(--k7-gray);
	margin-top: 4px;
}

.total-amount {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 700;
	color: var(--k7-red);
}

/* Loading Spinner */
.payment-loading {
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.payment-spinner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.spinner-svg {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Thank You */
.payment-thankyou {
	text-align: center;
}

.thankyou-heading {
	font-family: var(--k7-font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0 0 40px;
}

.thankyou-card {
	max-width: 560px;
	margin: 0 auto 40px;
	background-color: var(--k7-bg);
	border: none;
	border-radius: 0;
	padding: 48px 40px;
	text-align: left;
}

.thankyou-checkmark {
	margin-bottom: 32px;
	text-align: center;

}

.thankyou-checkmark svg {
	width: 150px;
	height: 150px;
}

.thankyou-card h3 {
	font-family: var(--k7-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0 0 12px;
}

.thankyou-instructions {
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: var(--k7-gray);
	line-height: 1.6;
	margin: 0 0 32px;
}

.login-detail {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 8px;
	padding: 12px 0;
	border-top: 1px solid var(--k7-border);
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
}

.login-label {
	color: var(--k7-gray);
}

.login-value {
	color: var(--k7-white);
	font-weight: 600;
}

.login-link {
	color: var(--k7-red) !important;
	word-break: break-all;
}

.login-link:visited {
	color: var(--k7-red) !important;
}

.copy-btn {
	background: none;
	border: none;
	color: var(--k7-gray);
	cursor: pointer;
	padding: 4px;
	transition: color 0.2s ease;
	display: inline-flex;
}

.copy-btn:hover {
	color: var(--k7-white);
}

.thankyou-cta {
	display: block;
	max-width: 560px;
	margin: 0 auto 16px;
	padding: 18px;
	background-color: var(--k7-red);
	color: var(--k7-white) !important;
	font-family: var(--k7-font-heading);
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	text-align: center;
	transition: background-color 0.2s ease;
}

.thankyou-cta:visited {
	color: var(--k7-white) !important;
}

.thankyou-cta:hover {
	background-color: var(--k7-red-dark);
}

.thankyou-receipt {
	display: block;
	max-width: 560px;
	margin: 0 auto;
	padding: 16px;
	background: none;
	border: none;
	color: var(--k7-gray-light);
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
	cursor: pointer;
	text-align: center;
	width: 100%;
	transition: color 0.2s ease;
}

.thankyou-receipt:hover {
	color: var(--k7-white);
}

/* Payment Responsive */
@media (max-width: 768px) {
	.payment-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.payment-heading,
	.thankyou-heading {
		font-size: 1.75rem;
	}
}

/* ==========================================================================
   UNDERSCORES OVERRIDES
   ========================================================================== */

/* Reset default Underscores body/content styles */
html,
body,
#page,
.site {
	background-color: var(--k7-bg) !important;
	color: var(--k7-white);
}

.site-main {
	margin: 0;
	padding: 0;
	background-color: var(--k7-bg);
}

.site-content {
	background-color: var(--k7-bg);
}

/* Remove Underscores default navigation styling */
.main-navigation ul ul {
	box-shadow: none;
}

/* Remove Underscores default link colors */
.entry-content a,
.entry-summary a,
.comment-content a {
	color: var(--k7-red);
}

/* Remove default WordPress admin bar top margin conflict */
.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

/* ==========================================================================
   HOME PAGE
   ========================================================================== */

/* Hero */
.home-hero {
	position: relative;
	min-height: 710px;
	height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-color: var(--k7-bg);
}

.home-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.home-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgb(0 0 0 / 74%) 0%, rgba(0, 0, 0, 0.35) 50%, rgb(0 0 0 / 29%) 100%);
	z-index: 1;
}

.home-hero>.k7-container {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 163px 0 0px;
	/* position: relative;
	z-index: 2;
	max-width: none;
	margin: 0;
	padding: 137px 48px 0 94px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0px;
	justify-content: flex-start;
	align-items: flex-start; */
}

.home-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 9px 17px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	font-family: var(--k7-font-ui);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.025em;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	margin-bottom: 29px;
	align-self: flex-start;
}

.home-hero-label::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--k7-red-accent);
	display: inline-block;
	flex-shrink: 0;
}

.home-hero h1 {
	font-family: var(--k7-font-heading);
	font-size: 64px;
	font-weight: 700;
	color: var(--k7-white);
	line-height: 1.1;
	letter-spacing: -0.025em;
	margin: 0 0 29px;
	max-width: 768px;
}

.home-hero-subtitle {
	font-family: var(--k7-font-ui);
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.625;
	letter-spacing: -0.009em;
	margin: 0 0 29px;
	max-width: 554px;
}

.home-hero-cta {
	display: inline-flex;
	align-items: center;
	padding: 16px 24px;
	background-color: var(--k7-red);
	color: var(--k7-white);
	font-family: var(--k7-font-heading);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.025em;
	border-radius: 10px;
	text-decoration: none;
	transition: background-color 0.2s;
	align-self: flex-start;
}

.home-hero-cta:hover {
	background-color: var(--k7-red-dark);
	color: var(--k7-white);
}

/* Stats Row (inside hero, no background strip) */
.home-hero-stats {
	position: relative;
	z-index: 2;
	width: 100%;
	margin-top: auto;
	padding-bottom: 80px;
}

.home-hero-stats>.k7-container {
	margin: auto;
	padding: 0 0;
}

.home-hero-stats-inner {
	display: flex;
	align-items: stretch;
	gap: 48px;
	max-width: 58%;
	margin-top: 70px;
}

.home-hero-stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding-top: 16px;
	position: relative;
}

.home-hero-stat::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 48px;
	height: 1px;
	background-color: var(--k7-red-accent);
}

.home-hero-stat-number {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 700;
	color: var(--k7-white);
	line-height: 1.11;
	letter-spacing: -0.004em;
	margin-bottom: 8px;
}

.home-hero-stat-label {
	font-family: var(--k7-font-body);
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 0.025em;
	line-height: 1.43;
}

/* Our Services */
.home-services {
	padding: 100px 0;
	background-color: var(--k7-bg);
}

.home-services-layout {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: stretch;
}

.home-services-title-col {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 45px 0;
}

.home-services-heading {
	font-family: var(--k7-font-heading);
	font-size: 93px;
	font-weight: 600;
	color: var(--k7-white);
	line-height: 1.25;
	margin: 0;
}

.home-services-grid {
	display: contents;
}

.home-service-card-wrap {
	position: relative;
}

.home-service-card {
	background-color: #1A1A1A;
	padding: 25px 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 383px;
	clip-path: path("M0.0006 34.4403C0.0006 15.4195 14.6727 0 32.7715 0H282.307C290.951 0 299.244 3.58897 305.382 9.9854L389.304 97.4462C395.51 103.913 399 112.717 399 121.901L398.999 348.56C398.999 367.58 384.327 383 366.229 383H32.7708C14.672 383 0 367.58 0 348.56L0.0006 34.4403Z");
	border-radius: 24px;
}

.home-service-card::before {
	content: none;
}

.home-service-icon {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--k7-white);
}

.home-service-icon svg {
	width: 58px;
	height: 58px;
	display: block;
}

.home-service-number {
	position: absolute;
	top: 8px;
	right: 0;
	font-family: var(--k7-font-ui);
	font-size: 48px;
	font-weight: 700;
	color: var(--k7-white);
	line-height: 1;
	letter-spacing: -0.003em;
	z-index: 2;
	pointer-events: none;
}

.home-service-card h3 {
	font-family: var(--k7-font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0;
	line-height: 1.4;
	letter-spacing: -0.008em;
}

.home-service-desc {
	font-family: var(--k7-font-body);
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.42;
	letter-spacing: -0.01em;
	flex: 1;
}

.home-service-desc p {
	margin: 0 0 14px;
}

.home-service-desc ul {
	padding-left: 0;
	margin: 8px 0 0;
	list-style: none;
}

.home-service-desc ul li {
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.6);
	padding-left: 16px;
	position: relative;
	cursor: pointer;
	transition: color 0.2s;
	font-family: var(--k7-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.14;
	letter-spacing: -0.011em;
}

.home-service-desc ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--k7-red-accent);
}

.home-service-desc ul li:hover {
	color: var(--k7-red);
}

.home-service-desc ul li a {
	color: inherit;
}

.home-service-desc ul li a:hover {
	color: var(--k7-red);
}

.home-service-link {
	font-family: var(--k7-font-heading);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.025em;
	color: var(--k7-white);
	text-decoration: none;
	margin-top: auto;
	transition: color 0.2s;
}

.home-service-link:hover {
	color: var(--k7-red);
}

/* Kotter Banner */
.home-kotter {
	background-color: var(--k7-bg);
	padding: 60px 0;
}

.home-kotter-inner {
	position: relative;
	overflow: hidden;
	height: 300px;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 80px 0 50px;
	-webkit-mask-image: url('../images/kotter-shape-mask.svg');
	mask-image: url('../images/kotter-shape-mask.svg');
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.home-kotter-image {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.home-kotter-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-kotter-inner::before {
	content: '';
	position: absolute;
	inset: 0;
	/* background:
		linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 89%),
		linear-gradient(162deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 100%); */
	background: linear-gradient(to left, #100c0cd1, #00000085);
	z-index: 1;
}

.home-kotter-corner-tl {
	display: none;
}

.home-kotter-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 30px;
}

.home-kotter-content h2 {
	font-family: var(--k7-font-heading);
	font-size: 32px;
	font-weight: 500;
	color: var(--k7-white);
	line-height: 1.25;
	letter-spacing: -0.05em;
	margin: 0;
}

.home-kotter-content p {
	font-family: var(--k7-font-heading);
	font-size: 16px;
	font-weight: 500;
	color: var(--k7-white);
	line-height: 1.25;
	letter-spacing: 0.022em;
	margin: 0;
}

.home-kotter-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: right;
}

.home-kotter-cta {
	display: inline-flex;
	align-items: center;
	padding: 16px 24px;
	background-color: var(--k7-red);
	color: var(--k7-white);
	font-family: var(--k7-font-heading);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.025em;
	border-radius: 10px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s;
	flex-shrink: 0;
}

.home-kotter-cta:hover {
	background-color: var(--k7-red-dark);
	color: var(--k7-white);
}

/* Service Transformation */
.home-transform {
	padding: 100px 0;
	background-color: var(--k7-bg);
}

.mobile_only {
	display: none;
}

.home-transform-col-header .mobile_only {
	display: none;
}

.home-transform-heading {
	font-family: var(--k7-font-heading);
	font-size: 46px;
	font-weight: 600;
	color: var(--k7-white);
	line-height: 1.25;
	text-align: center;
	margin: 0 0 40px;
}

.home-transform-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.home-transform-col {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.home-transform-col-header {
	position: relative;
	height: 168px;
	padding: 24px 28px;
	display: flex;
	/* align-items: center; */
	padding-top: 35px;
	justify-content: flex-start;
}

.home-transform-col-shape {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.home-transform-col-title {
	font-family: var(--k7-font-heading);
	font-size: 24px;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0;
	line-height: 1.25;
	position: relative;
	z-index: 1;
	max-width: 140px;
}

.home-transform-col-number {
	position: absolute;
	bottom: 0;
	right: 8px;
	font-family: var(--k7-font-heading);
	font-size: 40px;
	font-weight: 400;
	color: var(--k7-red);
	line-height: 1;
	z-index: 2;
}

.home-transform-col-content {
	font-family: var(--k7-font-body);
	font-size: 14px;
	font-weight: 400;
	color: var(--k7-white);
	line-height: 1.71;
}

.home-transform-col-content ul {
	/* list-style: none; */
	padding-left: 0;
	margin: 0;
	font-family: var(--k7-font-body);
}

.home-transform-col-content ul li {
	margin-bottom: 4px;
}

.home-transform-col-content p {
	margin: 0 0 4px;
}

/* Trusted By */
.home-trusted {
	padding: 50px 0;
	background-color: var(--k7-bg);
}

.home-trusted-heading {
	font-family: var(--k7-font-heading);
	font-size: 46px;
	font-weight: 600;
	color: var(--k7-white);
	line-height: 1.25;
	text-align: center;
	margin: 0 0 40px;
}

.home-trusted-logos {
	padding: 40px 0;
	background-color: var(--k7-bg);
	position: relative;
	overflow: hidden;
}

.home-trusted-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 110px;
}

.home-trusted-logo img {
	max-height: 110px;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: opacity 0.2s;
}

.home-trusted-logo img:hover {
	opacity: 0.8;
}

.home-trusted-logos .swiper-button-prev,
.home-trusted-logos .swiper-button-next {
	display: none;
}

/* Latest Articles */
.home-articles {
	padding: 50px 0;
	background-color: var(--k7-bg);
}

.home-articles-heading {
	font-family: var(--k7-font-heading);
	font-size: 46px;
	font-weight: 600;
	color: var(--k7-white);
	line-height: 1.25;
	text-align: center;
	margin: 0 0 40px;
}

.home-articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

/* Outer wrapper — shows red border on hover via its own clip-path + background */
.home-article-card-wrap {
	padding: 2px;
	background-color: transparent;
	transition: background-color 0.3s, transform 0.2s;
	clip-path: polygon(0 14px, 4px 6px, 9px 1px, 14px 0,
			calc(100% - 111px) 0,
			calc(100% - 61px) 28px,
			calc(100% - 14px) 28px, calc(100% - 3px) 32px, calc(100% - 1px) 38px, 100% 44px,
			100% calc(100% - 14px), calc(100% - 3px) calc(100% - 6px), calc(100% - 9px) calc(100% - 1px), calc(100% - 14px) 100%,
			14px 100%, 6px calc(100% - 3px), 1px calc(100% - 9px), 0 calc(100% - 14px));
}

.home-article-card-wrap:hover {
	background-color: var(--k7-red);
	transform: translateY(-2px);
}

/* Inner card — background + same clip-path, inset by the 2px wrapper padding */
.home-article-card {
	display: flex;
	flex-direction: column;
	padding: 16px 0;
	gap: 24px;
	background-color: #1A1A1A;
	clip-path: polygon(0 14px, 4px 6px, 9px 1px, 14px 0,
			calc(100% - 111px) 0,
			calc(100% - 61px) 28px,
			calc(100% - 14px) 28px, calc(100% - 3px) 32px, calc(100% - 1px) 38px, 100% 44px,
			100% calc(100% - 14px), calc(100% - 3px) calc(100% - 6px), calc(100% - 9px) calc(100% - 1px), calc(100% - 14px) 100%,
			14px 100%, 6px calc(100% - 3px), 1px calc(100% - 9px), 0 calc(100% - 14px));
}

.home-article-header {
	padding: 0 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.home-article-date {
	font-family: var(--k7-font-body);
	font-size: 14px;
	font-weight: 400;
	color: var(--k7-white);
	opacity: 0.6;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.home-article-date::before {
	content: '';
	width: 16px;
	height: 16px;
	background-color: currentColor;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M12.67 2h-.67V.67a.67.67 0 0 0-1.33 0V2H5.33V.67a.67.67 0 0 0-1.33 0V2h-.67A2 2 0 0 0 1.33 4v9.33a2 2 0 0 0 2 2h9.34a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zM13.33 13.33H2.67V6h10.66v7.33z' fill='white'/></svg>") no-repeat center / contain;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M12.67 2h-.67V.67a.67.67 0 0 0-1.33 0V2H5.33V.67a.67.67 0 0 0-1.33 0V2h-.67A2 2 0 0 0 1.33 4v9.33a2 2 0 0 0 2 2h9.34a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zM13.33 13.33H2.67V6h10.66v7.33z' fill='white'/></svg>") no-repeat center / contain;
	flex-shrink: 0;
}

.home-article-title {
	font-family: var(--k7-font-heading);
	font-size: 18px;
	font-weight: 600;
	color: var(--k7-white);
	line-height: 1.25;
	margin: 0;
}

.home-article-image {
	height: 126px;
	overflow: hidden;
}

.home-article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.home-article-card-wrap:hover .home-article-image img {
	transform: scale(1.04);
}

.home-article-body {
	padding: 0 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 16px;
}

.home-article-title a {
	color: var(--k7-white);
	text-decoration: none;
	transition: color 0.3s;
}

.home-article-title a:hover,
.home-article-card-wrap:hover .home-article-title a {
	color: var(--k7-red);
}

.home-article-excerpt {
	font-family: var(--k7-font-body);
	font-size: 14px;
	font-weight: 400;
	color: var(--k7-white);
	line-height: 1.3;
	margin: 0;
	flex: 1;
}

.home-article-link {
	font-family: var(--k7-font-heading);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.025em;
	color: var(--k7-white);
	text-decoration: none;
	margin-top: auto;
	transition: color 0.2s;
}

.home-article-link:hover,
.home-article-card-wrap:hover .home-article-link {
	color: var(--k7-red);
}

/* Shared outlined button */
.home-btn-outline {
	display: inline-flex;
	align-items: center;
	padding: 16px 24px;
	border: 1px solid var(--k7-red);
	color: var(--k7-red) !important;
	background-color: transparent;
	font-family: var(--k7-font-heading);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.025em;
	border-radius: 10px;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
	min-width: 187px;
	justify-content: center;
}

.home-btn-outline:hover {
	background-color: var(--k7-red);
	color: var(--k7-white) !important;
}

.home-section-footer {
	text-align: center;
	margin-top: 40px;
}

/* Latest Courses */
.home-courses {
	padding: 50px 0 100px;
	background-color: var(--k7-bg);
}

.home-courses-heading {
	font-family: var(--k7-font-heading);
	font-size: 46px;
	font-weight: 600;
	color: var(--k7-white);
	line-height: 1.25;
	text-align: center;
	margin: 0 0 40px;
}

.home-courses-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.home-course-card {
	display: flex;
	flex-direction: column;
	transition: transform 0.2s;
	position: relative;
	background-color: #1A1A1A;
	border-radius: 20px;
	overflow: hidden;
}

.home-course-card:hover {
	transform: translateY(-2px);
}

.home-course-card-image {
	height: 220px;
	overflow: hidden;
}

.home-course-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-course-card-body {
	background-color: #1A1A1A;
	padding: 34px 24px 28px;
	min-height: 280px;
	margin-top: -80px;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 16px;
	clip-path: polygon(
			/* top-left rounded corner (20px) */
			0 20px,
			2px 14px,
			5px 9px,
			9px 5px,
			14px 2px,
			20px 0,
			/* top edge to trapezium cut start */
			calc(100% - 212px) 0,
			/* trapezium diagonal with rounded inner bend */
			calc(100% - 198px) 3px,
			calc(100% - 104px) 68px,
			calc(100% - 96px) 76px,
			calc(100% - 86px) 80px,
			/* top-right rounded corner (20px) */
			calc(100% - 20px) 80px,
			calc(100% - 14px) 82px,
			calc(100% - 9px) 85px,
			calc(100% - 5px) 89px,
			calc(100% - 2px) 94px,
			100% 100px,
			/* bottom-right rounded corner (20px) */
			100% calc(100% - 20px),
			calc(100% - 2px) calc(100% - 14px),
			calc(100% - 5px) calc(100% - 9px),
			calc(100% - 9px) calc(100% - 5px),
			calc(100% - 14px) calc(100% - 2px),
			calc(100% - 20px) 100%,
			/* bottom-left rounded corner (20px) */
			20px 100%,
			14px calc(100% - 2px),
			9px calc(100% - 5px),
			5px calc(100% - 9px),
			2px calc(100% - 14px),
			0 calc(100% - 20px));
}

.home-course-card-body h3 {
	font-family: var(--k7-font-heading);
	font-size: 28px;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0;
	line-height: 1.25;
	padding-inline-end: 132px
}

.home-course-modules {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
}

.home-course-modules li {
	font-family: var(--k7-font-body);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	padding: 4px 0 4px 16px;
	position: relative;
	line-height: 1.43;
}

.home-course-modules li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--k7-red-accent);
}

.home-course-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	background-color: var(--k7-red);
	color: var(--k7-white);
	font-family: var(--k7-font-heading);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.025em;
	border-radius: 10px;
	text-decoration: none;
	transition: background-color 0.2s;
}

.home-course-cta:hover {
	background-color: var(--k7-red-dark);
	color: var(--k7-white);
}

/* ==========================================================================
   CONTACT US PAGE
   ========================================================================== */

/* Hero */
.contact-hero {
	position: relative;
	height: 362px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	background-color: var(--k7-bg);
	text-align: left !important;
	width: 100%;
	min-width: 100vw;
}

.contact-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	clip-path: polygon(0% 0%,
			100% 0%,
			100% 51.4%,
			87.7% 94.1%,
			83.8% 100%,
			0% 100%);

}

.contact-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%);
	z-index: 1;
}

/* .contact-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 180px;
	height: 180px;
	background-color: var(--k7-bg);
	clip-path: path('M 180 0 L 30 150 Q 10 180, 0 180 L 180 180 Z');
	z-index: 2;
} */

.contact-hero .k7-container {
	position: relative;
	z-index: 3;
	padding-bottom: 48px;
	text-align: left;
	width: 100%;
}

.contact-hero h1 {
	font-family: var(--k7-font-heading);
	font-size: 60px;
	font-weight: 700;
	margin: 0 0 16px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-align: left !important;
}

.contact-hero .hero-subtitle {
	font-family: var(--k7-font-body);
	font-size: 18px;
	color: var(--k7-gray-light);
	margin: 0;
}

/* Contact Section */
.contact-section {
	background: var(--k7-bg);
	padding: 50px 0;
}

.contact-page-heading {
	font-family: var(--k7-font-heading);
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0 0 48px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
}

/* Left Column — Get in Touch */
.contact-info h3,
.contact-form-wrapper h3 {
	font-family: var(--k7-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0 0 32px;
}

.contact-detail {
	display: flex;
	gap: 16px;
	margin-bottom: 8px;
}

.contact-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-detail h4 {
	font-family: var(--k7-font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0 0 4px;
}

.contact-detail p {
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
	color: var(--k7-gray-light);
	margin: 0;
	line-height: 1.6;
}

.contact-detail a {
	color: var(--k7-gray-light);
	text-decoration: none;
	transition: color 0.2s;
}

.contact-detail a:hover {
	color: var(--k7-red);
}

.contact-info {
	padding-top: 70px;
	display: flex;
	flex-direction: column;
}

/* Newsletter */
.contact-newsletter {
	margin-top: auto;
}

.contact-newsletter h4 {
	font-family: var(--k7-font-heading);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0 0 8px;
}

.contact-newsletter p {
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: var(--k7-gray);
	margin: 0 0 16px;
}

.newsletter-form {
	display: flex;
	gap: 12px;
}

.newsletter-form input {
	flex: 1;
	background: var(--k7-bg-card);
	border: 1px solid var(--k7-border);
	border-radius: 8px;
	padding: 12px 16px;
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: var(--k7-white) !important;
	outline: none;
	transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
	color: var(--k7-gray);
}

.newsletter-form input:focus {
	border-color: var(--k7-red);
}

.newsletter-btn {
	background: transparent;
	border: 1px solid var(--k7-red);
	border-radius: 8px;
	padding: 12px 24px;
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: var(--k7-red);
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
}

.newsletter-btn:hover {
	background: var(--k7-red);
	color: var(--k7-white);
	border-color: var(--k7-red);
}

/* Right Column — Send a Message Form */
.contact-form-wrapper .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.contact-form-wrapper .form-group {
	margin-bottom: 16px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
	width: 100%;
	background: var(--k7-bg-card);
	border: 1px solid var(--k7-border);
	border-radius: 8px;
	padding: 14px 16px;
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
	color: var(--k7-white) !important;
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
	color: var(--k7-gray);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
	border-color: var(--k7-red);
}

.contact-form-wrapper textarea {
	resize: vertical;
	min-height: 140px;
}

.contact-submit {
	width: 100%;
	background: transparent;
	border: 1px solid var(--k7-red);
	border-radius: 8px;
	padding: 14px;
	font-family: var(--k7-font-body);
	font-size: 1rem;
	font-weight: 600;
	color: var(--k7-red);
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.contact-status {
	padding: 14px 18px;
	border-radius: 6px;
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
	line-height: 1.5;
	margin-bottom: 20px;
}

.contact-status--success {
	background-color: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.4);
	color: #86efac;
}

.contact-status--error {
	background-color: rgba(238, 41, 52, 0.1);
	border: 1px solid rgba(238, 41, 52, 0.4);
	color: #fca5a5;
}

/* ── Shared AJAX form status + spinner ── */

.k7-form-status {
	padding: 14px 18px;
	border-radius: 6px;
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
	line-height: 1.5;
	margin-bottom: 20px;
}

.k7-form-status--success {
	background-color: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.4);
	color: #86efac;
}

.k7-form-status--error {
	background-color: rgba(238, 41, 52, 0.1);
	border: 1px solid rgba(238, 41, 52, 0.4);
	color: #fca5a5;
}

.k7-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: k7-spin 0.6s linear infinite;
	vertical-align: middle;
}

@keyframes k7-spin {
	to {
		transform: rotate(360deg);
	}
}

.contact-submit:hover {
	background: var(--k7-red);
	color: var(--k7-white);
	border-color: var(--k7-bg);
}

/* ==========================================================================
   SERVICE INNER (breadcrumb + coming soon)
   ========================================================================== */

/* Service Inner — Hero */
.si-hero {
	position: relative;
	height: 362px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	background-color: var(--k7-bg);
	text-align: left !important;
	clip-path: polygon(0% 0%,
			100% 0%,
			100% 51.4%,
			87.7% 94.1%,
			83.8% 100%,
			0% 100%);
}

.si-hero *,
.si-hero h1,
.si-hero p {
	text-align: left !important;
}

.si-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%);
	z-index: 1;
}



.si-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.si-hero .k7-container {
	position: relative;
	z-index: 2;
	padding-left: 0;
	padding-right: 48px;
	text-align: left !important;
	width: 100%;
	margin: auto;

}

.si-hero h1 {
	font-family: var(--k7-font-heading);
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0 0 16px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-align: left !important;
}

.si-hero .si-hero-subtitle {
	font-family: var(--k7-font-body);
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	max-width: 620px;
	line-height: 1.6;

	text-align: left !important;
}

/* Service Inner — Content */
.si-section {
	background-color: var(--k7-bg);
	padding: 48px 0 100px;
}

.service-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 40px;
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
	flex-wrap: wrap;
}

.service-breadcrumb a {
	color: var(--k7-white);
}

.service-breadcrumb a:hover {
	color: var(--k7-red);
}

.service-breadcrumb .breadcrumb-arrow {
	color: var(--k7-red);
}

.service-breadcrumb .breadcrumb-current {
	color: var(--k7-red);
}

.si-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	margin-bottom: 80px;
}

.si-content-left {
	display: flex;
	flex-direction: column;
}

.si-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}

.si-red-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: var(--k7-red);
	border-radius: 3px;
	flex-shrink: 0;
	clip-path: polygon(0 0, 100% 0, 34% 100%, 0% 100%);
	position: relative;
	top: -2px;
}

.si-title {
	font-family: var(--k7-font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0;
	line-height: 1.2;
}

.si-content-text {
	font-family: var(--k7-font-body);
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.75;
}

.si-content-text p {
	margin: 0 0 16px;
}

.si-content-text p:last-child {
	margin-bottom: 0;
}

.si-content-image {
	overflow: hidden;
}

.si-content-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 630 413' preserveAspectRatio='none'><path d='M0 10C0 4.47715 4.47715 0 10 0H515.146C517.626 0 520.018 0.922039 521.857 2.58702L626.712 97.5228C628.806 99.4185 630 102.111 630 104.936V403C630 408.523 625.523 413 620 413L110.257 413C106.175 413 102.502 410.518 100.979 406.731L86.0209 369.53C84.4978 365.742 80.8253 363.26 76.7428 363.26L10 363.26C4.47715 363.26 0 358.783 0 353.26V10Z' fill='black'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 630 413' preserveAspectRatio='none'><path d='M0 10C0 4.47715 4.47715 0 10 0H515.146C517.626 0 520.018 0.922039 521.857 2.58702L626.712 97.5228C628.806 99.4185 630 102.111 630 104.936V403C630 408.523 625.523 413 620 413L110.257 413C106.175 413 102.502 410.518 100.979 406.731L86.0209 369.53C84.4978 365.742 80.8253 363.26 76.7428 363.26L10 363.26C4.47715 363.26 0 358.783 0 353.26V10Z' fill='black'/></svg>");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

/* Service Inner — Sub-Services Grid */
.si-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.si-card {
	background-color: var(--k7-bg-card);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 220px;
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 302 283' preserveAspectRatio='none'><path d='M0.0016 9.99994C0.0017 4.47712 4.47882 0 10.0016 0H225.304C229.1 0 232.569 2.14897 234.258 5.54771L254.1 45.4523C255.79 48.851 259.259 51 263.054 51L292 51C297.523 51 302 55.4772 302 61V273C302 278.523 297.523 283 292 283H10.0001C4.47718 283 0 278.523 0 273L0.0016 9.99994Z' fill='black'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 302 283' preserveAspectRatio='none'><path d='M0.0016 9.99994C0.0017 4.47712 4.47882 0 10.0016 0H225.304C229.1 0 232.569 2.14897 234.258 5.54771L254.1 45.4523C255.79 48.851 259.259 51 263.054 51L292 51C297.523 51 302 55.4772 302 61V273C302 278.523 297.523 283 292 283H10.0001C4.47718 283 0 278.523 0 273L0.0016 9.99994Z' fill='black'/></svg>");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.si-card h3 {
	font-family: var(--k7-font-heading);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0;
	line-height: 1.3;
	padding-inline-end: 45px;
}

.si-card p {
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	margin: 0;
}

.si-card--link {
	text-decoration: none;
	transition: background-color 0.3s, border-color 0.3s;
	cursor: pointer;
}

.si-card--link:hover {
	background-color: var(--k7-red);
	border-color: var(--k7-red);
}

.si-card--link:hover h3 {
	color: var(--k7-white);
}

.si-card--link:hover p {
	color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   SUB-SERVICE INNER PAGE
   ========================================================================== */

/* Sub-Service Inner — Hero (mirrors .si-hero) */
.ssi-hero {
	position: relative;
	height: 362px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	background-color: var(--k7-bg);
	text-align: left !important;
	clip-path: polygon(0% 0%,
			100% 0%,
			100% 51.4%,
			87.7% 94.1%,
			83.8% 100%,
			0% 100%);
}

.ssi-hero *,
.ssi-hero h1,
.ssi-hero p {
	text-align: left !important;
}

.ssi-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%);
	z-index: 1;
}

.ssi-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ssi-hero .k7-container {
	position: relative;
	z-index: 2;
	padding-left: 0;
	padding-right: 48px;
	text-align: left !important;
	width: 100%;
	margin: auto;
}

.ssi-hero h1 {
	font-family: var(--k7-font-heading);
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0 0 16px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-align: left !important;
}

.ssi-hero .ssi-hero-subtitle {
	font-family: var(--k7-font-body);
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	max-width: 620px;
	line-height: 1.6;
	text-align: left !important;
}

.ssi-section {
	background-color: var(--k7-bg);
	padding: 48px 0 100px;
}

.ssi-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	margin-bottom: 80px;
}

.ssi-content-left {
	display: flex;
	flex-direction: column;
}

.ssi-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}

.ssi-red-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: var(--k7-red);
	border-radius: 3px;
	flex-shrink: 0;
	clip-path: polygon(0 0, 100% 0, 34% 100%, 0% 100%);
	position: relative;
	top: -2px;
}

.ssi-title {
	font-family: var(--k7-font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0;
	line-height: 1.2;
}

.ssi-content-text {
	font-family: var(--k7-font-body);
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.75;
}

.ssi-content-text p {
	margin: 0 0 16px;
}

.ssi-content-text p:last-child {
	margin-bottom: 0;
}

.ssi-content-image {
	overflow: hidden;
}

.ssi-content-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 630 413' preserveAspectRatio='none'><path d='M0 10C0 4.47715 4.47715 0 10 0H515.146C517.626 0 520.018 0.922039 521.857 2.58702L626.712 97.5228C628.806 99.4185 630 102.111 630 104.936V403C630 408.523 625.523 413 620 413L110.257 413C106.175 413 102.502 410.518 100.979 406.731L86.0209 369.53C84.4978 365.742 80.8253 363.26 76.7428 363.26L10 363.26C4.47715 363.26 0 358.783 0 353.26V10Z' fill='black'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 630 413' preserveAspectRatio='none'><path d='M0 10C0 4.47715 4.47715 0 10 0H515.146C517.626 0 520.018 0.922039 521.857 2.58702L626.712 97.5228C628.806 99.4185 630 102.111 630 104.936V403C630 408.523 625.523 413 620 413L110.257 413C106.175 413 102.502 410.518 100.979 406.731L86.0209 369.53C84.4978 365.742 80.8253 363.26 76.7428 363.26L10 363.26C4.47715 363.26 0 358.783 0 353.26V10Z' fill='black'/></svg>");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

/* Sub-Service Cards Grid */
.ssi-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.ssi-card {
	background-color: var(--k7-bg-card);
	border: none !important;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 220px;
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 302 283' preserveAspectRatio='none'><path d='M0.0016 9.99994C0.0017 4.47712 4.47882 0 10.0016 0H225.304C229.1 0 232.569 2.14897 234.258 5.54771L254.1 45.4523C255.79 48.851 259.259 51 263.054 51L292 51C297.523 51 302 55.4772 302 61V273C302 278.523 297.523 283 292 283H10.0001C4.47718 283 0 278.523 0 273L0.0016 9.99994Z' fill='black'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 302 283' preserveAspectRatio='none'><path d='M0.0016 9.99994C0.0017 4.47712 4.47882 0 10.0016 0H225.304C229.1 0 232.569 2.14897 234.258 5.54771L254.1 45.4523C255.79 48.851 259.259 51 263.054 51L292 51C297.523 51 302 55.4772 302 61V273C302 278.523 297.523 283 292 283H10.0001C4.47718 283 0 278.523 0 273L0.0016 9.99994Z' fill='black'/></svg>");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.ssi-card h3 {
	font-family: var(--k7-font-heading);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0;
	line-height: 1.3;
	padding-inline-end: 45px;
}

.ssi-card p {
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	margin: 0;
}

.ssi-card--link {
	text-decoration: none;
	transition: background-color 0.3s, border-color 0.3s;
	cursor: pointer;
}

.ssi-card--link:hover {
	background-color: var(--k7-red);
	border-color: var(--k7-red);
}

.ssi-card--link:hover h3 {
	color: var(--k7-white);
}

.ssi-card--link:hover p {
	color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   SUB-SUB-SERVICE INNER PAGE (page-sub-sub-service.php)
   ========================================================================== */

.ssii-hero {
	position: relative;
	height: 362px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: var(--k7-bg);
	text-align: left !important;
	clip-path: polygon(0% 0%, 100% 0%, 100% 51.4%, 87.7% 94.1%, 83.8% 100%, 0% 100%);
}

.ssii-hero * {
	text-align: left !important;
}

.ssii-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ssii-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 1%, rgba(56, 57, 62, 0.4) 49%);
	z-index: 1;
}

.ssii-hero .k7-container {
	position: relative;
	z-index: 2;
	padding: 80px 48px 60px 87px;
	/* max-width: none; */
	width: 100%;
	margin: auto;
	padding-left: 0;
}

.ssii-hero h1 {
	font-family: var(--k7-font-heading);
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	color: var(--k7-white);
	margin: 0 0 24px;
	max-width: 768px;
}

.ssii-hero-subtitle {
	font-family: var(--k7-font-body);
	font-size: 20px;
	line-height: 1.625;
	color: var(--k7-white);
	margin: 0;
	max-width: 764px;
}

.ssii-section {
	background-color: var(--k7-bg);
	padding: 48px 0 80px;
}

.ssii-section .service-breadcrumb {
	margin-bottom: 40px;
}

.ssii-head-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}

.ssii-red-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: var(--k7-red);
	border-radius: 3px;
	flex-shrink: 0;
	clip-path: polygon(0 0, 100% 0, 34% 100%, 0% 100%);
	position: relative;
	top: -2px;
}

.ssii-h2 {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--k7-white);
	margin: 0;
}

/* Top section — text left, image right */
.ssii-top-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 45px;
	align-items: start;
	margin-bottom: 40px;
}

.ssii-top-text {
	display: flex;
	flex-direction: column;
}

.ssii-top-desc {
	font-family: var(--k7-font-body);
	font-size: 16px;
	line-height: 1.75;
	color: var(--k7-white);
}

.ssii-top-desc p {
	margin: 0 0 10px;
}

.ssii-top-desc p:last-child {
	margin-bottom: 0;
}

.ssii-top-image img {
	width: 100%;
	height: auto;
	display: block;
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 630 548' preserveAspectRatio='none'><path d='M0 10C0 4.47716 4.47715 0 10 0H514.313C517.283 0 520.099 1.31996 521.999 3.60244L627.686 130.571C629.181 132.367 630 134.631 630 136.968V538C630 543.523 625.523 548 620 548L110.919 548C106.513 548 102.626 545.117 101.348 540.9L85.6515 489.102C84.3738 484.885 80.4871 482.002 76.0813 482.002L9.99999 482.002C4.47715 482.002 0 477.524 0 472.002V10Z' fill='black'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 630 548' preserveAspectRatio='none'><path d='M0 10C0 4.47716 4.47715 0 10 0H514.313C517.283 0 520.099 1.31996 521.999 3.60244L627.686 130.571C629.181 132.367 630 134.631 630 136.968V538C630 543.523 625.523 548 620 548L110.919 548C106.513 548 102.626 545.117 101.348 540.9L85.6515 489.102C84.3738 484.885 80.4871 482.002 76.0813 482.002L9.99999 482.002C4.47715 482.002 0 477.524 0 472.002V10Z' fill='black'/></svg>");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

/* Methodology — image left, text right */
.ssii-method-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 45px;
	align-items: center;
	margin-bottom: 40px;
}

.ssii-method-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
}

.ssii-method-body {
	font-family: var(--k7-font-body);
	font-size: 16px;
	line-height: 1.75;
	color: var(--k7-white);
}

.ssii-method-body p {
	margin: 0 0 10px;
}

.ssii-method-body p:last-child {
	margin-bottom: 0;
}

/* Benefits cards */
.ssii-benefits-heading {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0 0 24px;
	text-align: center;
}

.ssii-benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.ssii-benefit-card {
	position: relative;
	min-height: 323px;
	display: flex;
}

.ssii-benefit-border {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.ssii-benefit-inner {
	position: relative;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	z-index: 1;
	width: 100%;
}

.ssii-benefit-inner h3 {
	font-family: var(--k7-font-heading);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--k7-cream);
	margin: 0;
	letter-spacing: -0.008em;
}

.ssii-benefit-inner p {
	font-family: var(--k7-font-ui);
	font-size: 14px;
	line-height: 1.43;
	color: var(--k7-cream);
	margin: 0;
	letter-spacing: -0.011em;
}

@media (max-width: 1024px) {
	.ssii-hero {
		height: 320px;
	}

	.ssii-hero .k7-container {
		padding: 64px 56px;
	}

	.ssii-hero h1 {
		font-size: 48px;
	}

	.ssii-top-grid,
	.ssii-method-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.ssii-method-grid .ssii-method-image {
		order: 2;
	}

	.ssii-benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.ssii-hero {
		height: 280px;
	}

	.ssii-hero .k7-container {
		padding: 48px 24px;
	}

	.ssii-hero h1 {
		font-size: 36px;
	}

	.ssii-hero-subtitle {
		font-size: 16px;
	}

	.ssii-section {
		padding: 48px 0 60px;
	}

	.ssii-section .service-breadcrumb {
		margin-bottom: 40px;
		flex-wrap: wrap;
	}

	.ssii-h2,
	.ssii-benefits-heading {
		font-size: 28px;
	}

	.ssii-top-desc {
		line-height: 1.9;
	}
}

@media (max-width: 480px) {
	.ssii-benefits-grid {
		grid-template-columns: 1fr;
	}

	.ssii-benefit-card {
		min-height: 280px;
	}
}

/* ==========================================================================
   SINGLE ARTICLE (post inner page)
   ========================================================================== */

/* Breadcrumb in post body — reuses .service-breadcrumb styles for consistency */
.post-article .service-breadcrumb {
	margin-bottom: 32px;
}

.post-breadcrumb a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.2s ease;
}

.post-breadcrumb a:hover {
	color: var(--k7-red);
}

.post-breadcrumb .breadcrumb-arrow {
	color: rgba(255, 255, 255, 0.5);
}

.post-breadcrumb .breadcrumb-current {
	color: var(--k7-white);
}

/* Article body */
.post-article {
	background-color: var(--k7-bg);
	padding: 40px 0 80px;
}

.post-header {
	margin: 0 0 48px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.post-header-text {
	width: 100%;
	text-align: left;
}

.post-header-date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--k7-font-body);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 16px;
}

.post-header-title {
	font-family: var(--k7-font-heading);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--k7-white);
	margin: 0;
	letter-spacing: -0.02em;
}

.post-header-image {
	width: 100%;
	margin-top: 16px;
}

.post-header-image img {
	width: 100%;
	height: auto;
	max-height: 460px;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

.post-content {
	width: 100%;
	font-family: var(--k7-font-body);
	font-size: 16px;
	line-height: 1.75;
	color: var(--k7-white);
	text-align: left;
}

.post-content p {
	margin: 0 0 20px;
}

.post-content h2,
.post-content h3 {
	font-family: var(--k7-font-heading);
	color: var(--k7-white);
	margin: 40px 0 16px;
	line-height: 1.3;
}

.post-content h2 {
	font-size: 28px;
	font-weight: 600;
}

.post-content h3 {
	font-size: 22px;
	font-weight: 600;
}

.post-content ul,
.post-content ol {
	margin: 0 0 24px;
	padding-left: 0;
	list-style: none;
}

.post-content ul li,
.post-content ol li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.9);
}

.post-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--k7-white);
}

.post-content ol {
	counter-reset: k7-ol;
}

.post-content ol li {
	counter-increment: k7-ol;
}

.post-content ol li::before {
	content: counter(k7-ol) '.';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--k7-white);
	font-weight: 600;
}

.post-content a {
	color: var(--k7-red);
	text-decoration: underline;
}

.post-content blockquote {
	border-left: 3px solid var(--k7-red);
	padding-left: 24px;
	margin: 32px 0;
	font-style: italic;
	color: rgba(255, 255, 255, 0.85);
}

/* Related articles section */
.post-related {
	background-color: var(--k7-bg);
	padding: 0px 0 100px;

}

.post-related .k7-container {
	padding-top: 40px;
	border-top: 1px solid rgba(238, 41, 52, 0.2);

}

.post-related-heading {
	font-family: var(--k7-font-heading);
	font-size: 32px;
	font-weight: 600;
	color: var(--k7-white);
	text-align: center;
	margin: 0 0 40px;
}

.post-related-cta {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.k7-btn--outline-red {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border: 1.5px solid var(--k7-red);
	border-radius: 8px;
	background-color: transparent;
	color: var(--k7-red) !important;
	font-family: var(--k7-font-heading);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.025em;
	text-decoration: none;
	transition: all 0.2s ease;
}

.k7-btn--outline-red:hover {
	background-color: var(--k7-red);
	color: var(--k7-white) !important;
}

@media (max-width: 1024px) {
	.post-header-title {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.post-breadcrumb {
		font-size: 13px;
	}

	.post-article {
		padding: 40px 0 60px;
	}

	.post-header-title {
		font-size: 28px;
	}

	.post-header-image img {
		max-height: 320px;
	}

	.post-content {
		font-size: 15px;
	}

	.post-related {
		padding: 40px 0 60px;
	}

	.post-related-heading {
		font-size: 24px;
	}

	.contact-hero {
		height: 262px;
	}

	.kotter-hero {
		height: 262px !important;
	}

	.articles-hero,
	.careers-hero {
		height: 262px !important;
	}

	.about-hero-bg,
	.contact-hero-bg,
	.courses-hero-bg,
	.course-hero-bg,
	.services-hero-bg,
	.kotter-hero,
	.ki-hero,
	.articles-hero,
	.careers-hero,
	.ssii-hero-bg {
		clip-path: polygon(0 0, 100% 0, 100% 70%, 101.5% 44.5%, 90.6% 95.8%, 86% 100.2%, 89.6% 101.7%, 61% 99.1%, 118.2% 101%, 0 99.5%) !important;
		border-radius: 0px !important;
		clip-path: none !important;
	}
}

@media (max-width: 480px) {
	.post-header-title {
		font-size: 24px;
	}
}

/* ==========================================================================
   SINGLE ARTICLE (breadcrumb + coming soon) — legacy
   ========================================================================== */

.article-inner-section {
	background-color: var(--k7-bg);
	padding: 48px 0 0;
}

.article-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 48px;
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
}

.article-breadcrumb a {
	color: var(--k7-white);
}

.article-breadcrumb a:hover {
	color: var(--k7-red);
}

.breadcrumb-arrow {
	color: var(--k7-red);
}

.breadcrumb-current {
	color: var(--k7-red);
}

/* ==========================================================================
   COMING SOON (placeholder pages)
   ========================================================================== */

.coming-soon-section {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--k7-bg);
	padding: 80px 24px;
}

.coming-soon-section h1 {
	font-family: var(--k7-font-heading);
	font-size: 3rem;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0 0 16px;
}

.coming-soon-section p {
	font-family: var(--k7-font-body);
	font-size: 1.25rem;
	color: var(--k7-gray);
	margin: 0;
}

/* ==========================================================================
   KOTTER PAGE
   ========================================================================== */

/* ── Hero ── */
.kotter-hero {
	position: relative;
	height: 362px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	clip-path: polygon(0% 0%,
			100% 0%,
			100% 51.4%,
			87.7% 94.1%,
			83.8% 100%,
			0% 100%);

}

.kotter-hero .k7-container,
.ki-hero .k7-container {
	width: 100%;
}

.kotter-hero .k7-container .kotter-hero-content,
.ki-hero .k7-container .ki-hero-content {
	padding: 0;
}

.kotter-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 1%, rgba(56, 57, 62, 0.4) 49%);
}

.kotter-hero-content {
	position: relative;
	z-index: 1;
	padding: 41px 0 60px 87px;
	max-width: 775px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.kotter-hero-heading {
	font-family: var(--k7-font-heading);
	font-weight: 700;
	font-size: 60px;
	line-height: 1em;
	letter-spacing: -0.003em;
	color: var(--k7-white);
	margin: 0;
}

.kotter-hero-subtitle {
	font-family: var(--k7-font-body);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.625;
	letter-spacing: -0.008em;
	color: var(--k7-gray-light);
	margin: 0;
}

/* ── Body ── */
.kotter-body {
	background: var(--k7-bg);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 80px;
	padding: 80px;
}

/* ── Section Title (shared) ── */
.kotter-section-title {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
	padding-inline-start: 30px;
}

.kotter-accent {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: var(--k7-red);
	border-radius: 3px;
	flex-shrink: 0;
	clip-path: polygon(0 0, 100% 0, 34% 100%, 0% 100%);
	position: absolute;
	top: 9px;
	inset-inline-start: 0;
}

.kotter-section-title h2 {
	font-family: var(--k7-font-heading);
	font-weight: 600;
	font-size: 36px;
	line-height: 1.25;
	color: var(--k7-white);
	margin: 0;
}

/* ── Partnership ── */
.kotter-partnership {
	display: flex;
	gap: 45px;
	width: 100%;
	max-width: 1280px;
}

.kotter-partnership-image {
	flex: 0 0 auto;
	width: 49%;
}

.kotter-partnership-image img {
	width: 100%;
	height: 330px;
	object-fit: cover;
	border-radius: 16px;
	clip-path: polygon(44px 0, calc(100% - 4px) 0, 100% 16px, 100% 35%, 60% 100%, 16px 100%, 0 calc(100% - 4px), 0 44px);
}

.kotter-partnership-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 48px;

}

.kotter-partnership-desc {
	font-family: var(--k7-font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.625;
	letter-spacing: 0.022em;
	color: var(--k7-white);
}

.kotter-partnership-desc p {
	margin: 0 0 16px;
}

/* ── About Certification ── */
.kotter-certification {
	display: flex;
	gap: 45px;
	width: 100%;
	max-width: 1280px;
}

.kotter-certification-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 27px;
}

.kotter-cert-subtitle {
	font-family: var(--k7-font-heading);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.25;
	color: var(--k7-white);
	margin: 0;
}

.kotter-cert-bullets {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.kotter-cert-bullets li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--k7-font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: rgba(255, 255, 255, 0.8);
}

.kotter-cert-bullets li::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	min-width: 8px;
	border-radius: 50%;
	background: var(--k7-red);
}

.kotter-cert-closing {
	font-family: var(--k7-font-body);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: -0.009em;
	color: var(--k7-white);
	margin: 0;
}

.kotter-certification-image {
	flex: 0 0 auto;
	width: 45%;
	position: relative;
}

.kotter-certification-image img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
	clip-path: polygon(0% 2.421%, 1.587% 0%, 81.769% 0%, 82.834% 0.626%, 99.478% 23.613%, 100% 25.408%, 100% 97.579%, 98.413% 100%, 21.893% 100%, 20.373% 98.279%, 16.214% 77.266%, 14.694% 75.545%, 1.587% 75.545%, 0% 73.123%);
}

.kotter-certification-image_logo {
	position: absolute;
	width: 156px !important;
	bottom: -35px;
	left: -34px;
	/* background: black; */
	padding: 28px;
}

/* ── Courses Section ── */
.kotter-courses-section {
	width: 100%;
	max-width: 1440px;
	padding: 0 80px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.kotter-courses-header {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.kotter-courses-subtitle {
	font-family: var(--k7-font-heading);
	font-weight: 300;
	font-size: 24px;
	line-height: 1.25;
	color: var(--k7-white);
	margin: 0;
}

/* Course Cards Grid */
.kotter-course-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.kotter-course-card {
	border-radius: 10px;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0px;
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
}

.kotter-course-card-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.kotter-course-card-header {
	position: relative;
	background: var(--k7-bg-card);
	padding: 24px 156px 15px 24px;
	display: flex;
	align-items: flex-start;
	border-radius: 10px 10px 0 0;
	width: 100%;
	min-height: 123px;
	display: flex;
	align-items: center;
	background: var(--k7-bg-card);

	clip-path: path("M0.0022 9.99995C0.0022 4.47712 4.47939 0 10.0022 0H223.47C226.632 0 229.607 1.4947 231.494 4.03094L288.653 80.8603C290.54 83.3966 293.515 84.8913 296.676 84.8913L370.105 84.8913L390 84.8913C395.523 84.8913 400 89.3685 400 94.8913V558C400 563.523 395.523 568 390 568H10C4.47718 568 0 563.523 0 558L0.0022 9.99995Z");

}

.kotter-course-card-badge {
	position: absolute;
	top: 0px;
	right: 0px;
	object-fit: contain;
	z-index: 2;
	width: 113.979px;
	height: 85px;
}

.kotter-course-card-title {
	font-family: var(--k7-font-heading);
	font-weight: 600;
	font-size: 22px;
	line-height: 1.25;
	color: var(--k7-white);
	margin: 0;
}

.kotter-course-card-image {
	position: relative;
	height: 180px;
	overflow: hidden;
	border-radius: 0px;
}

.kotter-course-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kotter-course-card-modules {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 24px 75px 40px 24px;
	flex: 1;
	background: var(--k7-bg-card);

}

.kotter-module-item {
	font-family: var(--k7-font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.625;
	letter-spacing: -0.01em;
	color: var(--k7-white);
}

.kotter-course-card-modules .kotter-module-item {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	padding-left: 16px;
	position: relative;
}

.kotter-course-card-modules .kotter-module-item::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 9px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--k7-white);
}

/* Certification Levels */
.kotter-cert-levels {
	display: flex;
	gap: 24px;
	width: 100%;
	justify-content: center;
}

.kotter-cert-level {
	max-width: fit-content;
	flex: 1;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	border-radius: 10px;
	position: relative;
	justify-content: center;
	flex-direction: row-reverse;
	width: fit-content;
}

.kotter-cert-level-badge {
	width: 100px;
	height: auto;
}

.kotter-cert-level-info h4 {
	font-family: var(--k7-font-heading);
	font-weight: 500;
	font-size: 24px;
	line-height: 1.25;
	color: var(--k7-white);
	margin: 0 0 8px;
}

.kotter-cert-level-info p {
	font-family: var(--k7-font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	color: var(--k7-white);
	margin: 0;
}

/* ── Course Tabs Section ── */
.kotter-course-tabs-section {
	width: 100%;
	max-width: 1280px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.kotter-course-tabs-header {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.kotter-course-tabs-subtitle {
	font-family: var(--k7-font-heading);
	font-weight: 300;
	font-size: 24px;
	line-height: 1.25;
	color: var(--k7-white);
	margin: 0;
}

.kotter-course-tabs-nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.kotter-tab-btn {
	display: flex;
	align-items: center;
	gap: 16px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px 0;
}

.kotter-tab-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--k7-white);
	flex-shrink: 0;
	transition: background 0.3s;
}

.kotter-tab-btn.active .kotter-tab-dot {
	background: var(--k7-red);
}

.kotter-tab-label {
	font-family: var(--k7-font-heading);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.25;
	color: var(--k7-white);
	transition: color 0.3s;
}

.kotter-tab-btn.active .kotter-tab-label {
	color: var(--k7-red);
}

/* Tab Panels */
.kotter-tab-panel {
	display: none;
	gap: 40px;
	align-items: flex-start;
}

.kotter-tab-panel.active {
	display: flex;
}

.kotter-tab-panel-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.kotter-tab-panel-text h3 {
	font-family: var(--k7-font-heading);
	font-weight: 600;
	font-size: 36px;
	line-height: 1.25;
	color: var(--k7-white);
	margin: 0;
}

.kotter-tab-panel-modules {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-left: 24px;
}

.kotter-tab-panel-modules .kotter-module-item {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
	display: flex;
	align-items: center;
	gap: 12px;
}

.kotter-tab-panel-modules .kotter-module-item::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	min-width: 6px;
	border-radius: 50%;
	background: var(--k7-white);
}

.kotter-tab-panel-subtitle {
	font-family: var(--k7-font-body);
	font-weight: 500;
	font-size: 24px;
	line-height: 1.3;
	color: var(--k7-white);
	margin: 0;
}

.kotter-tab-panel-desc {
	font-family: var(--k7-font-body);
	font-weight: 400;
	font-size: 24px;
	line-height: 1.3;
	color: var(--k7-white);
	margin: 0;
}

.kotter-tab-panel-image {
	flex: 0 0 auto;
	width: 45%;
}

.kotter-tab-panel-image img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
	clip-path: polygon(0% 1.957%,
			1.603% 0%,
			90.002% 0%,
			91.349% 0.898%,
			99.745% 16.824%,
			100% 17.883%,
			100% 98.043%,
			98.397% 100%,
			30.893% 100%,
			29.692% 99.338%,
			27.729% 96.623%,
			26.528% 95.961%,
			16.416% 95.961%,
			15.215% 96.623%,
			13.252% 99.338%,
			12.051% 100%,
			1.603% 100%,
			0% 98.043%);
	height: 455px;
	object-fit: cover;
}

/* ── Learning Formats ── */
.kotter-learning-section {
	width: 100%;
	max-width: 1280px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.kotter-learning-header {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.kotter-learning-subtitle {
	font-family: var(--k7-font-heading);
	font-weight: 300;
	font-size: 22px;
	line-height: 1.25;
	color: var(--k7-white);
	margin: 0;
}

.kotter-learning-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;

}

.kotter-learning-card {
	background: var(--k7-bg-card);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	clip-path: polygon(100% 0, 100% 93%, 83% 93%, 77% 100%, 31% 100%, 22% 100%, 13% 100%, 0 100%, 0 0);
}

.kotter-learning-card-header {
	padding: 8px 16px 8px;
}

.kotter-learning-card-header h3 {
	font-family: var(--k7-font-heading);
	font-weight: 600;
	font-size: 24px;
	line-height: 1.56;
	color: var(--k7-white);
	margin: 0;
}

.kotter-learning-card-image {
	width: 100%;
	overflow: hidden;
}

.kotter-learning-card-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.kotter-learning-card-body {
	padding: 16px 16px 60px;
	flex: 1;
}

.kotter-learning-card-body p {
	font-family: var(--k7-font-body);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.3;
	color: var(--k7-white);
	margin: 0;
}

.kotter-learning-card-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 16px 16px;
	font-family: var(--k7-font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--k7-white);
	text-decoration: none;
	transition: color 0.3s;
}

.kotter-learning-card-link:hover {
	color: var(--k7-red);
}

.kotter-arrow {
	font-size: 20px;
	transition: transform 0.3s;
}

.kotter-learning-card-link:hover .kotter-arrow {
	transform: translateX(4px);
}

/* ── CTA Button ── */
.k7-btn--red {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 14px 24px;
	background-color: var(--k7-red);
	color: var(--k7-white);
	font-family: var(--k7-font-heading);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.025em;
	border-radius: 10px;
	text-decoration: none;
	transition: background-color 0.2s;
	cursor: pointer;
	border: none;
	align-self: flex-start;
}

.k7-btn--red:hover {
	background-color: var(--k7-red-dark);
	color: var(--k7-white);
}

/* ── Popup Modal ── */
.kotter-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background-color: #000000c2;
}

.kotter-popup-overlay {
	position: relative;
	width: 100%;
	max-width: 900px;
	border-radius: 10px;
	overflow: hidden;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0.59);
}

.kotter-popup-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.3) 100%);
	border-radius: 10px;
}

.kotter-popup-content {
	position: relative;
	z-index: 1;
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.kotter-popup-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	color: var(--k7-white);
	font-size: 32px;
	cursor: pointer;
	line-height: 1;
	padding: 4px 8px;
	z-index: 2;
}

.kotter-popup-close:hover {
	color: var(--k7-red);
}

.kotter-popup-content h2 {
	font-family: var(--k7-font-heading);
	font-weight: 700;
	font-size: 64px;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: var(--k7-white);
	margin: 0;
}

.kotter-popup-desc {
	font-family: var(--k7-font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.625;
	color: rgba(255, 255, 255, 0.8);
	max-width: 100% !important;
}

.kotter-popup-desc p {
	margin: 0 0 12px;
}

.kotter-popup-bullets {
	display: flex;
	gap: 47px;
	justify-content: space-between;
}

.kotter-popup-bullet {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--k7-font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: rgba(255, 255, 255, 0.8);
}

.kotter-popup-dot {
	width: 8px;
	height: 8px;
	min-width: 8px;
	border-radius: 50%;
	background: var(--k7-red);
}

/* ==========================================================================
   KOTTER INNER PAGE
   ========================================================================== */

/* ── Hero ── */
.ki-hero {
	position: relative;
	height: 362px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	clip-path: polygon(0% 0%,
			100% 0%,
			100% 51.4%,
			87.7% 94.1%,
			83.8% 100%,
			0% 100%);
}

/* .ki-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 160px;
	height: 160px;
	background: var(--k7-bg);
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
	z-index: 2;
} */

.ki-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 1%, rgba(56, 57, 62, 0.4) 49%);
}

.ki-hero-content {
	position: relative;
	z-index: 1;
	padding: 41px 0 60px 87px;
	max-width: 775px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.ki-hero-content h1 {
	font-family: var(--k7-font-heading);
	font-weight: 700;
	font-size: 60px;
	line-height: 1em;
	letter-spacing: -0.003em;
	color: var(--k7-white);
	margin: 0;
}

.ki-hero-subtitle {
	font-family: var(--k7-font-body);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.625;
	letter-spacing: -0.008em;
	color: var(--k7-gray-light);
	margin: 0;
}

.single-kotter_course .ki-red-icon {
	position: relative;
	top: 14px;
}

.single-kotter_course .ki-section-header {
	align-items: start;
}

/* ── Shared ── */
.ki-red-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: var(--k7-red);
	border-radius: 3px;
	flex-shrink: 0;
	clip-path: polygon(0 0, 100% 0, 34% 100%, 0% 100%);
	position: relative;
	top: -2px;

}

a:hover,
a:focus {
	outline: none !important;
}

.ki-section-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.ki-section-header h2 {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 600;
	margin: 0;
	color: var(--k7-white);
}

/* ── Main Description ── */
.ki-main-section {
	padding: 72px 0 0;
	background-color: var(--k7-bg);
}

.ki-main-grid {
	display: grid;
	grid-template-columns: 2fr 2fr;
	gap: 48px;
	align-items: start;
}

.ki-main-label {
	display: flex;
	/* align-items: center; */
	gap: 10px;
	margin-bottom: 8px;
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: var(--k7-gray-light);
}

.ki-main-text h2 {
	font-family: var(--k7-font-heading);
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 24px;
	line-height: 1.25;
}

.ki-main-body {
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
	color: var(--k7-gray-light);
	line-height: 1.8;
}

.ki-main-body p {
	margin: 0 0 16px;
}

.ki-main-body ul {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
}

.ki-main-body ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	color: var(--k7-white);
}

.ki-main-body ul li::before {
	content: '\2022';
	position: absolute;
	left: 0;
	color: var(--k7-red);
	font-weight: 700;
}

.ki-main-image {
	position: relative;
}

.ki-main-image img {
	width: 100%;
	border-radius: 12px;
	display: block;
	max-height: 400px;
	clip-path: polygon(0% 2.421%, 1.587% 0%, 81.769% 0%, 82.834% 0.626%, 99.478% 23.613%, 100% 25.408%, 100% 97.579%, 98.413% 100%, 21.893% 100%, 20.373% 98.279%, 16.214% 77.266%, 14.694% 75.545%, 1.587% 75.545%, 0% 73.123%);
}

.ki-main-image_logo {
	position: absolute;
	width: 156px !important;
	bottom: -27px;
	left: -26px;
	/* background: black; */
	padding: 28px;
}

/* ── About ── */
.ki-about-section {
	padding: 64px 0 0;
	background-color: var(--k7-bg);
}

.ki-about-body {
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
	color: var(--k7-gray-light);
	line-height: 1.8;
	/* max-width: 960px; */
}

.ki-about-body p {
	margin: 0 0 16px;
}

/* ── Core Content — Accordion ── */
.ki-core-section {
	padding: 64px 0 0;
	background-color: var(--k7-bg);
}

.ki-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ki-accordion-item {
	border: 1px solid var(--k7-border);
	border-radius: 8px;
	overflow: hidden;
	transition: border-color 0.2s ease;
}

.ki-accordion-item:has(.ki-accordion-trigger[aria-expanded="true"]) {
	border-color: rgba(238, 41, 52, 0.4);
}

.ki-accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	background: var(--k7-bg-card);
	border: none;
	color: var(--k7-white);
	font-family: var(--k7-font-heading);
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.ki-accordion-trigger:hover {
	background-color: #222;
}

.ki-accordion-chevron {
	transition: transform 0.3s ease;
	flex-shrink: 0;
	color: var(--k7-red);
}

.ki-accordion-trigger[aria-expanded="true"] .ki-accordion-chevron {
	transform: rotate(180deg);
}

.ki-accordion-panel {
	padding: 0 24px 24px;
	background: var(--k7-bg-card);
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
	color: var(--k7-gray-light);
	line-height: 1.8;
}

.ki-accordion-panel[hidden] {
	display: none;
}

.ki-accordion-panel p {
	margin: 0 0 12px;
}

.ki-accordion-panel ul {
	list-style: none;
	padding: 0;
	margin: 0 0 12px;
}

.ki-accordion-panel ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
	color: var(--k7-gray-light);
}

.ki-accordion-panel ul li::before {
	content: '\2022';
	position: absolute;
	left: 0;
	color: var(--k7-white);
}

/* ── Course Outline ── */
.ki-outline-section {
	padding: 72px 0 0;
	background-color: var(--k7-bg);
}

.ki-outline-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.ki-outline-text h3 {
	font-family: var(--k7-font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 24px;
	line-height: 1.3;
}

.ki-outline-body {
	font-family: var(--k7-font-body);
	font-size: 0.9375rem;
	color: var(--k7-gray-light);
	line-height: 1.8;
}

.ki-outline-body ul {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
}

.ki-outline-body li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
	color: var(--k7-white);
}

.ki-outline-body li::before {
	content: '\2022';
	position: absolute;
	left: 0;
	color: var(--k7-white);
}

.ki-outline-image img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	clip-path: polygon(0% 1.957%,
			1.603% 0%,
			90.002% 0%,
			91.349% 0.898%,
			99.745% 16.824%,
			100% 17.883%,
			100% 98.043%,
			98.397% 100%,
			30.893% 100%,
			29.692% 99.338%,
			27.729% 96.623%,
			26.528% 95.961%,
			16.416% 95.961%,
			15.215% 96.623%,
			13.252% 99.338%,
			12.051% 100%,
			1.603% 100%,
			0% 98.043%);
}

/* ── Course Outline — Module tabs ── */
.ki-outline-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 36px;
	margin-bottom: 40px;
	padding: 0;
}

.ki-outline-tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px 0;
	font-family: var(--k7-font-heading);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.25;
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.25s ease;
}

.ki-outline-tab-btn:hover {
	color: var(--k7-white);
}

.ki-outline-tab-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	flex-shrink: 0;
	transition: background 0.25s ease, transform 0.25s ease;
}

.ki-outline-tab-btn:hover .ki-outline-tab-dot {
	background: var(--k7-white);
}

.ki-outline-tab-btn.active {
	color: var(--k7-red);
	font-weight: 600;
}

.ki-outline-tab-btn.active .ki-outline-tab-dot {
	background: var(--k7-red);
	transform: scale(1.1);
}

.ki-outline-tab-panel {
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.ki-outline-tab-panel.active {
	display: grid;
}

.ki-outline-tab-panel-title {
	font-family: var(--k7-font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 24px;
	line-height: 1.3;
	color: var(--k7-white);
}

.ki-outline-tab-panel-image img {
	max-height: 580px !important;
	object-fit: cover;
}

.ki-outline-tab-panel-image img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	clip-path: polygon(0% 1.957%,
			1.603% 0%,
			90.002% 0%,
			91.349% 0.898%,
			99.745% 16.824%,
			100% 17.883%,
			100% 98.043%,
			98.397% 100%,
			30.893% 100%,
			29.692% 99.338%,
			27.729% 96.623%,
			26.528% 95.961%,
			16.416% 95.961%,
			15.215% 96.623%,
			13.252% 99.338%,
			12.051% 100%,
			1.603% 100%,
			0% 98.043%);
}

/* ── After the Course ── */
.ki-after-section {
	padding: 72px 0;
	background-color: var(--k7-bg);
}

.ki-after-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.ki-after-card {
	/* background-color: var(--k7-bg-card); */
	border: 2px solid var(--k7-red);
	border-radius: 8px;
	padding: 32px;
}

.ki-after-card h3 {
	font-family: var(--k7-font-heading);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0 0 16px;
	text-decoration-line: underline;
	text-decoration-color: var(--k7-red);
	text-decoration-thickness: 2px;
	text-underline-offset: 11px;
}

.ki-after-card p {
	font-family: var(--k7-font-body);
	font-size: 0.875rem;
	color: var(--k7-gray-light);
	line-height: 1.7;
	margin: 0;
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

/* Hero */
.services-hero {
	position: relative;
	height: 352px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	background-color: var(--k7-bg);
	text-align: left !important;
}

.services-hero *,
.services-hero h1,
.services-hero p {
	text-align: left !important;
}

.services-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%);
	z-index: 1;
}

/* .services-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 180px;
	height: 180px;
	background-color: var(--k7-bg);
	clip-path: path('M 180 0 L 30 150 Q 10 180, 0 180 L 180 180 Z');
	z-index: 2;
} */

.services-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(0% 0%,
			100% 0%,
			100% 51.4%,
			87.7% 94.1%,
			83.8% 100%,
			0% 100%);

}

.services-hero .k7-container {
	position: relative;
	z-index: 2;
	padding-left: 64px;
	padding-right: 48px;
	text-align: left !important;
	width: 100%;
	margin: auto;
	padding: 0
}

.services-hero h1 {
	font-family: var(--k7-font-heading);
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0 0 16px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-align: left !important;
}

.services-hero .services-hero-subtitle {
	font-family: var(--k7-font-body);
	font-size: 20px;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	max-width: 620px;
	line-height: 1.6;

	text-align: left !important;
}

/* Services Cards Section */
.services-section {
	padding: 100px 0;
	background-color: var(--k7-bg);
}

.services-layout {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: stretch;
}

.services-title-col {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 45px 0;
}

.services-heading {
	font-family: var(--k7-font-heading);
	font-size: 93px;
	font-weight: 600;
	color: var(--k7-white);
	line-height: 1.25;
	margin: 0;
}

.services-grid {
	display: contents;
}

.services-card-wrap {
	position: relative;
}

.services-card {
	background-color: #1A1A1A;
	padding: 25px 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	/* min-height: 383px; */
	clip-path: path("M0.0006 34.4403C0.0006 15.4195 14.6727 0 32.7715 0H282.307C290.951 0 299.244 3.58897 305.382 9.9854L389.304 97.4462C395.51 103.913 399 112.717 399 121.901L398.999 348.56C398.999 367.58 384.327 383 366.229 383H32.7708C14.672 383 0 367.58 0 348.56L0.0006 34.4403Z");
	border-radius: 24px;
}

.services-icon {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--k7-white);
}

.services-icon svg {
	width: 58px;
	height: 58px;
	display: block;
}

.services-number {
	position: absolute;
	top: 8px;
	right: 0;
	font-family: var(--k7-font-ui);
	font-size: 48px;
	font-weight: 700;
	color: var(--k7-white);
	line-height: 1;
	letter-spacing: -0.003em;
	z-index: 2;
	pointer-events: none;
}

.services-card h3 {
	font-family: var(--k7-font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0;
	line-height: 1.4;
	letter-spacing: -0.008em;
}

.services-desc {
	font-family: var(--k7-font-body);
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.42;
	letter-spacing: -0.01em;
	flex: 1;
}

.services-desc p {
	margin: 0 0 14px;
}

.services-desc ul {
	padding-left: 0;
	margin: 8px 0 0;
	list-style: none;
}

.services-desc ul li {
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.6);
	padding-left: 16px;
	position: relative;
	cursor: pointer;
	transition: color 0.2s;
	font-family: var(--k7-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.14;
	letter-spacing: -0.011em;
}

.services-desc ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--k7-red-accent);
}

.services-desc ul li:hover {
	color: var(--k7-red);
}

.services-desc ul li a {
	color: inherit;
}

.services-desc ul li a:hover {
	color: var(--k7-red);
}

.services-link {
	font-family: var(--k7-font-heading);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.025em;
	color: var(--k7-white);
	text-decoration: none;
	margin-top: auto;
	transition: color 0.2s;
}

.services-link:hover {
	color: var(--k7-red);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1250px) {
	.value-card .value-content {
		padding: 6px 32px 10px 76px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		background-size: 100% 100%;
	}

	.value-content p {
		font-size: 14px;
	}
}

@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.team-grid.cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Courses */
	.course-card {
		/* grid-template-columns: 1fr; */
	}

	.course-card-image img {
		height: 280px;
	}

	.course-main-grid,
	.course-outline-grid {
		grid-template-columns: 1fr;
	}

	.course-after-grid {
		grid-template-columns: 1fr;
	}

	/* Kotter Inner */
	.ki-main-grid,
	.ki-outline-grid,
	.ki-outline-tab-panel.active {
		grid-template-columns: 1fr;
	}

	.ki-outline-tabs-nav {
		gap: 12px 24px;
	}

	.ki-outline-tab-btn {
		font-size: 16px;
	}

	.ki-after-grid {
		grid-template-columns: 1fr;
	}

	/* Home */
	.home-hero>.k7-container {
		padding: 120px 48px 0 56px;
	}

	.home-hero-stats>.k7-container {
		padding: 0 56px;
	}

	.home-hero h1 {
		font-size: 48px;
	}

	.home-hero-stats-inner {
		max-width: 80%;
	}

	.home-services-layout {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-services-heading {
		font-size: 64px;
	}

	.home-services-title-col {
		grid-column: 1 / -1;
	}

	/* Services Page */
	.services-layout {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-heading {
		font-size: 64px;
	}

	.services-title-col {
		grid-column: 1 / -1;
	}

	.home-transform-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.home-transform-heading,
	.home-trusted-heading,
	.home-articles-heading,
	.home-courses-heading {
		font-size: 36px;
	}

	.home-articles-grid,
	.home-courses-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-kotter-inner {
		padding: 32px 24px;
		justify-content: flex-start;
	}

	.home-kotter-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.home-kotter-text {
		text-align: left;
	}

	.home-kotter-content h2 {
		font-size: 24px;
	}

	.home-trusted-logos {
		padding: 40px 24px;
	}

	.home-course-card-body h3 {
		font-size: 22px;
	}

	/* Contact */
	.contact-grid {
		gap: 40px;
	}

	/* Payment */
	.payment-grid {
		gap: 40px;
	}

	/* Kotter */
	.kotter-hero::after {
		width: 120px;
		height: 120px;
	}

	.kotter-hero-content {
		padding-left: 56px;
	}

	.kotter-body {
		padding: 60px 40px;
		gap: 60px;
	}

	.kotter-courses-section {
		padding: 0 40px;
	}

	.kotter-course-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.kotter-popup-content h2 {
		font-size: 48px;
	}

	.value-card .value-content {
		width: calc(100% - 52px);
	}

	.value-icon {
		height: 104px;
		background-size: 100% 100%;
	}

	.home-hero {
		height: auto;
	}

	.site-header .k7-container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.main-navigation ul {
		gap: 13px;
	}

	.k7-container {
		padding: 0 24px;
	}

	.home-kotter-inner {
		max-width: 96%;
	}

	.founder-grid {
		display: flex;
		gap: 18px;
		align-items: start;
		flex-wrap: wrap;
	}

	.about-hero .k7-container {
		padding: 0 24px
	}

	.founder-section .k7-container {
		padding: 0;
	}

	.team-grid.cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-header .k7-container {
		padding: 16px 24px !important;
		gap: 20px;
	}

	.main-navigation {
		display: none !important;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--k7-bg);
		border-bottom: 1px solid var(--k7-border);
		padding: 16px 24px;
	}

	.main-navigation.toggled {
		display: block !important;
	}

	.main-navigation ul {
		flex-direction: column;
		gap: 4px;
	}

	.main-navigation ul li a {
		padding: 10px 0;
		font-size: 1rem;
		min-height: 44px;
		display: flex;
		align-items: center;
	}

	.header-cta {
		display: none;
	}

	.menu-toggle {
		display: block;
		min-height: 44px;
		min-width: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.courses-hero .k7-container {
		padding: 0 24px
	}

	.course-card-image img {
		height: 350px;
	}

	.course-main-image {
		width: 100%;
		height: 350px;
	}

	.course-main-image img {
		height: 100%;
		object-fit: cover;
	}

	.course-main-grid {
		display: flex;
		flex-direction: column-reverse;
	}

	.course-outline-image img {
		height: 350px;
		object-fit: cover;
	}

	.course-hero .k7-container {
		padding: 0 24px;
	}

	.main-navigation ul li a::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: rgba(255, 255, 255, 0.05) !important;
	}

	.main-navigation ul li:last-of-type a::after {
		display: none;
	}

	.course-main-image_logo {
		height: 112px !important;
		position: absolute;
		width: 117px !important;
		bottom: -18px;
		left: -38px;
		padding: 28px;
	}
}

@media (max-width: 820px) {
	.course-card {
		grid-template-columns: 1fr;
	}

	.course-card:nth-of-type(even) .course-card-content {
		order: 1;
	}
}

@media (max-width: 768px) {
	.k7-container {
		padding: 0 20px;
	}

	.ki-main-image_logo {

		width: 126px !important;

	}

	.kotter-certification-image_logo {
		width: 118px !important;

	}

	.course-card-content {
		padding: 24px 0px;
	}

	/* Header Mobile */
	.site-header .k7-container {
		padding: 16px 24px !important;
		gap: 20px;
	}

	.main-navigation {
		display: none !important;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--k7-bg);
		border-bottom: 1px solid var(--k7-border);
		padding: 16px 24px;
	}

	.main-navigation.toggled {
		display: block !important;
	}

	.main-navigation ul {
		flex-direction: column;
		gap: 4px;
	}

	.main-navigation ul li a {
		padding: 10px 0;
		font-size: 1rem;
		min-height: 44px;
		display: flex;
		align-items: center;
	}

	.header-cta {
		display: none;
	}

	.menu-toggle {
		display: block;
		min-height: 44px;
		min-width: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	/* About Hero */
	.about-hero {
		height: 260px;
	}

	.about-hero::after {
		width: 120px;
		height: 140px;
		bottom: -4px;
	}

	.about-hero .k7-container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.about-hero h1 {
		font-size: 2rem;
	}

	.about-hero .hero-subtitle {
		font-size: 0.9375rem;
	}

	/* Founder */
	.founder-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.founder-text {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.founder-section,
	.vision-mission-section,
	.values-section,
	.team-section,
	.site-footer {
		padding-left: 24px;
		padding-right: 24px;
	}

	/* Vision/Mission */
	.vision-mission-grid {
		grid-template-columns: 1fr;
	}

	/* Values */
	/* .values-grid {
		grid-template-columns: 1fr;
	} */

	/* Team */
	.team-grid.cols-3,
	.team-grid.cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.team-grid.cols-2 {
		max-width: 100%;
	}

	/* Services Page */
	.services-hero {
		height: 300px;
	}

	.services-hero .k7-container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.services-hero h1 {
		font-size: 2rem;
	}

	.services-hero .services-hero-subtitle {
		font-size: 0.9375rem;
	}

	.services-hero::after {
		width: 120px;
		height: 120px;
	}

	.services-section {
		padding: 60px 0;
	}

	.services-layout {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.services-title-col {
		grid-column: 1 / -1;
		padding: 0 0 16px;
	}

	.services-heading {
		font-size: 44px;
	}

	.services-card {
		padding: 24px;
		min-height: auto;
	}

	.services-number {
		font-size: 36px;
		top: -2px;
		right: 4px;
	}

	.services-card h3 {
		font-size: 1.1rem;
	}

	.services-link {
		min-height: 44px;
		display: inline-flex;
		align-items: center;
	}

	/* Courses */
	.courses-hero,
	.course-hero {
		height: 300px;
	}

	.courses-hero .k7-container,
	.course-hero .k7-container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.courses-hero h1,
	.course-hero h1 {
		font-size: 36px;
	}

	.courses-hero .hero-subtitle,
	.course-hero .hero-subtitle {
		font-size: 0.9375rem;
	}

	.courses-hero::after,
	.course-hero::after {
		width: 120px;
		height: 120px;
	}

	.courses-list-section,
	.course-main-section,
	.course-about-section,
	.course-core-section,
	.course-outline-section,
	.course-after-section {
		padding-left: 24px;
		padding-right: 24px;
	}

	.course-main-section {
		padding-top: 24px;
	}

	.course-main-section .k7-container,
	.course-about-section .k7-container,
	.course-core-section .k7-container,
	.course-outline-section .k7-container,
	.course-after-section .k7-container {
		padding: 0;
	}

	.course-main-grid {
		display: flex;
		flex-direction: column-reverse;
	}

	.course-card-content {
		padding: 24px 16px;
	}

	.course-card-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.course-cta,
	.course-cta:visited,
	.course-cta:hover,
	.course-cta:active {
		min-height: 44px;
		width: 100%;
		justify-content: center;
	}

	/* Kotter Inner */
	.ki-hero {
		min-height: 300px;
	}

	.ki-hero-content {
		padding: 30px 24px 40px;
	}

	.ki-hero-content h1 {
		font-size: 2rem;
	}

	.ki-hero-subtitle {
		font-size: 0.9375rem;
	}

	.ki-hero::after {
		width: 120px;
		height: 120px;
	}

	.ki-main-section,
	.ki-about-section,
	.ki-core-section,
	.ki-outline-section,
	.ki-after-section {
		padding-left: 24px;
		padding-right: 24px;
	}

	/* Home Hero */
	.home-hero {
		min-height: auto;
		height: auto;
	}

	.home-hero>.k7-container {
		padding: 163px 16px 24px 16px;
	}

	.home-hero-stats>.k7-container {
		padding: 0 20px;
	}

	.home-hero::after {
		width: 120px;
		height: 120px;
	}

	.ssii-benefit-inner {
		padding: 55px;
	}

	.home-hero>.k7-container {
		padding: 163px 16px 24px 16px;
	}

	.home-hero h1 {
		font-size: 36px;
		max-width: 100%;
		margin-bottom: 16px;
		line-height: 45px;
	}

	.ssii-top-grid,
	.ssii-method-grid {
		display: flex;
		flex-direction: column-reverse;
	}

	.home-hero-subtitle {
		font-size: 14px;
		margin-bottom: 24px;
		max-width: 100%;
	}

	.home-hero-label {
		font-size: 11px;
		margin-bottom: 16px;
		padding: 7px 14px;
		gap: 8px;
	}

	.home-hero-cta {
		min-height: 44px;
		padding: 14px 28px;
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.home-hero-stats {
		padding-bottom: 40px;
	}

	.home-hero-stats-inner {
		flex-wrap: wrap;
		max-width: 100%;
		margin-top: 40px;
		gap: 0;
	}

	.home-hero-stat {
		flex: 0 0 50%;
		padding: 16px 12px;
		box-sizing: border-box;
	}

	.home-hero-stat-number {
		font-size: 28px;
	}

	.home-hero-stat-label {
		font-size: 11px;
	}

	/* Home Services */
	.home-services {
		padding: 48px 0;
	}

	.home-services-layout {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.home-services-title-col {
		grid-column: 1 / -1;
		padding: 0 0 8px;
	}

	.home-services-heading {
		font-size: 36px;
	}

	.home-service-card {
		padding: 20px;
		min-height: auto;
		/* clip-path: path("M0.0005 31.0233C0.0005 13.8896 12.4662 0 27.8434 0H239.855C247.199 0 254.245 3.23288 259.46 8.99469L330.762 87.7779C336.034 93.6032 339 101.533 339 109.806L339 313.977C339 331.11 326.534 345 311.157 345H27.8429C12.4657 345 0 331.11 0 313.977L0.0005 31.0233Z"); */

	}

	.kotter-course-card-badge {

		width: 88.979px;
	}

	.home-service-card::before {
		width: 60px;
		height: 60px;
	}

	.home-service-number {
		font-size: 32px;
		top: 2px;
		right: 4px;
	}

	.home-service-icon {
		width: 48px;
		height: 48px;
	}

	.home-service-icon svg {
		width: 48px;
		height: 48px;
	}

	.home-service-card h3 {
		font-size: 16px;
	}

	.home-service-desc {
		font-size: 14px;
	}

	.home-service-link {
		min-height: 44px;
		display: inline-flex;
		align-items: center;
	}

	/* Home Kotter Banner */
	.home-kotter {
		padding: 40px 0;
	}

	.home-kotter-inner {
		height: auto;
		min-height: 280px;
		padding: 0;
		mask-image: none;
		-webkit-mask-image: none;
		border-radius: 16px;
		margin: 0 20px;
	}

	.home-kotter-content {
		padding: 40px 24px;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.home-kotter-text {
		text-align: left;
	}

	.home-kotter-content h2 {
		font-size: 22px;
	}

	.home-kotter-content p {
		font-size: 13px;
	}

	.home-kotter-cta {
		min-height: 44px;
		padding: 12px 24px;
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	/* Home Service Transformation */
	.home-transform {
		padding: 48px 0;
	}

	.home-transform-heading {
		font-size: 24px;
		margin-bottom: 32px;
	}

	.home-transform-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.home-transform-col {
		border-right: none;
		padding: 0;
	}

	.home-transform-col:nth-child(even) {
		border-right: none;
	}

	.home-transform-col-header {
		height: 120px;
		padding: 16px 12px;
	}

	.home-transform-col-title {
		font-size: 14px;
		max-width: 100px;
	}

	.home-transform-col-number {
		font-size: 28px;
	}

	.home-transform-col-content {
		font-size: 13px;
	}

	.home-transform-col-content ul li {
		font-size: 13px;
	}

	/* Home Trusted By */
	.home-trusted {
		padding: 48px 0;
	}

	.home-trusted-heading {
		font-size: 24px;
		margin-bottom: 32px;
	}

	.home-trusted-logos {
		padding: 0;
	}

	.home-trusted-logo {
		height: 80px;
	}

	.home-trusted-logo img {
		max-height: 60px;
	}

	/* Home Articles */
	.home-articles {
		padding: 48px 0;
	}

	.home-articles-heading {
		font-size: 24px;
		margin-bottom: 32px;
	}

	.home-articles-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.home-article-header {
		padding: 16px 16px 12px;
	}

	.home-article-body {
		padding: 12px 16px 16px;
	}

	.home-article-title {
		font-size: 16px;
	}

	/* Home Courses */
	.home-courses {
		padding: 48px 0;
	}

	.home-courses-heading {
		font-size: 24px;
		margin-bottom: 32px;
	}

	.home-courses-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.home-course-card-body {
		padding: 60px 20px 24px;
		min-height: auto;
	}

	.home-course-card-body h3 {
		font-size: 18px;
		padding-inline-end: 80px;
	}

	.home-course-cta {
		min-height: 44px;
		width: 100%;
		justify-content: center;
	}

	/* Home buttons */
	.home-btn-outline {
		min-height: 44px;
		width: 100%;
		justify-content: center;
	}

	/* Contact Us */
	.contact-hero {
		min-height: 260px;
	}

	.contact-hero .k7-container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.contact-hero::after {
		width: 120px;
		height: 120px;
	}

	.contact-hero h1 {
		font-size: 2rem;
	}

	.contact-hero .hero-subtitle {
		font-size: 0.9375rem;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.contact-section {
		padding: 48px 24px;
	}

	.contact-page-heading {
		font-size: 1.75rem;
	}

	.contact-submit {
		min-height: 44px;
	}

	.newsletter-btn {
		min-height: 44px;
	}

	/* Payment */
	.payment-section {
		padding: 40px 0;
	}

	.pay-button {
		min-height: 44px;
	}

	.discount-apply {
		min-height: 44px;
	}

	.thankyou-cta {
		min-height: 44px;
	}

	/* Coming Soon */
	.coming-soon-section {
		min-height: 40vh;
		padding: 48px 24px;
	}

	.coming-soon-section h1 {
		font-size: 2rem;
	}

	.coming-soon-section p {
		font-size: 1rem;
	}

	/* Service Inner */
	.si-hero {
		height: 300px;
	}

	.si-hero .k7-container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.si-hero h1 {
		font-size: 2rem;
	}

	.si-hero .si-hero-subtitle {
		font-size: 0.9375rem;
	}

	.si-hero::after {
		width: 120px;
		height: 120px;
	}

	.si-section {
		padding: 32px 0 60px;
	}

	/* Sub-Service Inner */
	.ssi-hero {
		height: 300px;
	}

	.ssi-hero .k7-container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.ssi-hero h1 {
		font-size: 2rem;
	}

	.ssi-hero .ssi-hero-subtitle {
		font-size: 0.9375rem;
	}

	.si-title {
		font-size: 1.75rem;
	}

	.si-content-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 48px;
	}

	.si-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	/* Sub-Service Inner */
	.ssi-section {
		padding: 32px 0 60px;
	}

	.ssi-title {
		font-size: 1.75rem;
	}

	.ssi-content-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 48px;
	}

	.ssi-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	/* Article Inner */
	.article-inner-section {
		padding-left: 24px;
		padding-right: 24px;
	}

	/* Footer */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-bottom .k7-container {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.footer-links-grid {
		grid-template-columns: 1fr;
	}

	/* Kotter */
	.kotter-hero::after {
		width: 80px;
		height: 80px;
	}

	.kotter-hero {
		min-height: 360px;
	}

	.kotter-hero-content {
		padding: 30px 24px 40px;
	}

	.kotter-hero-heading {
		font-size: 40px;
	}

	.kotter-hero-subtitle {
		font-size: 16px;
	}

	.kotter-body {
		padding: 48px 24px;
		gap: 48px;
	}

	.kotter-partnership {
		flex-direction: column;
	}

	.kotter-partnership-image {
		width: 100%;
	}

	.kotter-partnership-image img {
		height: 220px;
	}

	.kotter-certification {
		flex-direction: column;
	}

	.kotter-certification-image {
		width: 100%;
	}

	.kotter-section-title h2 {
		font-size: 28px;
	}

	.kotter-courses-section {
		padding: 0;
	}

	.kotter-course-cards {
		grid-template-columns: 1fr;
	}

	.kotter-courses-subtitle,
	.kotter-course-tabs-subtitle,
	.kotter-learning-subtitle {
		font-size: 18px;
	}

	.kotter-learning-card-header h3 {
		font-size: 18px;
	}

	.kotter-course-card-title {
		font-size: 18px;
	}

	.kotter-cert-levels {
		gap: 0;
	}

	.kotter-cert-level-info h4 {
		font-size: 18px;
	}

	.kotter-cert-levels {
		flex-direction: column;
	}

	.kotter-tab-label {
		font-size: 13px;
	}

	.kotter-course-tabs-nav {
		grid-template-columns: repeat(2, 1fr);
		gap: 2px;
	}

	.kotter-tab-panel {
		flex-direction: column;
	}

	.kotter-tab-panel-image {
		width: 100%;
	}

	.kotter-tab-panel-modules .kotter-module-item,
	.kotter-tab-panel-subtitle,
	.kotter-tab-panel-desc {
		font-size: 14px;
	}

	.kotter-learning-cards {
		grid-template-columns: 1fr;
	}

	.kotter-popup-content {
		padding: 24px;
	}

	.kotter-popup-content h2 {
		font-size: 32px;
	}

	.kotter-popup-bullets {
		flex-direction: column;
		gap: 12px;
	}

	.courses-list-section .k7-container {
		padding: 0;
	}

	.courses-section-header h2 {
		font-size: 24px;
	}

	.course-card-content {
		/* padding-top: 0; */
	}

	.course-card:nth-of-type(even) .course-card-image {
		order: 1;
		margin-bottom: 0px;
	}

	.course-card-content h3 a {
		font-size: 24px;
	}

	.course-modules li,
	.course-desc {
		font-size: 18px;
	}

	.kotter-section-title h2,
	.kotter-tab-panel-text h3 {
		font-size: 24px;
	}

	.kotter-partnership-text {
		gap: 30px;
	}

	.careers-filter .k7-dropdown {
		width: 100% !important;
	}

	.careers-filter {
		width: 46%;
	}

	.careers-filters-icon,
	.careers-filters-reset {
		background-color: var(--k7-red);
		width: 46% !important;
	}

	.careers-filters-icon svg path,
	.careers-filters-reset svg path {
		stroke: white;
	}

	.kotter-tab-panel-image img {
		height: 270px;
	}

	.kotter-tab-dot {
		position: relative;
		top: 3px
	}

	.kotter-tab-btn {

		align-items: start;
		gap: 7px;

		padding: 5px 0;
		text-align: left;
	}

	.ki-main-image_logo {
		width: 109px !important;
	}

	.elementor-icon-list-items {
		margin-left: 0;
	}
}

@media (max-width: 768px) {
	.mobile_only {
		display: inline-block;
		color: white;
		font-size: 15px;
		margin-inline-end: 7px;
		text-transform: uppercase;
	}

	.footer-bottom .k7-container {
		flex-direction: column;
		gap: 7px;
		align-items: start;
		padding: 0;
	}

	.home-kotter-image img {
		clip-path: polygon(11px 0%,
				/* top-left corner slant start */
				100% 0%,
				/* top-right */
				100% calc(110% - 102px),
				/* bottom-right slant start */
				calc(93% - 11px) 100%,
				/* bottom-right corner */
				0% 106%,
				/* bottom-left */
				0% 71px
				/* top-left slant end */
			);
	}

	.home-kotter-inner::before {
		clip-path: polygon(11px 0%,
				/* top-left corner slant start */
				100% 0%,
				/* top-right */
				100% calc(110% - 102px),
				/* bottom-right slant start */
				calc(93% - 11px) 100%,
				/* bottom-right corner */
				0% 106%,
				/* bottom-left */
				0% 71px
				/* top-left slant end */
			);
	}

	.menu-toggle[aria-expanded="true"] span:nth-child(2) {
		display: none;
	}

	.menu-toggle[aria-expanded="true"] span:first-of-type {
		transform: rotate(45deg);
		position: relative;
		top: 12px;
	}

	.menu-toggle[aria-expanded="true"] span:last-of-type {
		transform: rotate(-46deg);
	}

	.footer-bottom-right {
		flex-direction: row !important;
		gap: 21px !important;
	}

	/* About Hero */
	.about-hero {
		height: 262px;
	}

	.site-header {
		/* border: none; */
	}

	/* .about-hero::after {
		width: 80px;
		height: 80px;
	} */

	.about-hero h1 {
		font-size: 36px;
	}

	.about-hero .hero-subtitle {
		font-size: 14px;
	}

	/* Founder */
	.founder-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.founder-section h2 {
		font-size: 24px;
	}

	.contact-hero {
		height: 262px;
	}

	.founder-image-wrap img {
		margin-left: 0;
	}

	.vision-mission-section>.k7-container>h2,
	.values-section h2 {
		font-size: 24px;
	}

	.founder-grid {
		gap: 45px;
	}

	.vm-card h3 {
		font-size: 18px;
	}

	.contact-info {
		padding-top: 0;
	}

	.page-template-page-about-us .k7-container {
		padding: 0;
	}

	.team-inner-section-body--columns {
		grid-template-columns: none !important;
	}

	.page-template-page-about-us .about-hero .k7-container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.founder-text p {
		text-align: left;
	}

	/* Vision/Mission */
	.vision-mission-section {
		padding-top: 0px;
		padding-bottom: 40px;
	}

	.vm-card {
		padding: 20px;
	}

	/* Values */
	.values-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.value-card {
		/* padding: 20px 20px 20px 110px; */
		height: 111px;
	}

	.value-card .value-content {
		width: calc(100% - 37px);
		padding: 6px 16px 10px 60px;
	}

	.value-icon {
		width: 77px;
		height: 77px;
		background-size: 93% 100%;
		left: 10px;
		top: -4px;
		padding: 17px 0 15px 17px;
	}

	.value-card::before {
		width: 96px;
		height: 70px;
		clip-path: polygon(80px 0, 96px 0, 62px 70px, 50px 70px);
	}

	/* Team */
	.team-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	/* .team-grid.cols-3,
	.team-grid.cols-4,
	.team-grid.cols-2 {
		grid-template-columns: 1fr;
	} */

	.team-card-image {
		width: 100%;
	}

	/* Courses */
	.courses-hero,
	.course-hero {
		height: 262px;
	}

	.courses-hero::after,
	.course-hero::after {
		width: 120px;
		height: 140px;
		bottom: -4px;
	}

	.courses-hero h1,
	.course-hero h1 {
		font-size: 36px;
	}

	.courses-hero .hero-subtitle,
	.course-hero .hero-subtitle {
		font-size: 14px;
	}

	.course-card-content h3 {
		font-size: 1.125rem;
	}

	.course-price {
		font-size: 1.375rem;
	}

	.course-main-text h2 {
		font-size: 1.5rem;
	}

	.course-section-header h2 {
		font-size: 24px;
	}

	.course-about-section,
	.course-core-section,
	.course-outline-section,
	.course-after-section {
		padding-top: 0;
	}

	.accordion-trigger {
		font-size: 18px;
		text-align: left;
		line-height: 25px;
	}

	.course-breadcrumb {
		padding: 24px 0;
	}

	.course-breadcrumb .k7-container {
		padding-left: 24px;
		padding-right: 24px;
	}

	/* Kotter Inner */
	.ki-hero {
		min-height: 240px;
	}

	.ki-hero::after {
		width: 80px;
		height: 80px;
	}

	.ki-hero-content {
		padding: 24px 16px 32px;
	}

	.ki-hero-content h1 {
		font-size: 1.5rem;
	}

	.ki-hero-subtitle {
		font-size: 0.8125rem;
	}

	.ki-main-text h2 {
		font-size: 1.5rem;
	}

	.ki-section-header h2 {
		font-size: 1.25rem;
	}

	/* Contact */
	.contact-hero {
		min-height: 200px;
	}

	.contact-hero::after {
		width: 120px;
		height: 140px;
		bottom: -4px;
	}

	.contact-hero h1 {
		font-size: 36px;
	}

	.contact-section .k7-container {
		padding-left: 0;
		padding-right: 0;
	}

	.contact-hero .hero-subtitle {
		font-size: 0.8125rem;
	}

	.contact-page-heading {
		font-size: 1.375rem;
		margin-bottom: 32px;
	}

	.contact-info h3,
	.contact-form-wrapper h3 {
		font-size: 1.25rem;
		margin-bottom: 24px;
	}

	.contact-form-wrapper .form-row {
		grid-template-columns: 1fr;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.newsletter-btn {
		width: 100%;
	}

	.contact-submit {
		width: 100%;
	}

	/* Home Hero */
	.home-hero {
		min-height: auto;
	}

	.home-hero::after {
		width: 60px;
		height: 60px;
	}

	/* .home-hero>.k7-container {
		padding: 60px 16px 24px 16px;
	} */

	.home-hero h1 {
		/* font-size: 24px; */
		margin-bottom: 12px;
	}

	.home-hero-subtitle {
		font-size: 13px;
		margin-bottom: 20px;
		line-height: 1.5;
	}

	.home-hero-label {
		font-size: 10px;
		margin-bottom: 12px;
		padding: 6px 12px;
		gap: 6px;
	}

	.home-hero-label::before {
		width: 6px;
		height: 6px;
	}

	.home-hero-cta {
		padding: 16px 20px;
		font-size: 13px;
	}

	.home-hero-stats {
		padding-bottom: 32px;
	}

	.home-hero-stats>.k7-container {
		padding: 0 16px;
	}

	.home-hero-cta {
		width: fit-content;
	}

	.home-hero-stats-inner {
		margin-top: 32px;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		display: grid;

	}

	.home-hero-stat {
		padding: 12px 8px;
	}

	.home-hero-stat-number {
		font-size: 28px;
	}

	.home-hero-stat-label {
		font-size: 11px;
	}

	/* Home Services */
	.home-services {
		padding: 36px 0;
	}

	.home-services-heading {
		font-size: 28px;
	}

	.home-service-card {
		padding: 16px;
		/* clip-path: polygon(0 12px, 2px 6px, 6px 2px, 12px 0, calc(97% - 74px) 0, 100% 115px, 100% calc(100% - 12px), calc(100% - 2px) calc(100% - 6px), calc(100% - 6px) calc(100% - 2px), calc(100% - 12px) 100%, 12px 100%, 6px calc(100% - 2px), 2px calc(100% - 6px), 0 calc(100% - 12px)); */
	}

	.home-services-grid {
		gap: 35px;
		display: flex;
		flex-direction: column;
	}

	.home-service-icon {
		width: 53px;
		height: 53px;
	}

	.home-kotter .home-kotter-cta {
		padding: 2px 51px;
		margin: auto;
		width: fit-content;
	}

	.home-service-icon svg {
		width: 53px;
		height: 53px;
	}

	.home-service-number {
		font-size: 24px;
		top: 2px;
		right: 2px;
	}

	.home-service-card h3 {
		font-size: 15px;
	}

	.home-service-desc {
		font-size: 13px;
	}

	.home-service-desc ul li {
		font-size: 12px;
	}

	/* Services Page */
	.services-hero {
		height: 262px;
	}

	.services-hero h1 {
		font-size: 1.75rem;
	}

	.services-hero .services-hero-subtitle {
		font-size: 0.875rem;
	}

	.services-hero::after {
		width: 80px;
		height: 80px;
	}

	.services-section {
		padding: 40px 0;
	}

	.services-heading {
		font-size: 1.75rem;
	}

	.services-layout {
		grid-template-columns: 1fr;
	}

	.services-title-col {
		grid-column: 1 / -1;
	}

	.services-card {
		padding: 20px;
	}

	.services-number {
		font-size: 28px;
		top: -2px;
		right: 4px;
	}

	.services-card h3 {
		font-size: 1rem;
	}

	/* Service Inner */
	.si-hero {
		height: 240px;
	}

	.si-hero h1 {
		font-size: 1.75rem;
	}

	.si-hero .si-hero-subtitle {
		font-size: 0.875rem;
	}

	.si-hero::after {
		width: 80px;
		height: 80px;
	}

	.si-section {
		padding: 24px 0 48px;
	}

	/* Sub-Service Inner */
	.ssi-hero {
		height: 240px;
	}

	.ssi-hero h1 {
		font-size: 1.75rem;
	}

	.ssi-hero .ssi-hero-subtitle {
		font-size: 0.875rem;
	}

	.si-title {
		font-size: 1.5rem;
	}

	.si-content-grid {
		gap: 24px;
		margin-bottom: 40px;
	}

	.si-cards-grid {
		grid-template-columns: 1fr;
	}

	.si-card {
		padding: 20px;
	}

	/* Sub-Service Inner */
	.ssi-section {
		padding: 24px 0 48px;
	}

	.ssi-title {
		font-size: 1.5rem;
	}

	.ssi-content-grid {
		gap: 24px;
		margin-bottom: 40px;
		display: flex;
		flex-direction: column-reverse;
	}

	.ssi-cards-grid {
		grid-template-columns: 1fr;
	}

	.ssi-card {
		padding: 20px;
	}

	/* Home Kotter Banner */
	.home-kotter {
		padding: 32px 0;
	}

	.home-kotter-inner {
		min-height: 240px;
		margin: 0 16px;
		border-radius: 12px;
	}

	.home-kotter-content {
		padding: 32px 16px;
		gap: 16px;
	}

	.home-kotter-content h2 {
		font-size: 18px;
	}

	.home-kotter-content p {
		font-size: 12px;
	}

	.home-kotter-cta {
		padding: 12px 20px;
		font-size: 13px;
	}

	/* Home Service Transformation */
	.home-transform {
		padding: 36px 0;
	}

	.home-transform-heading {
		font-size: 20px;
		margin-bottom: 24px;
		text-align: left;
	}

	.footer-grid {
		grid-template-columns: none;
		gap: 32px;
		display: flex;
		flex-wrap: wrap;
	}

	.footer-grid .footer-col {
		width: 40%;
	}

	.home-kotter-inner {
		/* * -webkit-mask-size: 50% 100%; */
		mask-size: 50% 100%;

		/* Optional: adjust padding */
		padding: 0 20px;
		height: 250px;
		/* smaller height for mobile */
		max-width: 100%;
	}

	.home-transform-grid {
		gap: 37px;
		justify-content: center;
		/* align-items: center; */
		display: grid;
		flex-wrap: wrap;
	}


	.home-transform-col-header {
		height: 160px;
		padding: 58px 19px;
		display: inline-block;

		justify-content: center;
	}

	.home-transform-col-content ul {
		/* list-style: none; */
	}

	.home-transform-col-title {
		font-size: 14px;
		max-width: 80px;
	}

	.home-transform-col-number {
		font-size: 32px;
		display: flex;
		align-items: center;
		top: 98px;
	}

	.home-transform-col-content {
		font-size: 12px;
	}

	.home-transform-col-content ul li {
		font-size: 12px;
	}

	/* Home Trusted By */
	.home-trusted {
		padding: 36px 0;
	}

	.home-trusted-heading {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.home-trusted-logo {
		height: 60px;
	}

	.home-trusted-logo img {
		max-height: 48px;
	}

	/* Home Articles */
	.home-articles {
		padding: 36px 0;
	}

	.home-articles-heading {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.home-articles-grid {
		gap: 16px;
	}

	.home-article-title {
		font-size: 15px;
	}

	.home-article-excerpt {
		font-size: 13px;
	}

	.home-article-image {
		height: 100px;
	}

	/* Home Courses */
	.home-courses {
		padding: 36px 0;
	}

	.home-courses-heading {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.home-courses-grid {
		gap: 20px;
	}

	.home-course-card-image {
		height: 180px;
	}

	.home-course-card-body {
		padding: 50px 16px 20px;
		min-height: auto;
		margin-top: -60px;
	}

	.home-course-card-body h3 {
		font-size: 16px;
		padding-inline-end: 134px;
	}

	.home-course-modules li {
		font-size: 13px;
	}

	.home-course-cta {
		font-size: 13px;
		padding: 12px 20px;
	}

	/* Home buttons full-width */
	.home-section-footer {
		margin-top: 24px;
	}

	.home-btn-outline {
		font-size: 13px;
		padding: 12px 20px;
	}

	.course-outline-text h3 {
		font-size: 24px;
	}

	/* Payment */
	.payment-heading {
		font-size: 1.5rem;
		margin-bottom: 32px;
	}

	.payment-section {
		padding: 24px 0;
	}

	.payment-grid {
		gap: 32px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.total-amount {
		font-size: 1.5rem;
	}

	.thankyou-heading {
		font-size: 1.5rem;
	}

	.thankyou-card {
		padding: 32px 20px;
	}

	.login-detail {
		flex-wrap: wrap;
		justify-content: center;
	}

	.pay-button {
		width: 100%;
	}

	.thankyou-cta {
		width: 100%;
	}

	/* Coming Soon */
	.coming-soon-section {
		min-height: 30vh;
		padding: 32px 16px;
	}

	.coming-soon-section h1 {
		font-size: 1.5rem;
	}

	.coming-soon-section p {
		font-size: 0.875rem;
	}

	/* Footer */
	.site-footer {
		padding: 40px 24px 0;
	}

	.footer-col h4 {
		font-size: 1rem;
	}

	.footer-brand-label {
		font-size: 1rem;
	}

	.footer-bottom-right {
		flex-direction: column;
		gap: 8px;
	}

	.team-section>.k7-container>h2 {
		margin-bottom: 5px;
	}

	.team-section>.k7-container>h2,
	.team-group h3 {
		font-size: 24px;
	}

	.value-content h3 {
		font-size: 18px;
		margin-bottom: 0;
	}

	.team-grid.cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.team-grid.cols-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-services-grid {
		grid-template-columns: 1fr 1fr;
		display: grid;
	}

	.home-articles-grid,
	.home-courses-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.kotter-program-tab-panel.active {
		display: flex;
		flex-direction: column-reverse;
	}

	.course-outline-tab-panel-image {
		width: 100%;
	}

	.course-outline-tab-panel-image img {
		height: 352px;
	}

	.kotter-popup .kotter-popup-logo-k7,
	.kotter-popup .kotter-popup-logo-kotter {
		width: 80px !important;
		object-fit: contain;
	}

	.kotter-popup .kotter-popup-content h2 {
		margin-bottom: 12px !important;
	}

	.home-service-card {
		clip-path: path("M0 31C0 14 12.5 0 28 0H240C247 0 254 3 259 9L331 88C336 94 339 102 339 110V314C339 331 326.5 345 311 345H28C12.5 345 0 331 0 314V31Z");
	}

	.home-service-number {
		font-size: 36px !important;
		top: 2px;
		right: 0 !important;
	}

	.home-kotter-image img {
		object-position: -152px 0px;
		clip-path: none !important;
	}

	.home-kotter-inner::before {
		clip-path: none !important;
	}

}

@media (max-width: 767px) {
	.kotter-popup .kotter-popup-overlay {
		overflow: auto;
		height: 85vh;
	}

	.kotter-popup-gradient {
		position: fixed;
	}

	.kotter-popup .kotter-popup-content h2 {
		margin-bottom: 6px !important;
	}

	.kotter-popup .kotter-popup-cta-wrap {
		margin-top: 10px !important;
	}

	.kotter-popup .kotter-popup-content {
		gap: 11px !important;
	}

	.kotter-popup .kotter-popup-content h2 {
		font-size: 24px !important;
	}
}

@media (max-width: 660px) {
	.home-services-grid {
		grid-template-columns: none;
	}

	.home-transform-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-transform-grid {
		gap: 15px;
		display: flex;
	}

	.home-transform-col-content .home-transform-col {
		width: 100%;
	}

	.home-course-modules {
		padding: 0 30px;
	}

	.home-course-card-body {
		padding: 23px 36px 20px;
	}

	.home-transform-col {
		width: 47%;
	}

	.home-hero-cta {
		width: 100%;
	}

	.home-hero-stats-inner {
		display: flex;
	}

	.values-grid {
		grid-template-columns: 1fr;
	}

	.team-grid.cols-3 {
		grid-template-columns: 1fr;
	}

	.home-articles-grid,
	.home-courses-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media (max-height: 780px) {
	.home-hero {
		height: auto;
	}
}

/*--------------------------------------------------------------
# Articles Listing Page (page-articles.php)
--------------------------------------------------------------*/
.articles-hero {
	position: relative;
	height: 362px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	background-color: var(--k7-bg);
	text-align: left !important;
	width: 100%;
	min-width: 100vw;
	clip-path: polygon(0% 0%,
			100% 0%,
			100% 51.4%,
			87.7% 94.1%,
			83.8% 100%,
			0% 100%);
}

.articles-hero * {
	text-align: left !important;
}

.articles-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.articles-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 1%, rgba(56, 57, 62, 0.4) 49%);
	z-index: 1;
}



.articles-hero .k7-container {
	position: relative;
	z-index: 3;


	width: 100%;
	margin: auto;
}

.articles-hero h1 {
	font-family: var(--k7-font-heading);
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.003em;
	color: var(--k7-white);
	margin: 0 0 24px;
	max-width: 768px;
}

.articles-hero-subtitle {
	font-family: var(--k7-font-body);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.625;
	color: var(--k7-gray-light);
	margin: 0;
	max-width: 764px;
}

.articles-section {
	padding: 80px 0 120px;
	background-color: var(--k7-bg);
}

.articles-section-heading {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.004em;
	color: var(--k7-white);
	margin: 0 0 40px;
	text-align: left;
}

.articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px 40px;
}

.articles-card-wrap {
	padding: 2px;
	background-color: transparent;
	transition: background-color 0.3s, transform 0.2s;
	clip-path: polygon(0 14px, 4px 6px, 9px 1px, 14px 0,
			calc(100% - 111px) 0,
			calc(100% - 61px) 28px,
			calc(100% - 14px) 28px, calc(100% - 3px) 32px, calc(100% - 1px) 38px, 100% 44px,
			100% calc(100% - 14px), calc(100% - 3px) calc(100% - 6px), calc(100% - 9px) calc(100% - 1px), calc(100% - 14px) 100%,
			14px 100%, 6px calc(100% - 3px), 1px calc(100% - 9px), 0 calc(100% - 14px));
}

.articles-card-wrap:hover {
	background-color: var(--k7-red);
	transform: translateY(-2px);
}

.articles-card {
	background-color: var(--k7-bg-card);
	padding: 16px 0;
	display: flex;
	height: 100%;
	flex-direction: column;
	gap: 24px;
	clip-path: polygon(0 14px, 4px 6px, 9px 1px, 14px 0,
			calc(100% - 111px) 0,
			calc(100% - 61px) 28px,
			calc(100% - 14px) 28px, calc(100% - 3px) 32px, calc(100% - 1px) 38px, 100% 44px,
			100% calc(100% - 14px), calc(100% - 3px) calc(100% - 6px), calc(100% - 9px) calc(100% - 1px), calc(100% - 14px) 100%,
			14px 100%, 6px calc(100% - 3px), 1px calc(100% - 9px), 0 calc(100% - 14px));
}

.articles-card-top {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 0 16px;
}

.articles-card-date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	opacity: 0.6;
	color: var(--k7-white);
	font-family: var(--k7-font-body);
	font-size: 14px;
	line-height: 1.3;
}

.articles-card-date svg {
	flex-shrink: 0;
}

.articles-card-title {
	font-family: var(--k7-font-heading);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--k7-white);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.articles-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.articles-card-title a:hover {
	color: var(--k7-red);
}

.articles-card-image {
	display: block;
	width: 100%;
	height: 248px;
	overflow: hidden;
}

.articles-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.articles-card-wrap:hover .articles-card-image img {
	transform: scale(1.04);
}

.articles-card-wrap:hover .articles-card-title a {
	color: var(--k7-red);
}

.articles-card-wrap:hover .articles-card-link {
	color: var(--k7-red);
}

.articles-card-bottom {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 0 16px;
}

.articles-card-excerpt {
	font-family: var(--k7-font-body);
	font-size: 16px;
	line-height: 1.3;
	color: var(--k7-white);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.articles-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--k7-font-body);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--k7-white);
	text-decoration: none;
	transition: color 0.2s ease;
}

.articles-card-link:hover {
	color: var(--k7-red);
}

.articles-card-link span {
	font-family: var(--k7-font-ui);
	font-weight: 500;
	font-size: 14px;
}

.articles-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 64px;
	flex-wrap: wrap;
}

.articles-pagination a,
.articles-pagination .current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 8px;
	font-family: var(--k7-font-body);
	font-size: 14px;
	font-weight: 500;
	color: var(--k7-white);
	text-decoration: none;
	background-color: var(--k7-bg-card);
	border: 1px solid var(--k7-border);
	transition: all 0.2s ease;
}

.articles-pagination a:hover {
	background-color: var(--k7-red);
	border-color: var(--k7-red);
}

.articles-pagination .current {
	background-color: var(--k7-red);
	border-color: var(--k7-red);
}

.articles-empty {
	color: var(--k7-gray);
	font-size: 16px;
	text-align: center;
	padding: 40px 0;
}

@media (max-width: 1024px) {
	.articles-hero {
		height: 440px;
	}

	.articles-hero .k7-container {
		padding: 80px 56px;
	}

	.articles-hero h1 {
		font-size: 48px;
	}

	.articles-hero-subtitle {
		font-size: 18px;
	}

	.articles-hero::after {
		width: 140px;
		height: 140px;
		clip-path: path('M 140 0 L 24 116 Q 8 140, 0 140 L 140 140 Z');
	}

	.articles-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 32px;
	}
}

@media (max-width: 768px) {
	.articles-hero {
		height: 380px;
	}

	.articles-hero .k7-container {
		padding: 64px 24px;
	}

	.articles-hero h1 {
		font-size: 40px;
	}

	.articles-hero-subtitle {
		font-size: 16px;
	}

	.articles-hero::after {
		width: 100px;
		height: 100px;
		clip-path: path('M 100 0 L 18 82 Q 6 100, 0 100 L 100 100 Z');
	}

	.articles-section {
		padding: 60px 0 80px;
	}

	.articles-section-heading {
		font-size: 28px;
		margin-bottom: 32px;
	}

	.articles-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.articles-card-image {
		height: 220px;
	}
}

@media (max-width: 480px) {
	.articles-hero h1 {
		font-size: 32px;
	}

	.articles-card-title {
		font-size: 20px;
	}

	.articles-card-image {
		height: 200px;
	}
}

/*--------------------------------------------------------------
# Careers Listing Page (page-careers.php)
--------------------------------------------------------------*/
.careers-hero {
	position: relative;
	height: 362px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	background-color: var(--k7-bg);
	text-align: left !important;
	clip-path: polygon(0% 0%,
			100% 0%,
			100% 51.4%,
			87.7% 94.1%,
			83.8% 100%,
			0% 100%);
}

.careers-hero * {
	text-align: left !important;
}

.careers-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.careers-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 1%, rgba(56, 57, 62, 0.4) 49%);
	z-index: 1;
}


.careers-hero .k7-container {
	position: relative;
	z-index: 3;
	padding: 100px 0px 80px 0px;

	width: 100%;
	margin: auto;
}

.careers-hero h1 {
	font-family: var(--k7-font-heading);
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.003em;
	color: var(--k7-white);
	margin: 0 0 24px;
	max-width: 768px;
}

.careers-hero-subtitle {
	font-family: var(--k7-font-body);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.625;
	color: var(--k7-gray-light);
	margin: 0;
	max-width: 764px;
}

.careers-section {
	padding: 80px 0 120px;
	background-color: var(--k7-bg);
}

.careers-header {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 24px;
	margin-bottom: 48px;
}

.careers-section-heading {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.004em;
	color: var(--k7-white);
	margin: 0;
	text-align: left;
}

.careers-filters {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
}

.careers-filters-icon,
.careers-filters-reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	transition: background-color 0.2s ease;
}

.careers-filters-reset {
	text-decoration: none;
}

.careers-filters-reset:hover {
	background-color: rgba(238, 41, 52, 0.12);
}

.careers-filter {
	position: relative;
	display: inline-flex;
}

.careers-filter select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: transparent;
	border: 1px solid var(--k7-red);
	color: var(--k7-white);
	font-family: var(--k7-font-body);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	padding: 10px 40px 10px 16px;
	border-radius: 10px;
	min-width: 160px;
	cursor: pointer;
	background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.careers-filter select:hover,
.careers-filter select:focus {
	border-color: var(--k7-red);
	outline: none;
}

.careers-filter select option {
	background-color: var(--k7-bg-light);
	color: var(--k7-white);
}

.careers-filters-apply {
	background-color: var(--k7-red);
	border: none;
	color: var(--k7-white);
	font-family: var(--k7-font-body);
	font-size: 14px;
	font-weight: 500;
	padding: 10px 20px;
	border-radius: 10px;
	cursor: pointer;
}

.careers-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.careers-card {
	background-color: var(--k7-bg-card);
	border-radius: 10px;
	padding: 24px 24px 40px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform 0.25s ease, filter 0.25s ease;
	clip-path: polygon(88% 0, 100% 15%, 100% 100%, 33% 100%, 30% 96%, 19% 96%, 16% 100%, 0 100%, 0 0);

}

.careers-card:hover {
	transform: translateY(-4px);
	filter: brightness(1.1);
}

.careers-card-title {
	font-family: var(--k7-font-heading);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--k7-white);
	margin: 0;
}

.careers-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.careers-card-title a:hover {
	color: var(--k7-red);
}

.careers-card-category {
	font-family: var(--k7-font-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--k7-gray-light);
	margin: 0;
}

.careers-card-meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.careers-card-meta li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--k7-font-body);
	font-size: 14px;
	color: var(--k7-gray-light);
}

.careers-card-meta svg {
	flex-shrink: 0;
	color: var(--k7-gray);
}

.careers-card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 12px 16px;
	border: 1px solid var(--k7-red);
	border-radius: 8px;
	background-color: transparent;
	color: var(--k7-red);
	font-family: var(--k7-font-body);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.careers-card-btn:hover {
	background-color: var(--k7-red);
	color: var(--k7-white);
}

.careers-empty {
	color: var(--k7-gray);
	font-size: 16px;
	text-align: center;
	padding: 40px 0;
}

@media (max-width: 1024px) {
	.careers-hero {
		height: 440px;
	}

	.careers-hero .k7-container {
		padding: 80px 56px;
	}

	.careers-hero h1 {
		font-size: 48px;
	}

	.careers-hero-subtitle {
		font-size: 18px;
	}

	.careers-hero::after {
		width: 140px;
		height: 140px;
		clip-path: path('M 140 0 L 24 116 Q 8 140, 0 140 L 140 140 Z');
	}

	.careers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.careers-hero {
		height: 380px;
	}

	.careers-hero .k7-container {
		padding: 64px 24px;
	}

	.careers-hero h1 {
		font-size: 40px;
	}

	.careers-hero-subtitle {
		font-size: 16px;
	}

	.careers-hero::after {
		width: 100px;
		height: 100px;
		clip-path: path('M 100 0 L 18 82 Q 6 100, 0 100 L 100 100 Z');
	}

	.careers-section {
		padding: 60px 0 80px;
	}

	.careers-section-heading {
		font-size: 28px;
	}

	.careers-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
		margin-bottom: 32px;
	}

	.careers-filters {
		width: 100%;
	}

	.careers-filter {
		flex: 1 1 calc(50% - 8px);
	}

	.careers-filter select {
		min-width: 0;
		width: 100%;
	}

	.careers-grid {
		grid-template-columns: 1fr;
	}

	.team-grid.cols-2 .team-card {
		grid-template-columns: repeat(1, 1fr);
		display: inline;
	}

	.ki-main-grid,
	.ki-outline-grid {
		display: flex;
		flex-direction: column-reverse;
	}

	.single-kotter_course .k7-container {
		padding: 0;
	}

	.single-kotter_course .ki-hero .k7-container {
		padding: 0 24px;
	}

	.ki-section-header h2 {
		font-size: 24px;
	}

}

@media (max-width: 480px) {
	.careers-hero h1 {
		font-size: 32px;
	}

	/* .careers-filter {
		flex: 1 1 100%;
	} */
}

/*--------------------------------------------------------------
# Careers Inner (single-job_position.php)
--------------------------------------------------------------*/
.ji-main {
	background-color: var(--k7-bg);
	padding: 40px 0 120px;
}

.ji-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--k7-font-body);
	font-size: 14px;
	line-height: 1.2;
	color: var(--k7-white);
	margin: 24px 0 48px;
}

.ji-breadcrumb a {
	color: var(--k7-white);
	text-decoration: none;
	transition: color 0.2s ease;
}

.ji-breadcrumb a:hover {
	color: var(--k7-red);
}

.ji-breadcrumb-sep {
	color: var(--k7-red);
	font-size: 16px;
}

.ji-breadcrumb-current {
	color: var(--k7-red);
}

.ji-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 80px;
	align-items: start;
}

.ji-content {
	color: var(--k7-white);
}

.ji-title {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--k7-white);
	margin: 0 0 32px;
	letter-spacing: -0.01em;
}

.ji-section {
	margin-bottom: 28px;
}

.ji-section-title {
	font-family: var(--k7-font-heading);
	font-weight: 600;
	color: var(--k7-white);
	margin: 0 0 12px;
	font-size: 18px;
	line-height: 1.3;
}

.ji-section-title--primary {
	font-size: 24px;
	margin-bottom: 16px;
}

.ji-section-content {
	font-family: var(--k7-font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--k7-gray-light);
}

.ji-section-content p {
	margin: 0 0 8px;
}

.ji-section-content p:last-child {
	margin-bottom: 0;
}

.ji-section-content ul,
.ji-section-content ol {
	list-style: disc;
	padding-left: 22px;
	margin: 0;
}

.ji-section-content li {
	margin-bottom: 6px;
	color: var(--k7-gray-light);
}

.ji-section-content li::marker {
	color: var(--k7-white);
}

.ji-section-content em,
.ji-section-content i {
	font-style: italic;
}

.ji-meta {
	margin-top: 32px;
	font-family: var(--k7-font-body);
	font-size: 16px;
	color: var(--k7-gray-light);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ji-meta p {
	margin: 0;
}

.ji-meta strong {
	color: var(--k7-white);
	font-weight: 500;
}

/* ---- Form ---- */
.ji-form-wrap {
	color: var(--k7-white);
}

.ji-form-heading {
	font-family: var(--k7-font-heading);
	font-size: 22px;
	font-weight: 700;
	color: var(--k7-white);
	margin: 0 0 28px;
	letter-spacing: -0.01em;
}

.ji-form-error {
	background-color: rgba(238, 41, 52, 0.12);
	border: 1px solid rgba(238, 41, 52, 0.4);
	color: var(--k7-white);
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	margin-bottom: 20px;
}

.ji-form {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.ji-form-row {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.ji-form-row--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.ji-form-field {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ji-form-label {
	font-family: var(--k7-font-body);
	font-size: 14px;
	font-weight: 500;
	color: var(--k7-white);
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.ji-req {
	color: var(--k7-red);
	font-size: 12px;
	line-height: 1;
}

.ji-form-field input[type="text"],
.ji-form-field input[type="email"],
.ji-form-field input[type="tel"],
.ji-form-field textarea {
	background-color: #161616;
	border: 1px solid transparent;
	color: var(--k7-white);
	font-family: var(--k7-font-body);
	font-size: 15px;
	line-height: 1.5;
	padding: 14px 16px;
	border-radius: 6px;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.2s ease;
}

.ji-form-field input[type="text"],
.ji-form-field input[type="email"],
.ji-form-field input[type="tel"] {
	height: 48px;
}

.ji-form-field input:focus,
.ji-form-field textarea:focus {
	outline: none;
	border-color: var(--k7-red);
}

.ji-form-field textarea {
	resize: vertical;
	min-height: 200px;
}

/* Upload row — Choose File button is its own pill, "No file uploaded"
   is a separate dark capsule sitting beside it (Figma-accurate). */
.ji-upload {
	display: flex;
	align-items: stretch;
	gap: 16px;
	background-color: transparent;
}

.ji-upload-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 28px;
	height: 48px;
	background-color: transparent;
	border: 1px solid var(--k7-red);
	color: var(--k7-red);
	font-family: var(--k7-font-body);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	border-radius: 6px;
	transition: background-color 0.2s ease, color 0.2s ease;
	flex-shrink: 0;
}

.ji-upload-btn:hover {
	background-color: var(--k7-red);
	color: var(--k7-white);
}

.ji-upload-btn input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.ji-upload-name {
	flex: 1;
	display: inline-flex;
	align-items: center;
	padding: 0 18px;
	height: 48px;
	background-color: #161616;
	border-radius: 6px;
	color: var(--k7-gray-light);
	font-family: var(--k7-font-body);
	font-size: 14px;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ji-upload-name[data-has-file="true"] {
	color: var(--k7-white);
}

/* Submit button — full-width transparent pill with thin red outline,
   gray label until hover. */
.ji-form-submit {
	background-color: transparent;
	border: 1px solid rgba(238, 41, 52, 0.45);
	color: var(--k7-gray-light);
	font-family: var(--k7-font-body);
	font-size: 15px;
	font-weight: 500;
	padding: 16px 24px;
	border-radius: 6px;
	cursor: pointer;
	margin-top: 12px;
	width: 100%;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ji-form-submit:hover:not(:disabled) {
	background-color: var(--k7-red);
	color: var(--k7-white);
	border-color: var(--k7-red);
}

.ji-form-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	border: 1px solid #38393E;
}

/* ---- Success state ---- */
.ji-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	padding: 100px 0 140px;
	text-align: center;
}

.ji-success-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background-color: var(--k7-red);
	box-shadow: 0 0 0 6px rgba(238, 41, 52, 0.12);
}

.ji-success-heading {
	font-family: var(--k7-font-heading);
	font-size: 36px;
	font-weight: 600;
	color: var(--k7-white);
	margin: 0;
	letter-spacing: -0.01em;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.ji-body {
		gap: 56px;
	}

	.ji-title {
		font-size: 30px;
	}

	.ji-success-heading {
		font-size: 30px;
	}
}



@media (max-width: 768px) {
	.ji-main {
		padding: 24px 0 80px;
	}

	.ji-breadcrumb {
		margin: 16px 0 32px;
	}

	.ji-body {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.ji-title {
		font-size: 26px;
		margin-bottom: 24px;
	}

	.ji-form-row--split {
		grid-template-columns: 1fr;
	}

	.ji-success {
		padding: 60px 0 80px;
	}

	.ji-success-icon {
		width: 80px;
		height: 80px;
	}

	.ji-success-heading {
		font-size: 26px;
	}

	.team-card-name {
		font-size: 15px;
	}

	.team-card-role {
		font-size: 14px;
	}

	.services-desc p {
		font-size: 13px;
	}

	.services-card {
		clip-path: path("M0 31C0 14 12.5 0 28 0H240C247 0 254 3 259 9L331 88C336 94 339 102 339 110V314C339 331 326.5 345 311 345H28C12.5 345 0 331 0 314V31Z");
	}

	.services-number {
		font-size: 36px !important;
	}

	.kotter-accent {
		top: 7px;
	}

	.single-kotter_course .ki-red-icon {
		position: relative;
		top: 7px;
	}

	.program-section-header {
		position: relative;
		padding-inline-start: 32px;
	}

	.program-red-icon {
		top: 8px !important;
		position: absolute !important;
		min-width: 20px;
		left: 0;

	}
	.ki-about-body ul{
		margin-left: 0;
	}
}

@media (max-width: 480px) {
	.ji-upload {
		flex-direction: column;
		gap: 10px;
	}

	.ji-upload-btn {
		width: 100%;
	}
}

/* ============================================
   404 Page
   ============================================ */
.k7-404 {
	background: var(--k7-bg);
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 24px;
	position: relative;
	overflow: hidden;
}

.k7-404-inner {
	width: 100%;
	max-width: 1280px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
	position: relative;
}

.k7-404-left {
	position: relative;
	min-height: 560px;
	padding: 40px 0 0 40px;
}

.k7-404-triangle {
	position: relative;
	top: 0;
	left: 0;
	width: 507px;
	height: 706px;
	display: block;
	z-index: 0;
}

.k7-404-logo-wrap {
	position: absolute;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	top: 71px;
	left: 99px;

}

.k7-404-logo,
.k7-404-logo-text {
	max-width: 320px;
	height: auto;
}

.k7-404-logo-text {
	font-family: "Bai Jamjuree", sans-serif;
	font-weight: 700;
	font-size: 160px;
	line-height: 1;
	color: var(--k7-white);
	letter-spacing: -0.05em;
}

.k7-404-right {
	text-align: center;
	padding: 0 24px;
}

.k7-404-oops {
	font-family: "Bai Jamjuree", sans-serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 1.1;
	color: var(--k7-white);
	margin: 0 0 24px;
}

.k7-404-error-label {
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 32px;
	letter-spacing: 0.1em;
	color: var(--k7-red);
	margin: 0 0 0px;
}

.k7-404-code {
	font-family: "Bai Jamjuree", sans-serif;
	font-weight: 700;
	font-size: 120px;
	line-height: 1;
	color: var(--k7-red);
	margin: 0 0 24px;
	letter-spacing: -0.02em;
}

.k7-404-title {
	font-family: "Bai Jamjuree", sans-serif;
	font-weight: 600;
	font-size: 40px;
	line-height: 1.2;
	color: var(--k7-white);
	margin: 0 0 12px;
}

.k7-404-subtitle {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 32px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 32px;
}

.k7-404-btn {
	display: inline-block;
	padding: 12px 28px;
	border: 1px solid var(--k7-red);
	border-radius: 8px;
	background: transparent;
	color: var(--k7-red) !important;
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.k7-404-btn:hover {
	background: var(--k7-red);
	color: var(--k7-white) !important;
}

@media (max-width: 820px) {
	.k7-404-triangle {
		position: relative;
		top: 0;
		left: 0;
		width: 357px;
		height: 500px;
		display: block;
		z-index: 0;
	}

	.k7-404-title {
		font-size: 35px;
	}

	.k7-404-subtitle {
		font-size: 23px;
	}

	.k7-404 {
		min-height: auto;
	}
}

@media (max-width: 1024px) {
	.k7-404-code {
		font-size: 96px;
	}

	.k7-404-left {
		min-height: 440px;
	}

	.k7-404-logo-text {
		font-size: 120px;
	}
}

@media (max-width: 768px) {
	.k7-404-inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.k7-404-left {
		display: none;
	}

	.k7-404-left {
		min-height: 320px;
		padding: 32px 0 0 32px;
	}

	.k7-404-logo,
	.k7-404-logo-text {
		max-width: 180px;
	}

	.k7-404-logo-text {
		font-size: 96px;
	}

	.k7-404-oops {
		font-size: 36px;
	}

	.k7-404-code {
		font-size: 80px;
	}

	.k7-404-title {
		font-size: 22px;
	}

	.ki-accordion-trigger {
		text-align: left;
		line-height: 18px;
	}

	.ki-accordion-panel {
		padding-top: 24px;
	}

	.ki-outline-tab-btn {
		text-align: left;
	}

	.kotter-program-tab-panel-image img,
	.course-card-image img {
		height: 270px !important;
	}

	.ki-outline-tab-panel.active {
		display: flex;
		flex-direction: column-reverse;
	}

	.ki-outline-tab-panel-image {
		width: 100%;
	}

	.ki-main-image {
		position: relative;
		width: 100%;
	}

	.course-outline-tab-panel.active {
		display: flex !important;
		flex-direction: column-reverse;
	}

	.course-outline-tab-btn {
		text-align: left;
	}
	.courses-section-header {
		align-items: flex-start;
	}
	.courses-red-icon {
		top:9px
	}
	.course-about-body ul{
		margin-left: 0;
	}
}
.courses-programs-section .course-card-content .course-desc:first-of-type{
 font-weight: 400;
}
@media (max-width: 480px) {
	.k7-404 {
		padding: 40px 16px;
	}

	.k7-404-left {
		min-height: 240px;
	}

	.k7-404-logo,
	.k7-404-logo-text {
		max-width: 140px;
	}

	.k7-404-logo-text {
		font-size: 72px;
	}

	.k7-404-code {
		font-size: 64px;
	}

	.kotter-course-card-badge {
		width: 65.979px;
	}

}

@media (max-width: 390px) {
	.kotter-course-card-badge {

		right: -9px;
	}

	.value-icon {
		background-size: 88% 100%;
	}

	.value-content p {
		font-size: 13px;
		line-height: 1.4;
	}

	.partner-card .team-card-name {
		font-size: 18px;
	}

	.home-service-number {
		font-size: 24px;
		top: 2px;
		right: -6px;

	}

	.home-course-card-body h3 {

		padding-top: 15px;
	}
	.careers-filters-icon, .careers-filters-reset{
		width: 100% !important;
	}
	    .careers-filter {
        flex: 1 1 calc(51% - 8px);
    }
}