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

:root {
	--p: #0a1628;
	--a: #5d8c0d;
	--al: #7ab317;
	--w: #fff;
	--g0: #f8f9fa;
	--g1: #f1f3f5;
	--g2: #e9ecef;
	--g5: #adb5bd;
	--g6: #868e96;
	--g7: #495057;
	--g8: #343a40
}

html {
	scroll-behavior: smooth
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--g8);
	line-height: 1.6
}

body.lock {
	overflow: hidden
}

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

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

.c {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px
}

.sl {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: .73rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--a);
	margin-bottom: 12px
}

.sl::before {
	content: '';
	width: 28px;
	height: 2px;
	background: var(--a)
}

.st {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	color: var(--p);
	line-height: 1.2;
	margin-bottom: 14px
}

.ss {
	font-size: 1rem;
	color: var(--g6);
	max-width: 600px;
	line-height: 1.7
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-size: .9rem;
	cursor: pointer;
	border: none;
	font-family: inherit;
	transition: all .3s
}

.bp {
	background: var(--a);
	color: var(--w)
}

.bp:hover {
	background: var(--al);
	transform: translateY(-2px)
}

.bo {
	background: 0 0;
	color: var(--w);
	border: 2px solid rgba(255, 255, 255, .3)
}

.bo:hover {
	border-color: var(--w)
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(10, 22, 40, .95);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.ni {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 24px;
	max-width: 1240px;
	margin: 0 auto
}

.nl img {
	height: 32px;
	filter: brightness(0) invert(1)
}

.nk {
	display: flex;
	gap: 24px;
	list-style: none;
	align-items: center
}

.nk a {
	color: rgba(255, 255, 255, .7);
	font-size: .84rem;
	font-weight: 500;
	transition: all .3s
}

.nk a:hover {
	color: var(--w)
}

.nc {
	background: var(--a) !important;
	color: var(--w) !important;
	padding: 9px 20px !important;
	border-radius: 50px;
	font-weight: 600
}

.mt {
	display: none;
	background: 0 0;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 5px
}

.mt span {
	width: 22px;
	height: 2px;
	background: var(--w);
	display: block
}

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #0a1628, #1a2d4a 50%, #0d1f35);
	padding-top: 70px;
	position: relative;
	overflow: hidden
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 70% 50%, rgba(93, 140, 13, .1), transparent 60%)
}

.hg {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	position: relative;
	z-index: 2
}

.hb {
	display: inline-block;
	background: rgba(93, 140, 13, .15);
	border: 1px solid rgba(93, 140, 13, .3);
	padding: 7px 14px;
	border-radius: 50px;
	font-size: .72rem;
	font-weight: 600;
	color: var(--al);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 20px
}

.hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.2rem, 4.5vw, 3.5rem);
	font-weight: 700;
	color: var(--w);
	line-height: 1.15;
	margin-bottom: 20px
}

.hero h1 em {
	color: var(--al);
	font-style: normal
}

.ht {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, .6);
	line-height: 1.8;
	margin-bottom: 32px;
	max-width: 480px
}

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

.hv {
	display: flex;
	align-items: center;
	justify-content: center
}

.hiw {
	position: relative;
	max-width: 380px;
	width: 100%
}

.hiw img {
	width: 100%;
	filter: drop-shadow(0 20px 50px rgba(0, 0, 0, .4));
	animation: fl 6s ease-in-out infinite
}

@keyframes fl {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-12px)
	}
}

.hgl {
	position: absolute;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(93, 140, 13, .3), transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	filter: blur(40px)
}

.hs {
	display: flex;
	gap: 36px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .1)
}

.sv {
	font-size: 1.7rem;
	font-weight: 800;
	color: var(--w);
	font-family: 'Playfair Display', serif
}

.slb {
	font-size: .73rem;
	color: rgba(255, 255, 255, .5);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 3px
}

.trust {
	background: var(--g0);
	padding: 32px 0;
	border-bottom: 1px solid var(--g2)
}

.ti {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap
}

.tit {
	color: var(--g6);
	font-size: .88rem;
	font-weight: 500
}

.about {
	padding: 80px 0
}

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

.av {
	border-radius: 16px;
	background: linear-gradient(135deg, #0a1628, #1a2d4a);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 50px;
	min-height: 340px
}

.av img {
	max-height: 160px;
	filter: brightness(0) invert(1);
	opacity: .85
}

.afg {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 24px
}

.af {
	padding: 16px;
	border-radius: 10px;
	border: 1px solid var(--g2)
}

.af h4 {
	font-size: .88rem;
	font-weight: 700;
	color: var(--p);
	margin-bottom: 3px
}

.af p {
	font-size: .76rem;
	color: var(--g6);
	line-height: 1.5
}

.prod {
	padding: 80px 0
}

.ph {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 20px
}

.ftb {
	display: flex;
	gap: 6px;
	flex-wrap: wrap
}

.ft {
	padding: 9px 18px;
	border-radius: 50px;
	font-size: .78rem;
	font-weight: 600;
	background: var(--g1);
	color: var(--g6);
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: all .3s
}

.ft:hover {
	background: var(--g2)
}

.ft.on {
	background: var(--p);
	color: var(--w)
}

.pg {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px
}

.pc {
	background: var(--w);
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--g2);
	cursor: pointer;
	position: relative;
	transition: all .3s
}

.pc:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
	border-color: var(--a)
}

.pc.hd {
	display: none
}

.ps {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	padding: 3px 10px;
	border-radius: 50px;
	font-size: .62rem;
	font-weight: 700;
	text-transform: uppercase
}

.psb {
	background: #fff8e1;
	color: #f57f17
}

.psn {
	background: #e8f5e9;
	color: #2e7d32
}

.pso {
	background: #e3f2fd;
	color: #1565c0
}

.pim {
	padding: 20px;
	background: var(--g0);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 190px
}

.pim img {
	max-height: 160px;
	object-fit: contain;
	transition: all .3s
}

.pc:hover .pim img {
	transform: scale(1.06)
}

.pif {
	padding: 16px
}

.pct {
	font-size: .68rem;
	color: var(--a);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	margin-bottom: 4px
}

.pnm {
	font-size: .95rem;
	font-weight: 700;
	color: var(--p);
	margin-bottom: 6px
}

.pds {
	font-size: .78rem;
	color: var(--g6);
	line-height: 1.5;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden
}

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

.ppr {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--p)
}

.pvw {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--g1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--g6);
	font-size: .8rem;
	transition: all .3s
}

.pc:hover .pvw {
	background: var(--a);
	color: var(--w)
}

.feat {
	padding: 80px 0;
	background: linear-gradient(135deg, #0a1628, #162a45);
	color: var(--w)
}

.fhd {
	text-align: center;
	margin-bottom: 50px
}

.fhd .st {
	color: var(--w)
}

.fhd .ss {
	color: rgba(255, 255, 255, .6);
	margin: 0 auto
}

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

.fc {
	text-align: center;
	padding: 32px 18px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	transition: all .3s
}

.fc:hover {
	background: rgba(255, 255, 255, .08);
	transform: translateY(-3px)
}

.fci {
	font-size: 1.8rem;
	margin-bottom: 14px
}

.fc h3 {
	font-size: .92rem;
	font-weight: 700;
	margin-bottom: 6px
}

.fc p {
	font-size: .8rem;
	color: rgba(255, 255, 255, .5);
	line-height: 1.6
}

.tes {
	padding: 80px 0;
	background: var(--g0)
}

.teh {
	text-align: center;
	margin-bottom: 50px
}

.teh .ss {
	margin: 0 auto
}

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

.tc {
	background: var(--w);
	padding: 26px;
	border-radius: 14px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
	border: 1px solid var(--g2)
}

.tcs {
	color: #c9a84c;
	margin-bottom: 12px;
	letter-spacing: 2px
}

.tc > p {
	font-size: .88rem;
	color: var(--g7);
	line-height: 1.7;
	margin-bottom: 16px;
	font-style: italic
}

.tca {
	display: flex;
	align-items: center;
	gap: 10px
}

.tcav {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--a);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--w);
	font-weight: 700;
	font-size: .82rem;
	flex-shrink: 0
}

.tcnm {
	font-weight: 700;
	font-size: .84rem;
	color: var(--p)
}

.tcrl {
	font-size: .7rem;
	color: var(--g5)
}

.faq {
	padding: 80px 0
}

.fqh {
	text-align: center;
	margin-bottom: 50px
}

.fqh .ss {
	margin: 0 auto
}

.fql {
	max-width: 750px;
	margin: 0 auto
}

.fqi {
	border-bottom: 1px solid var(--g2);
	padding: 20px 0
}

.fqq {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: 700;
	font-size: .95rem;
	color: var(--p);
	gap: 14px
}

.fqq span {
	font-size: 1.2rem;
	color: var(--a);
	transition: all .3s;
	flex-shrink: 0
}

.fqa {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s;
	color: var(--g6);
	line-height: 1.7;
	font-size: .88rem
}

.fqi.open .fqa {
	max-height: 300px;
	padding-top: 12px
}

.fqi.open .fqq span {
	transform: rotate(45deg)
}

.cta {
	padding: 80px 0;
	background: linear-gradient(135deg, #f0f7e6, #e8f0d8)
}

.ctai {
	text-align: center;
	max-width: 650px;
	margin: 0 auto
}

.ctai p {
	font-size: 1rem;
	color: var(--g6);
	margin-bottom: 24px;
	line-height: 1.7
}

footer {
	background: var(--p);
	color: rgba(255, 255, 255, .6);
	padding: 60px 0 0
}

.ftg {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 36px;
	padding-bottom: 44px;
	border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.ftbr p {
	font-size: .84rem;
	line-height: 1.8;
	margin-top: 16px;
	max-width: 320px
}

.ftl {
	height: 32px;
	filter: brightness(0) invert(1)
}

footer h4 {
	color: var(--w);
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 16px
}

footer ul {
	list-style: none
}

footer ul li {
	margin-bottom: 10px;
	font-size: .84rem
}

footer ul a {
	transition: all .3s;
	cursor: pointer
}

footer ul a:hover {
	color: var(--al)
}

.ftbt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	flex-wrap: wrap;
	gap: 12px
}

.ftbt p {
	font-size: .76rem
}

/*MODAL*/
.mo {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(10, 22, 40, .8);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all .3s
}

.mo.open {
	opacity: 1;
	visibility: visible
}

.mb {
	background: var(--w);
	border-radius: 16px;
	max-width: 600px;
	width: 100%;
	max-height: 88vh;
	overflow-y: auto;
	box-shadow: 0 24px 64px rgba(0, 0, 0, .2);
	position: relative;
	transform: translateY(20px);
	transition: all .3s
}

.mo.open .mb {
	transform: translateY(0)
}

.mx {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--g1);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: var(--g6);
	z-index: 10;
	transition: all .3s
}

.mx:hover {
	background: var(--g2);
	color: var(--p)
}

.mimg {
	padding: 32px;
	background: var(--g0);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	border-radius: 16px 16px 0 0
}

.mimg img {
	max-height: 180px;
	object-fit: contain
}

.mbd {
	padding: 24px
}

.mbd .pct {
	margin-bottom: 6px
}

.mbd h2 {
	font-family: 'Playfair Display', serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--p);
	margin-bottom: 3px
}

.mmd {
	font-size: .76rem;
	color: var(--g5);
	margin-bottom: 8px
}

.mprc {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--a);
	margin-bottom: 16px
}

.mdsc {
	font-size: .86rem;
	color: var(--g6);
	line-height: 1.7;
	margin-bottom: 20px
}

.mav {
	padding: 16px;
	background: #f0f7e6;
	border-radius: 10px;
	border: 1px solid #d4e8b8;
	margin-top: 20px
}

.mav h4 {
	font-size: .84rem;
	font-weight: 700;
	color: var(--p);
	margin-bottom: 6px
}

.mav p {
	font-size: .82rem;
	color: var(--g6);
	line-height: 1.6
}

.mav b {
	color: var(--a)
}

@media(max-width:1024px) {
	.hg {
		grid-template-columns: 1fr;
		text-align: center
	}
	
	.hg>div:first-child {
		order: 1
	}
	
	.hv {
		order: 0
	}
	
	.ht {
		margin: 0 auto 32px
	}
	
	.hbt {
		justify-content: center
	}
	
	.hs {
		justify-content: center
	}
	
	.hiw {
		max-width: 260px;
		margin: 0 auto
	}
	
	.ag {
		grid-template-columns: 1fr
	}
	
	.fg {
		grid-template-columns: 1fr 1fr
	}
	
	.teg,
	.ftg {
		grid-template-columns: 1fr 1fr
	}
}

@media(max-width:768px) {
	.nk {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(10, 22, 40, .98);
		padding: 20px;
		gap: 16px
	}
	
	.nk.open {
		display: flex
	}
	
	.mt {
		display: flex
	}
	
	.hero {
		min-height: auto;
		padding: 100px 0 50px
	}
	
	.hs {
		flex-direction: column;
		gap: 14px;
		align-items: center
	}
	
	.fg,
	.teg {
		grid-template-columns: 1fr
	}
	
	.pg {
		grid-template-columns: 1fr 1fr
	}
	
	.ftg {
		grid-template-columns: 1fr
	}
	
	.ph {
		flex-direction: column;
		align-items: flex-start
	}
}

@media(max-width:480px) {
	.pg {
		grid-template-columns: 1fr
	}
	
	.afg {
		grid-template-columns: 1fr
	}
}