:root {
	--kr-accent: #15803D;
	--kr-accent-dark: #0F5F2E;
	--kr-accent-light: #DCFCE7;
	--kr-bg: #FAFAF8;
	--kr-surface: #F3F4EF;
	--kr-dark: #0F1D1A;
	--kr-dark-surface: #1A2E28;
	--kr-dark-border: #2D4A40;
	--kr-text: #111827;
	--kr-body: #374151;
	--kr-muted: #6B7280;
	--kr-text-dark: #E5F0EC;
	--kr-heading-dark: #F9FAFB;
	--kr-border: #D1D5CC;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: #FAFAF8;
	color: #374151;
	margin: 0;
	padding: 0;
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

a {
	color: #15803D;
	text-decoration: none;
}

a:hover {
	color: #0F5F2E;
}

img {
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4, h5, h6 {
	color: #111827;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 0;
}

p {
	margin-top: 0;
}

.kr-btn-primary {
	display: inline-block;
	background: #15803D;
	color: #FFFFFF;
	padding: 12px 28px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
	text-decoration: none;
}

.kr-btn-primary:hover {
	background: #0F5F2E;
	color: #FFFFFF;
}

.kr-btn-outline {
	display: inline-block;
	background: transparent;
	color: #15803D;
	padding: 12px 28px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	border: 2px solid #15803D;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
}

.kr-btn-outline:hover {
	background: #DCFCE7;
	color: #15803D;
}

.kr-btn-white {
	display: inline-block;
	background: #FFFFFF;
	color: #15803D;
	padding: 12px 28px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
	text-decoration: none;
}

.kr-btn-white:hover {
	background: #DCFCE7;
	color: #15803D;
}

.kr-btn-outline-white {
	display: inline-block;
	background: transparent;
	color: #FFFFFF;
	padding: 12px 28px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	border: 2px solid #FFFFFF;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
}

.kr-btn-outline-white:hover {
	background: rgba(255,255,255,0.1);
	color: #FFFFFF;
}

.kr-section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #15803D;
	margin-bottom: 12px;
}

.kr-section-title {
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
}

.kr-section-desc {
	font-size: 18px;
	color: #6B7280;
	max-width: 600px;
	margin: 0 auto 48px;
}

.kr-section-header {
	text-align: center;
	margin-bottom: 48px;
}

.section-light {
	background: #FAFAF8;
	padding: 80px 0;
}

.section-surface {
	background: #F3F4EF;
	padding: 80px 0;
}

.section-dark {
	background: #0F1D1A;
	padding: 80px 0;
}

.section-dark .kr-section-title {
	color: #F9FAFB;
}

.section-dark .kr-section-desc {
	color: #E5F0EC;
}

.section-dark .kr-section-label {
	color: #DCFCE7;
}

/* NAV */
.kr-nav {
	background: #FAFAF8;
	border-bottom: 1px solid #D1D5CC;
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 0;
}

.kr-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	gap: 24px;
}

.kr-nav__logo {
	font-size: 22px;
	font-weight: 700;
	color: #15803D;
	text-decoration: none;
	letter-spacing: -0.02em;
	flex-shrink: 0;
}

.kr-nav__logo:hover {
	color: #0F5F2E;
}

.kr-nav__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.kr-nav__links li a {
	font-size: 15px;
	font-weight: 500;
	color: #374151;
	padding: 8px 12px;
	border-radius: 6px;
	transition: color 0.2s ease;
	text-decoration: none;
}

.kr-nav__links li a:hover,
.kr-nav__links li a.active {
	color: #15803D;
}

.kr-nav__cta {
	background: #15803D;
	color: #FFFFFF !important;
	padding: 8px 20px !important;
	border-radius: 8px;
	font-weight: 600;
}

.kr-nav__cta:hover {
	background: #0F5F2E;
	color: #FFFFFF !important;
}

.kr-nav__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	width: 36px;
	height: 36px;
}

.kr-nav__toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #111827;
	border-radius: 2px;
	transition: all 0.2s ease;
}

@media (max-width: 991px) {
	.kr-nav__toggle {
		display: flex;
	}
	.kr-nav__links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #FAFAF8;
		flex-direction: column;
		align-items: flex-start;
		padding: 16px 24px 24px;
		border-bottom: 1px solid #D1D5CC;
		gap: 2px;
	}
	.kr-nav__links.is-open {
		display: flex;
	}
	.kr-nav__links li {
		width: 100%;
	}
	.kr-nav__links li a {
		display: block;
		padding: 10px 0;
	}
}

/* HERO LEFT TEXT */
.kr-hero {
	background: #0F1D1A;
	padding: 100px 0 80px;
	position: relative;
	overflow: hidden;
}

.kr-hero__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #DCFCE7;
	background: rgba(21,128,61,0.25);
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.kr-hero__title {
	font-size: 48px;
	font-weight: 700;
	color: #F9FAFB;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin-bottom: 20px;
}

.kr-hero__subtitle {
	font-size: 18px;
	color: #E5F0EC;
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 520px;
}

.kr-hero__cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.kr-hero__badges {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.kr-hero__badge {
	font-size: 14px;
	color: #E5F0EC;
	display: flex;
	align-items: center;
	gap: 6px;
}

.kr-hero__badge::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #15803D;
	border-radius: 50%;
}

.kr-hero__img-col {
	display: flex;
	align-items: center;
	justify-content: center;
}

.kr-hero__img {
	width: 100%;
	max-width: 560px;
	border-radius: 12px;
	display: block;
}

/* HERO CENTER (compact) */
.kr-hero-center {
	padding: 60px 0;
}

.kr-hero-center .kr-hero__title {
	font-size: 40px;
}

.kr-hero-center-light {
	background: #F3F4EF;
}

.kr-hero-center-light .kr-hero__title {
	color: #111827;
}

.kr-hero-center-light .kr-hero__subtitle {
	color: #374151;
}

.kr-hero-center-light .kr-hero__label {
	background: #DCFCE7;
	color: #15803D;
}

/* STATS BAR */
.kr-stats {
	background: #F3F4EF;
	padding: 48px 0;
	border-bottom: 1px solid #D1D5CC;
}

.kr-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.kr-stats__item {
	text-align: center;
	padding: 20px;
}

.kr-stats__number {
	display: block;
	font-size: 40px;
	font-weight: 700;
	color: #15803D;
	line-height: 1;
	margin-bottom: 8px;
}

.kr-stats__label {
	display: block;
	font-size: 14px;
	color: #6B7280;
}

@media (max-width: 767px) {
	.kr-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* STATS CARDS (about page) */
.kr-stats-cards {
	background: #F3F4EF;
	padding: 80px 0;
}

.kr-stats-card {
	background: #FFFFFF;
	border: 1px solid #D1D5CC;
	border-radius: 10px;
	padding: 28px;
	text-align: center;
	height: 100%;
}

.kr-stats-card .kr-stats__number {
	font-size: 36px;
	margin-bottom: 8px;
}

.kr-stats-card .kr-stats__label {
	font-size: 16px;
	font-weight: 600;
	color: #374151;
}

/* FEATURES GRID 6 */
.kr-features {
	background: #FAFAF8;
	padding: 80px 0;
}

.kr-features__card {
	background: #FFFFFF;
	border: 1px solid #D1D5CC;
	border-radius: 10px;
	padding: 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kr-features__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 40px rgba(15,29,26,0.14);
}

.kr-features__icon {
	width: 48px;
	height: 48px;
	background: #DCFCE7;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	font-size: 20px;
	color: #15803D;
}

.kr-features__name {
	font-size: 20px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 10px;
}

.kr-features__text {
	font-size: 15px;
	color: #6B7280;
	line-height: 1.6;
	flex: 1;
}

/* FEATURES ALTERNATING */
.kr-features-alt {
	padding: 80px 0;
}

.kr-features-alt__row {
	padding: 60px 0;
	border-bottom: 1px solid #D1D5CC;
}

.kr-features-alt__row:last-child {
	border-bottom: none;
}

.kr-features-alt__row:nth-child(even) {
	background: #F3F4EF;
}

.kr-features-alt__row:nth-child(even) .row {
	flex-direction: row-reverse;
}

.kr-features-alt__title {
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 16px;
}

.kr-features-alt__text {
	font-size: 16px;
	color: #374151;
	line-height: 1.7;
	margin-bottom: 16px;
}

.kr-features-alt__img {
	width: 100%;
	border-radius: 12px;
	display: block;
}

/* PROCESS NUMBERED */
.kr-process {
	background: #0F1D1A;
	padding: 80px 0;
}

.kr-process__step {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin-bottom: 36px;
}

.kr-process__step:last-child {
	margin-bottom: 0;
}

.kr-process__num {
	font-size: 48px;
	font-weight: 700;
	color: #15803D;
	line-height: 1;
	flex-shrink: 0;
	width: 70px;
}

.kr-process__name {
	font-size: 22px;
	font-weight: 600;
	color: #F9FAFB;
	margin-bottom: 8px;
}

.kr-process__text {
	font-size: 16px;
	color: #E5F0EC;
	line-height: 1.65;
}

.kr-process__img {
	width: 100%;
	border-radius: 12px;
}

/* PROCESS TIMELINE (product page) */
.kr-timeline {
	background: #F3F4EF;
	padding: 80px 0;
}

.kr-timeline__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
	margin-top: 48px;
}

.kr-timeline__step {
	text-align: center;
	padding: 28px 20px;
	background: #FFFFFF;
	border: 1px solid #D1D5CC;
	border-radius: 10px;
	position: relative;
}

.kr-timeline__num {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #15803D;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.kr-timeline__name {
	font-size: 18px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 10px;
}

.kr-timeline__text {
	font-size: 14px;
	color: #6B7280;
	line-height: 1.6;
}

@media (max-width: 767px) {
	.kr-timeline__steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* TESTIMONIALS */
.kr-testimonials {
	background: #F3F4EF;
	padding: 80px 0;
}

.kr-testimonial-card {
	background: #FFFFFF;
	border-left: 4px solid #15803D;
	border-radius: 0 10px 10px 0;
	padding: 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.kr-testimonial-card__quote {
	font-size: 16px;
	color: #374151;
	line-height: 1.7;
	flex: 1;
	margin-bottom: 20px;
	font-style: italic;
}

.kr-testimonial-card__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #DCFCE7;
	color: #15803D;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	margin-right: 12px;
	flex-shrink: 0;
}

.kr-testimonial-card__meta {
	display: flex;
	align-items: center;
}

.kr-testimonial-card__name {
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	display: block;
}

.kr-testimonial-card__role {
	font-size: 13px;
	color: #6B7280;
}

/* CTA BANNER */
.kr-cta {
	background: #15803D;
	padding: 80px 0;
	text-align: center;
}

.kr-cta__title {
	font-size: 36px;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 12px;
}

.kr-cta__desc {
	font-size: 18px;
	color: #DCFCE7;
	margin-bottom: 32px;
}

.kr-cta__buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* CTA CARD */
.kr-cta-card-section {
	background: #F3F4EF;
	padding: 80px 0;
}

.kr-cta-card {
	background: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0 8px 40px rgba(15,29,26,0.14);
	padding: 48px;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}

.kr-cta-card__title {
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 12px;
}

.kr-cta-card__desc {
	font-size: 16px;
	color: #6B7280;
	margin-bottom: 28px;
}

/* FOOTER */
.kr-footer {
	background: #0F1D1A;
	padding: 60px 0 0;
}

.kr-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
	padding-bottom: 48px;
}

.kr-footer__logo {
	font-size: 22px;
	font-weight: 700;
	color: #15803D;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 12px;
}

.kr-footer__tagline {
	font-size: 14px;
	color: #E5F0EC;
	line-height: 1.6;
	margin-bottom: 0;
}

.kr-footer__col h4 {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #F9FAFB;
	margin-bottom: 16px;
}

.kr-footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.kr-footer__col ul li {
	margin-bottom: 10px;
}

.kr-footer__col ul li a {
	font-size: 14px;
	color: #E5F0EC;
	text-decoration: none;
	transition: color 0.2s ease;
}

.kr-footer__col ul li a:hover {
	color: #DCFCE7;
}

.kr-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 14px;
	color: #E5F0EC;
}

.kr-footer__contact-item i {
	color: #15803D;
	margin-top: 2px;
	flex-shrink: 0;
	width: 16px;
}

.kr-footer__contact-item a {
	color: #E5F0EC;
	text-decoration: none;
}

.kr-footer__contact-item a:hover {
	color: #DCFCE7;
}

.kr-footer__bottom {
	border-top: 1px solid #2D4A40;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.kr-footer__bottom p {
	font-size: 13px;
	color: #E5F0EC;
	margin: 0;
}

.kr-footer__legal {
	display: flex;
	gap: 20px;
}

.kr-footer__legal a {
	font-size: 13px;
	color: #E5F0EC;
	text-decoration: none;
}

.kr-footer__legal a:hover {
	color: #DCFCE7;
}

@media (max-width: 991px) {
	.kr-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 575px) {
	.kr-footer__grid {
		grid-template-columns: 1fr;
	}
	.kr-footer__bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* CONTACT PAGE */
.kr-contact {
	padding: 80px 0;
}

.kr-contact__form-title {
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 24px;
}

.kr-contact__form .form-group {
	margin-bottom: 20px;
}

.kr-contact__form input,
.kr-contact__form select,
.kr-contact__form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #D1D5CC;
	border-radius: 8px;
	font-size: 15px;
	color: #374151;
	background: #FFFFFF;
	font-family: inherit;
	transition: border-color 0.2s ease;
	outline: none;
}

.kr-contact__form input:focus,
.kr-contact__form select:focus,
.kr-contact__form textarea:focus {
	border-color: #15803D;
}

.kr-contact__form textarea {
	resize: vertical;
}

.kr-contact__info {
	padding: 32px;
	background: #F3F4EF;
	border-radius: 12px;
}

.kr-contact__info-title {
	font-size: 22px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 24px;
}

.kr-contact__info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 20px;
	font-size: 15px;
	color: #374151;
}

.kr-contact__info-item i {
	color: #15803D;
	margin-top: 2px;
	flex-shrink: 0;
	width: 20px;
	font-size: 16px;
}

.kr-contact__info-item a {
	color: #374151;
	text-decoration: none;
}

.kr-contact__info-item a:hover {
	color: #15803D;
}

.kr-office-hours {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #D1D5CC;
}

.kr-office-hours h4 {
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 8px;
}

.kr-office-hours p {
	font-size: 14px;
	color: #6B7280;
	margin-bottom: 4px;
}

/* TEAM */
.kr-team {
	background: #FAFAF8;
	padding: 80px 0;
}

.kr-team__card {
	background: #FFFFFF;
	border: 1px solid #D1D5CC;
	border-radius: 10px;
	padding: 28px;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kr-team__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 40px rgba(15,29,26,0.14);
}

.kr-team__photo {
	width: 128px;
	height: 128px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 16px;
	display: block;
}

.kr-team__name {
	font-size: 20px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 6px;
}

.kr-team__role {
	font-size: 14px;
	color: #15803D;
	font-weight: 500;
	margin-bottom: 10px;
}

.kr-team__bio {
	font-size: 14px;
	color: #6B7280;
	line-height: 1.6;
	margin-bottom: 0;
}

/* BLOG GRID */
.kr-blog {
	background: #FAFAF8;
	padding: 80px 0;
}

.kr-blog__card {
	background: #FFFFFF;
	border: 1px solid #D1D5CC;
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kr-blog__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 40px rgba(15,29,26,0.14);
}

.kr-blog__thumb {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.kr-blog__body {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.kr-blog__tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #15803D;
	background: #DCFCE7;
	padding: 3px 8px;
	border-radius: 4px;
	margin-bottom: 10px;
}

.kr-blog__title {
	font-size: 17px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
	margin-bottom: 8px;
}

.kr-blog__title a {
	color: #111827;
	text-decoration: none;
}

.kr-blog__title a:hover {
	color: #15803D;
}

.kr-blog__excerpt {
	font-size: 14px;
	color: #6B7280;
	line-height: 1.6;
	flex: 1;
	margin-bottom: 16px;
}

.kr-blog__date {
	font-size: 13px;
	color: #6B7280;
	margin-bottom: 12px;
}

.kr-blog__read-more {
	font-size: 14px;
	font-weight: 600;
	color: #15803D;
	text-decoration: none;
	margin-top: auto;
}

.kr-blog__read-more:hover {
	color: #0F5F2E;
}

/* ABOUT STORY */
.kr-about-story {
	background: #FAFAF8;
	padding: 80px 0;
}

.kr-about-story__text h2 {
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 20px;
}

.kr-about-story__text p {
	font-size: 17px;
	color: #374151;
	line-height: 1.75;
	margin-bottom: 20px;
}

.kr-about-story__img {
	width: 100%;
	border-radius: 12px;
	display: block;
}

/* LEGAL PAGES */
.kr-legal {
	background: #FAFAF8;
	padding: 80px 0;
}

.kr-legal__content {
	max-width: 780px;
	margin: 0 auto;
}

.kr-legal__content h1 {
	font-size: 36px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 8px;
}

.kr-legal__content .kr-legal__date {
	font-size: 14px;
	color: #6B7280;
	margin-bottom: 40px;
}

.kr-legal__content h2 {
	font-size: 22px;
	font-weight: 700;
	color: #111827;
	margin-top: 40px;
	margin-bottom: 12px;
}

.kr-legal__content p {
	font-size: 16px;
	color: #374151;
	line-height: 1.75;
	margin-bottom: 16px;
}

.kr-legal__content ul, .kr-legal__content ol {
	font-size: 16px;
	color: #374151;
	line-height: 1.75;
	padding-left: 24px;
	margin-bottom: 16px;
}

.kr-legal__content a {
	color: #15803D;
}

/* 404 PAGE */
.kr-404 {
	background: #FAFAF8;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.kr-404__main {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 0;
	text-align: center;
}

.kr-404__code {
	font-size: 120px;
	font-weight: 700;
	color: #15803D;
	line-height: 1;
	margin-bottom: 16px;
	letter-spacing: -0.04em;
}

.kr-404__title {
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 12px;
}

.kr-404__text {
	font-size: 17px;
	color: #6B7280;
	margin-bottom: 32px;
}

.kr-404__nav {
	padding: 20px 0;
	border-bottom: 1px solid #D1D5CC;
}

.kr-404__footer {
	padding: 20px 0;
	border-top: 1px solid #D1D5CC;
	text-align: center;
}

.kr-404__footer p {
	font-size: 13px;
	color: #6B7280;
	margin: 0;
}

/* COOKIE BANNER */
#kr-cookie-banner {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #1A2E28;
	border-top: 1px solid #2D4A40;
	padding: 16px 24px;
	z-index: 9999;
	font-size: 14px;
	color: #E5F0EC;
}

.kr-cookie__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.kr-cookie__text {
	flex: 1;
	min-width: 250px;
}

.kr-cookie__text a {
	color: #DCFCE7;
	text-decoration: underline;
}

.kr-cookie__buttons {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.kr-cookie__accept {
	background: #15803D;
	color: #FFFFFF;
	border: none;
	padding: 8px 20px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.kr-cookie__manage {
	background: transparent;
	color: #E5F0EC;
	border: 1px solid #2D4A40;
	padding: 8px 20px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 767px) {
	.kr-hero__title {
		font-size: 34px;
	}
	.kr-hero-center .kr-hero__title {
		font-size: 28px;
	}
	.kr-section-title {
		font-size: 26px;
	}
	.kr-cta__title {
		font-size: 26px;
	}
	.kr-hero {
		padding: 60px 0;
	}
	.kr-hero__img-col {
		margin-top: 32px;
	}
}

@media (max-width: 575px) {
	.kr-hero__cta {
		flex-direction: column;
	}
	.kr-cta__buttons {
		flex-direction: column;
		align-items: center;
	}
}

/* Logo dark/light variant swap */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
/* Light hero default: show dark logo */
.kr-nav .logo-img--dark { display: inline-block; }
.kr-nav .logo-img--light { display: none; }
/* When nav on dark bg (scrolled dark, hero-dark, navbar-dark), swap */
.kr-nav.on-dark .logo-img--dark,
.navbar-dark .logo-img--dark,
body.hero-dark .kr-nav .logo-img--dark { display: none; }
.kr-nav.on-dark .logo-img--light,
.navbar-dark .logo-img--light,
body.hero-dark .kr-nav .logo-img--light { display: inline-block; }
