:root {
 --n: #1b3566;
 --nm: #2a4a85;
 --nl: #3d65b0;
 --sky: #e8eef8;
 --skm: #d0daf0;
 --skl: #f5f8ff;
 --wh: #ffffff;
 --pp: #f7f9fc;
 --bd: #d5dff0;
 --tx: #0f1e3a;
 --mu: #5a6a85;
 --red: #b91c1c;
 --grn: #166534;
 --serif: 'Georgia','Times New Roman',serif;
 --sans: 'Segoe UI',system-ui,'Helvetica Neue',Arial,sans-serif;
 --r: 6px;
 --rl: 12px;
 --sh: 0 4px 18px rgba(27,53,102,.1);
 --shl: 0 14px 50px rgba(27,53,102,.14)
}

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

html {
 scroll-behavior: smooth;
 font-size: 16px
}

body {
 font-family: var(--sans);
 background: var(--pp);
 color: var(--tx);
 overflow-x: hidden;
 line-height: 1.65
}

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

.w {
 max-width: 1160px;
 margin: 0 auto;
 padding: 0 24px
}

.ws {
 max-width: 760px;
 margin: 0 auto;
 padding: 0 24px
}

.tag {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 font-size: .67rem;
 font-weight: 700;
 letter-spacing: .14em;
 text-transform: uppercase;
 color: var(--nm);
 border: 1px solid rgba(42,74,133,.28);
 padding: 5px 13px;
 border-radius: 2px;
 margin-bottom: 14px
}

.tl {
 color: rgba(255,255,255,.85);
 border-color: rgba(255,255,255,.3)
}

.td {
 width: 6px;
 height: 6px;
 border-radius: 50%;
 background: var(--nl);
 animation: bk 2s infinite
}

@keyframes bk {
 0%,100% {
 opacity: 1
 }

 50% {
 opacity: .3
 }
}

h1,h2,h3 {
 font-family: var(--serif);
 line-height: 1.1
}

.btn {
 display: inline-flex;
 align-items: center;
 gap: 7px;
 font-family: var(--sans);
 font-weight: 700;
 font-size: .84rem;
 letter-spacing: .05em;
 text-transform: uppercase;
 padding: 13px 22px;
 border-radius: var(--r);
 border: none;
 cursor: pointer;
 text-decoration: none;
 transition: all .2s
}

.bna {
 background: var(--n);
 color: var(--wh)
}

.bna:hover {
 background: var(--nm);
 transform: translateY(-2px);
 box-shadow: 0 8px 22px rgba(27,53,102,.33)
}

.bsl {
 background: var(--sky);
 color: var(--n)
}

.bsl:hover {
 background: var(--skm);
 transform: translateY(-2px)
}

.bwh {
 background: var(--wh);
 color: var(--n)
}

.bwh:hover {
 background: var(--skl);
 transform: translateY(-2px)
}

.bgh {
 background: transparent;
 color: var(--wh);
 border: 1.5px solid rgba(255,255,255,.45)
}

.bgh:hover {
 border-color: var(--wh);
 background: rgba(255,255,255,.1)
}

/* NAV */
#nav {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 200;
 height: 68px;
 padding: 0 20px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 background: var(--n);
 box-shadow: 0 2px 12px rgba(0,0,0,.2)
}

.nlogo {
 display: flex;
 align-items: center
}

.nlogo svg {
 height: 46px;
 width: auto
}

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

.nl a {
 padding: 7px 10px;
 border-radius: 4px;
 font-size: .8rem;
 font-weight: 500;
 color: rgba(255,255,255,.75);
 transition: color .2s,background .2s
}

.nl a:hover,.nl a.act {
 color: var(--wh);
 background: rgba(255,255,255,.12)
}

.nl .dd {
 position: relative
}

.nl .dd>a::after {
 content: "\25BC";
 font-size: .55rem;
 opacity: .5;
 margin-left: 3px;
 display: inline-block;
 transition: transform .2s
}

.nl .dd:hover>a::after {
 transform: rotate(180deg)
}

.ddm {
 position: absolute;
 top: calc(100% + 8px);
 left: 50%;
 transform: translateX(-50%) translateY(6px);
 background: var(--wh);
 border: 1px solid var(--bd);
 border-radius: var(--rl);
 padding: 8px;
 min-width: 238px;
 box-shadow: var(--shl);
 opacity: 0;
 pointer-events: none;
 transition: opacity .2s,transform .2s
}

.nl .dd:hover .ddm {
 opacity: 1;
 pointer-events: all;
 transform: translateX(-50%) translateY(0)
}

.ddm a {
 display: flex;
 align-items: center;
 gap: 9px;
 padding: 10px 12px;
 border-radius: 5px;
 font-size: .82rem;
 color: var(--tx)
}

.ddm a:hover {
 background: var(--sky);
 color: var(--n)
}

.ddm a .di {
 font-size: .95rem;
 width: 20px;
 text-align: center
}

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

.ntel {
 font-weight: 700;
 font-size: .8rem;
 color: rgba(255,255,255,.9);
 letter-spacing: .03em;
 display: flex;
 align-items: center;
 gap: 6px;
 white-space: nowrap
}

.ntel:hover {
 color: var(--wh)
}

.brg {
 display: none;
 flex-direction: column;
 gap: 5px;
 cursor: pointer;
 background: none;
 border: none;
 padding: 4px
}

.brg span {
 display: block;
 width: 22px;
 height: 2px;
 background: var(--wh);
 border-radius: 2px
}

.drw {
 position: fixed;
 top: 68px;
 left: 0;
 right: 0;
 bottom: 0;
 z-index: 199;
 background: var(--n);
 overflow-y: auto;
 padding: 16px 20px 36px;
 display: none
}

.drw.on {
 display: block
}

.ds {
 font-size: .67rem;
 font-weight: 700;
 letter-spacing: .14em;
 text-transform: uppercase;
 color: rgba(255,255,255,.45);
 padding: 12px 0 4px
}

.drw a {
 display: block;
 padding: 12px 0;
 font-size: .9rem;
 font-weight: 500;
 color: rgba(255,255,255,.75);
 border-bottom: 1px solid rgba(255,255,255,.07)
}

.drw a:hover {
 color: var(--wh)
}

@media(max-width: 960px) {
 .nl,.nr .bsl {
 display:none
 }

 .brg {
 display: flex
 }
}

/* COOKIE */
#ck {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 z-index: 300;
 background: var(--n);
 border-top: 2px solid rgba(255,255,255,.12);
 padding: 14px 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 12px;
 flex-wrap: wrap
}

#ck p {
 font-size: .8rem;
 color: rgba(255,255,255,.7);
 max-width: 680px;
 line-height: 1.6
}

#ck p a {
 color: rgba(255,255,255,.9);
 text-decoration: underline
}

.ckb {
 display: flex;
 gap: 8px;
 flex-shrink: 0
}

.ckb button {
 padding: 9px 16px;
 font-size: .77rem;
 border-radius: var(--r);
 cursor: pointer;
 font-weight: 700;
 font-family: var(--sans);
 border: none
}

#ckok {
 background: var(--wh);
 color: var(--n)
}

#ckno {
 background: transparent;
 color: rgba(255,255,255,.55);
 border: 1px solid rgba(255,255,255,.3)!important
}

/* HERO */
#hero {
 min-height: 100vh;
 background: linear-gradient(150deg,#0f1e3a 0%,var(--n) 55%,#2244a0 100%);
 position: relative;
 display: flex;
 align-items: center;
 overflow: hidden;
 padding-top: 68px
}

.hpat {
 position: absolute;
 inset: 0;
 pointer-events: none;
 background-image: radial-gradient(rgba(255,255,255,.035) 1px,transparent 1px);
 background-size: 28px 28px
}

.hg {
 position: absolute;
 top: -15%;
 right: -5%;
 width: 660px;
 height: 660px;
 border-radius: 50%;
 background: radial-gradient(circle,rgba(255,255,255,.04) 0%,transparent 70%);
 pointer-events: none
}

.hi {
 position: relative;
 z-index: 2;
 display: grid;
 grid-template-columns: 1fr 400px;
 gap: 52px;
 align-items: center;
 padding: 72px 0
}

.hbg {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 background: rgba(255,255,255,.1);
 border: 1px solid rgba(255,255,255,.22);
 padding: 7px 16px 7px 10px;
 border-radius: 30px;
 margin-bottom: 24px
}

.hbg span {
 font-size: .7rem;
 font-weight: 600;
 letter-spacing: .08em;
 text-transform: uppercase;
 color: rgba(255,255,255,.9)
}

h1.hh {
 font-size: clamp(2.5rem,4.8vw,4rem);
 font-weight: 700;
 color: var(--wh);
 margin-bottom: 18px;
 letter-spacing: -.02em
}

h1.hh em {
 color: rgba(255,255,255,.72);
 font-style: italic
}

.hs {
 font-size: 1rem;
 color: rgba(255,255,255,.68);
 max-width: 490px;
 line-height: 1.85;
 margin-bottom: 34px
}

.hc {
 display: flex;
 gap: 10px;
 flex-wrap: wrap;
 margin-bottom: 44px
}

.hst {
 display: flex;
 gap: 28px;
 padding-top: 26px;
 border-top: 1px solid rgba(255,255,255,.14);
 flex-wrap: wrap
}

.hst .v {
 font-family: var(--serif);
 font-size: 1.9rem;
 font-weight: 700;
 color: var(--wh)
}

.hst .l {
 font-size: .72rem;
 color: rgba(255,255,255,.48);
 margin-top: 2px
}

/* FORM CARD */
.fc {
 background: var(--wh);
 border-radius: var(--rl);
 padding: 34px 30px;
 box-shadow: var(--shl);
 border: 1px solid var(--bd);
 position: relative;
 overflow: hidden
}

.fc::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(90deg,var(--n),var(--nl))
}

.fct {
 font-family: var(--serif);
 font-size: 1.18rem;
 font-weight: 700;
 margin-bottom: 4px;
 color: var(--tx)
}

.fcs {
 font-size: .76rem;
 color: var(--mu);
 margin-bottom: 20px;
 line-height: 1.5
}

.fg {
 margin-bottom: 11px
}

.fg label {
 display: block;
 font-size: .73rem;
 font-weight: 600;
 color: #3a4d65;
 margin-bottom: 4px;
 letter-spacing: .02em
}

.fg input,.fg select,.fg textarea {
 width: 100%;
 padding: 10px 12px;
 border: 1.5px solid var(--bd);
 border-radius: var(--r);
 font-family: var(--sans);
 font-size: .87rem;
 color: var(--tx);
 background: var(--skl);
 outline: none;
 transition: border-color .2s,box-shadow .2s;
 -webkit-appearance: none
}

.fg input:focus,.fg select:focus,.fg textarea:focus {
 border-color: var(--nm);
 box-shadow: 0 0 0 3px rgba(42,74,133,.1);
 background: var(--wh)
}

.fg input.er,.fg select.er {
 border-color: var(--red)!important
}

.fr2 {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 10px
}

.cb {
 display: flex;
 gap: 9px;
 align-items: flex-start;
 margin: 10px 0;
 padding: 11px;
 background: var(--skl);
 border: 1px solid var(--bd);
 border-radius: var(--r)
}

.cb input[type=checkbox] {
 margin-top: 3px;
 flex-shrink: 0;
 accent-color: var(--n);
 width: 15px;
 height: 15px;
 cursor: pointer
}

.cb label {
 font-size: .73rem;
 color: #4a5a70;
 line-height: 1.6;
 cursor: pointer
}

.cb a {
 color: var(--nm);
 text-decoration: underline
}

.cbr {
 background: rgba(185,28,28,.05);
 border-color: rgba(185,28,28,.2)
}

.cbr label {
 color: #7f1d1d
}

.fb {
 width: 100%;
 padding: 14px;
 background: var(--n);
 color: var(--wh);
 font-family: var(--sans);
 font-weight: 700;
 font-size: .87rem;
 letter-spacing: .05em;
 text-transform: uppercase;
 border: none;
 border-radius: var(--r);
 cursor: pointer;
 transition: all .2s;
 margin-top: 3px
}

.fb:hover {
 background: var(--nm);
 transform: translateY(-1px)
}

.fb:disabled {
 background: #b0bac8;
 cursor: not-allowed;
 transform: none
}

.rn {
 display: flex;
 align-items: flex-start;
 gap: 6px;
 margin-top: 10px;
 font-size: .7rem;
 color: var(--mu);
 line-height: 1.6
}

.rn svg {
 flex-shrink: 0;
 margin-top: 2px;
 color: var(--n)
}

.rn a {
 color: var(--nm);
 text-decoration: underline
}

.fok {
 display: none;
 text-align: center;
 padding: 16px 0
}

.fok .oi {
 width: 54px;
 height: 54px;
 border-radius: 50%;
 background: #dcfce7;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 12px;
 font-size: 1.5rem
}

.fok h3 {
 font-family: var(--serif);
 font-size: 1.1rem;
 margin-bottom: 6px;
 color: var(--tx)
}

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

/* TRUST BAR */
.tb {
 background: var(--sky);
 border-bottom: 1px solid var(--bd);
 padding: 13px 0
}

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

.ti {
 display: flex; align-items: center;
 gap: 7px;
 font-size: .76rem;
 font-weight: 600;
 color: var(--n);
 white-space: nowrap
}

.ti svg {
 color: var(--nl)
}

/* SECTION HEADER */
.sh {
 text-align: center;
 margin-bottom: 52px
}

.sh h2 {
 font-size: clamp(1.85rem,3.6vw,2.8rem);
 font-weight: 700;
 margin-bottom: 11px
}

.sh h2 em {
 font-style: italic;
 color: var(--nm)
}

.sh p {
 font-size: .95rem;
 color: var(--mu);
 max-width: 520px;
 margin: 0 auto;
 line-height: 1.75
}

/* PRODUCT CARDS */
.pg {
 display: grid;
 grid-template-columns: repeat(3,1fr);
 gap: 16px
}

.pc {
 background: var(--wh);
 border-radius: var(--rl);
 border: 1.5px solid var(--bd);
 padding: 30px 24px;
 position: relative;
 overflow: hidden;
 transition: all .25s;
 text-decoration: none;
 display: block;
 color: var(--tx)
}

.pc:hover {
 border-color: var(--nm);
 transform: translateY(-4px);
 box-shadow: var(--shl)
}

.pc::before {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: linear-gradient(90deg,var(--n),var(--nl));
 transform: scaleX(0);
 transform-origin: left;
 transition: transform .3s
}

.pc:hover::before {
 transform: scaleX(1)
}

.pic {
 width: 42px;
 height: 42px;
 border-radius: 9px;
 background: var(--sky);
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 14px;
 font-size: 1.35rem
}

.pc h3 {
 font-size: 1.05rem;
 font-weight: 700;
 margin-bottom: 7px;
 font-family: var(--sans)
}

.pc p {
 font-size: .81rem;
 color: var(--mu);
 line-height: 1.72;
 margin-bottom: 14px
}

.pl {
 font-size: .72rem;
 font-weight: 700;
 letter-spacing: .08em;
 text-transform: uppercase;
 color: var(--nm);
 display: inline-flex;
 align-items: center;
 gap: 5px;
 transition: gap .2s
}

.pc:hover .pl {
 gap: 9px
}

.pt {
 display: inline-block;
 font-size: .62rem;
 font-weight: 700;
 letter-spacing: .1em;
 text-transform: uppercase;
 padding: 3px 8px;
 border-radius: 20px;
 margin-bottom: 8px
}

.pto {
 background: rgba(185,28,28,.09);
 color: var(--red)
}

.pte {
 background: rgba(22,101,52,.09);
 color: var(--grn)
}

.ptp {
 background: var(--sky);
 color: var(--nm)
}

/* PRODUCT SECTIONS */
.pp {
 padding: 80px 0;
 scroll-margin-top: 68px
}

.ppi {
 display: grid;
 grid-template-columns: 1fr 390px;
 gap: 60px;
 align-items: start
}

.ppl h2 {
 font-size: clamp(1.85rem,3.3vw,2.65rem);
 font-weight: 700;
 margin-bottom: 14px;
 color: var(--tx)
}

.ppl h2 em {
 color: var(--nm);
 font-style: italic
}

.pd {
 font-size: .92rem;
 color: var(--mu);
 line-height: 1.85;
 margin-bottom: 20px
}

.bgs {
 display: flex;
 flex-wrap: wrap;
 gap: 7px;
 margin-bottom: 18px
}

.bg {
 display: inline-flex;
 align-items: center;
 gap: 5px;
 font-size: .72rem;
 font-weight: 600;
 padding: 5px 11px;
 border-radius: 20px;
 background: var(--sky);
 border: 1px solid var(--bd);
 color: var(--n)
}

.bg svg {
 color: var(--nl);
 flex-shrink: 0
}

.cv2 {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 12px;
 margin-bottom: 16px
}

.cv {
 padding: 15px 13px;
 border-radius: var(--r);
 background: var(--skl);
 border: 1px solid var(--bd)
}

.cv h5 {
 font-family: var(--sans);
 font-size: .78rem;
 font-weight: 700;
 margin-bottom: 6px;
 color: var(--tx)
}

.cv ul {
 list-style: none;
 font-size: .75rem;
 color: var(--mu);
 line-height: 2.1
}

.cvg {
 border-left: 3px solid #166534;
 background: rgba(22,101,52,.04)
}

.cvr {
 border-left: 3px solid var(--red);
 background: rgba(185,28,28,.04)
}

.lw {
 background: var(--skl);
 border: 1.5px solid var(--bd);
 border-left: 4px solid var(--nm);
 border-radius: var(--r);
 padding: 12px 14px;
 font-size: .77rem;
 color: var(--tx);
 line-height: 1.72;
 margin-bottom: 16px
}

.lw strong {
 color: var(--nm)
}

.hw {
 background: rgba(185,28,28,.05);
 border: 1px solid rgba(185,28,28,.18);
 border-left: 4px solid var(--red);
 border-radius: var(--r);
 padding: 12px 14px;
 font-size: .77rem;
 color: #7f1d1d;
 line-height: 1.65;
 margin: 10px 0
}

.hw strong {
 color: var(--red)
}

.bc2 {
 font-size: .72rem;
 color: var(--mu);
 margin-bottom: 18px
}

.bc2 a {
 color: var(--mu)
}

.bc2 a:hover {
 color: var(--nm)
}

/* FAQ */
.faq {
 margin-top: 24px
}

.faq h3 {
 font-family: var(--serif);
 font-size: 1rem;
 font-weight: 700;
 margin-bottom: 12px;
 color: var(--tx)
}

.fi {
 border: 1.5px solid var(--bd);
 border-radius: var(--r);
 overflow: hidden;
 margin-bottom: 8px;
 background: var(--wh)
}

.fq2 {
 padding: 14px 16px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 cursor: pointer;
 font-family: var(--sans);
 font-size: .84rem;
 font-weight: 600;
 color: var(--tx);
 gap: 11px;
 user-select: none
}

.far {
 width: 24px;
 height: 24px;
 border-radius: 50%;
 background: var(--sky);
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: .75rem;
 transition: transform .3s,background .2s;
 flex-shrink: 0;
 color: var(--n)
}

.fi.on .far {
 transform: rotate(45deg);
 background: var(--n);
 color: var(--wh)
}

.fa {
 max-height: 0;
 overflow: hidden;
 padding: 0 16px;
 font-size: .82rem;
 color: var(--mu);
 line-height: 1.75;
 transition: max-height .4s ease,padding .3s
}

.fi.on .fa {
 max-height: 300px;
 padding: 0 16px 14px
}

/* TABS */
.tabs {
 display: flex;
 gap: 3px;
 background: var(--skl);
 padding: 3px;
 border-radius: var(--rl);
 margin-bottom: 16px;
 border: 1px solid var(--bd)
}

.tb3 {
 flex: 1;
 padding: 9px;
 border: none;
 background: transparent;
 border-radius: 9px;
 font-family: var(--sans);
 font-weight: 600;
 font-size: .82rem;
 cursor: pointer;
 transition: all .2s;
 color: var(--mu)
}

.tb3.on {
 background: var(--wh);
 color: var(--n);
 box-shadow: var(--sh)
}

.tp {
 display: none
}

.tp.on {
 display: block
}

/* WHY */
.wg {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 14px
}

.wi {
 display: flex;
 gap: 14px;
 background: rgba(255,255,255,.07);
 border: 1px solid rgba(255,255,255,.1);
 border-radius: var(--rl);
 padding: 24px 20px;
 transition: background .2s
}

.wi:hover {
 background: rgba(255,255,255,.1)
}

.wn {
 font-family: var(--serif);
 font-size: 2.2rem;
 font-weight: 700;
 color: rgba(255,255,255,.16);
 line-height: 1;
 flex-shrink: 0
}

.wi h4 {
 font-size: .9rem;
 font-weight: 700;
 color: var(--wh);
 margin-bottom: 5px;
 font-family: var(--sans)
}

.wi p {
 font-size: .79rem;
 color: rgba(255,255,255,.54);
 line-height: 1.7
}

/* PROCESS */
.proc {
 display: grid;
 grid-template-columns: repeat(4,1fr);
 gap: 0;
 position: relative
}

.proc::before {
 content: '';
 position: absolute;
 top: 35px;
 left: 12%;
 right: 12%;
 height: 2px;
 background: linear-gradient(90deg,var(--n),var(--nl));
 z-index: 0
}

.stp {
 text-align: center;
 padding: 0 12px;
 position: relative;
 z-index: 1
}

.sn {
 width: 70px;
 height: 70px;
 border-radius: 50%;
 background: var(--wh);
 border: 2px solid var(--nm);
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 16px;
 font-family: var(--serif);
 font-size: 1.3rem;
 font-weight: 700;
 color: var(--nm);
 box-shadow: 0 0 0 7px var(--pp)
}

.stp h3 {
 font-size: .9rem;
 font-weight: 700;
 margin-bottom: 4px;
 font-family: var(--sans);
 color: var(--tx)
}

.stp p {
 font-size: .77rem;
 color: var(--mu);
 line-height: 1.65
}

/* TESTIMONIALS */
.tg {
 display: grid;grid-template-columns: repeat(3,1fr);
 gap: 18px
}

.ts {
 background: var(--wh);
 border-radius: var(--rl);
 padding: 26px 22px;
 border: 1.5px solid var(--bd);
 position: relative
}

.ts::after {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: linear-gradient(90deg,var(--n),var(--nl));
 border-radius: var(--rl) var(--rl) 0 0
}

.tss {
 color: var(--nm);
 font-size: .86rem;
 margin-bottom: 10px
}

.ts p {
 font-size: .84rem;
 color: #445;
 line-height: 1.75;
 margin-bottom: 16px
}

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

.tav {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 background: linear-gradient(135deg,var(--n),var(--nl));
 display: flex;
 align-items: center;
 justify-content: center;
 font-family: var(--serif);
 font-size: .85rem;
 font-weight: 700;
 color: var(--wh)
}

.tn {
 font-weight: 700;
 font-size: .83rem;
 color: var(--tx)
}

.tr {
 font-size: .72rem;
 color: var(--mu);
 margin-top: 2px
}

/* CTA */
.ctab {
 background: linear-gradient(140deg,var(--n) 0%,var(--nm) 100%);
 padding: 68px 0;
 text-align: center;
 position: relative;
 overflow: hidden
}

.ctab::before {
 content: '';
 position: absolute;
 inset: 0;
 background-image: radial-gradient(rgba(255,255,255,.04) 1px,transparent 1px);
 background-size: 24px 24px;
 pointer-events: none
}

.ctab>div {
 position: relative;
 z-index: 1
}

.ctab h2 {
 font-size: clamp(1.85rem,3.6vw,2.8rem);
 color: var(--wh);
 margin-bottom: 11px
}

.ctab h2 em {
 font-style: italic;
 color: rgba(255,255,255,.7)
}

.ctab p {
 color: rgba(255,255,255,.6);
 margin-bottom: 26px;
 font-size: .92rem
}

.ca {
 display: flex;
 justify-content: center;
 gap: 10px;
 flex-wrap: wrap
}

/* CONTACT */
#contact {
 background: var(--sky)
}

.ctgrid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 64px;
 align-items: start
}

.contact-info {
 display: flex;
 flex-direction: column;
 gap: 14px;
 margin-top: 24px
}

.ci-item {
 display: flex;
 gap: 12px;
 align-items: flex-start
}

.ci-ico {
 width: 36px;
 height: 36px;
 border-radius: 8px;
 background: var(--wh);
 border: 1px solid var(--bd);
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 font-size: .95rem
}

.ci-item h4 {
 font-size: .86rem;
 font-weight: 700;
 color: var(--tx);
 margin-bottom: 2px
}

.ci-item p {
 font-size: .77rem;
 color: var(--mu)
}

.ci-item a {
 color: var(--nm);
 font-weight: 600
}

.ci-item a:hover {
 text-decoration: underline
}

/* LEGAL */
.ls {
 padding: 48px 0;
 border-top: 1px solid var(--bd)
}

.ls h2 {
 font-size: 1.5rem;
 font-family: var(--serif);
 margin-bottom: 16px;
 color: var(--tx)
}

.lt {
 font-size: .8rem;
 color: var(--mu);
 line-height: 2.1
}

.lt strong {
 color: var(--tx)
}

.lt a {
 color: var(--nm);
 text-decoration: underline
}

hr.ld {
 margin: 12px 0;
 border: none;
 border-top: 1px solid var(--bd)
}

/* NEWS SECTION */
.news-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill,minmax(290px,1fr));
 gap: 20px;
 margin-top: 22px
}

.news-card {
 background: var(--wh);
 border: 1px solid var(--bd);
 border-radius: var(--rl);
 padding: 22px;
 display: flex;
 flex-direction: column;
 gap: 10px;
 transition: box-shadow .2s
}

.news-card:hover {
 box-shadow: var(--sh)
}

.news-card-meta {
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 8px;
 flex-wrap: wrap
}

.news-card-date {
 font-size: .72rem;
 color: var(--mu)
}

.news-card-source {
 font-size: .68rem;
 font-weight: 700;
 color: var(--nm);
 text-transform: uppercase;
 letter-spacing: .09em;
 background: var(--sky);
 padding: 3px 8px;
 border-radius: 3px
}


font-size: .93rem;
 font-weight: 700;
 color: var(--tx);
 line-height: 1.4
}

.news-card-title a {
 color: var(--tx)
}

.news-card-title a:hover {
 color: var(--nm);
 text-decoration: underline
}

.news-card-summary {
 font-size: .81rem;
 color: var(--mu);
 line-height: 1.7;
 flex: 1
}

.news-note {
 font-size: .72rem;
 color: var(--mu);
 margin-top: 14px;
 padding-top: 12px;
 border-top: 1px solid var(--bd)
}

.news-loading {
 color: var(--mu);
 font-size: .86rem;
 padding: 16px 0
}

@media(max-width: 600px) {
 .news-grid {
 grid-template-columns:1fr
 }
}

/* FOOTER */
footer {
 background: var(--n);
 padding: 60px 0 20px
}

.fg2 {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1fr;
 gap: 44px;
 margin-bottom: 40px
}

.fb2 {
}

.fb2 p {
 font-size: .78rem;
 color: rgba(255,255,255,.48);
 line-height: 1.8;
 max-width: 250px;
 margin-top: 8px
}

.ob {
 display: inline-flex;
 align-items: flex-start;
 gap: 8px;
 margin-top: 12px;
 padding: 9px 13px;
 background: rgba(255,255,255,.08);
 border: 1px solid rgba(255,255,255,.14);
 border-radius: var(--r)
}

.ob svg {
 margin-top: 2px;
 flex-shrink: 0;
 color: rgba(255,255,255,.7)
}

.ot {
 font-size: .7rem;
 color: rgba(255,255,255,.52);
 line-height: 1.65
}

.ot strong {
 color: rgba(255,255,255,.8)
}

.ot a {
 color: rgba(255,255,255,.68);
 font-size: .67rem;
 text-decoration: underline
}

.fc2 h4 {
 font-size: .67rem;
 font-weight: 700;
 letter-spacing: .14em;
 text-transform: uppercase;
 color: rgba(255,255,255,.48);
 margin-bottom: 14px
}

.fc2 ul {
 list-style: none
}

.fc2 ul li {
 margin-bottom: 8px
}

.fc2 ul li a {
 font-size: .79rem;
 color: rgba(255,255,255,.48);
 transition: color .2s
}

.fc2 ul li a:hover {
 color: var(--wh)
}

.med {
 background: rgba(0,0,0,.18);
 border-top: 1px solid rgba(255,255,255,.08);
 border-bottom: 1px solid rgba(255,255,255,.08);
 padding: 12px 20px;
 text-align: center;
 font-size: .7rem;
 color: rgba(255,255,255,.35);
 line-height: 1.75
}

.med a {
 color: rgba(255,255,255,.52);
 text-decoration: underline
}

.fbot {
 padding: 18px 0;
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 flex-wrap: wrap;
 gap: 11px
}

.fbot p {
 font-size: .69rem;
 color: rgba(255,255,255,.3);
 line-height: 1.9;
 max-width: 540px
}

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

.fl a {
 font-size: .69rem;
 color: rgba(255,255,255,.3);
 transition: color .2s
}

.fl a:hover {
 color: rgba(255,255,255,.65)
}

/* FLOAT CALL */
.flt {
 position: fixed;
 bottom: 22px;
 right: 22px;
 z-index: 150;
 display: flex;
 align-items: center;
 gap: 8px;
 background: var(--n);
 color: var(--wh);
 padding: 12px 18px 12px 14px;
 border-radius: 40px;
 box-shadow: 0 8px 28px rgba(27,53,102,.4);
 font-weight: 700;
 font-size: .8rem;
 transition: all .2s;
 text-decoration: none;
 animation: fi .5s ease .3s both
}

.flt:hover {
 transform: translateY(-3px);
 box-shadow: 0 14px 36px rgba(27,53,102,.5);
 background: var(--nm);
 color: var(--wh)
}

@keyframes fi {
 from {
 opacity: 0;
 transform: translateY(12px)
 }

 to {
 opacity: 1;
 transform: translateY(0)
 }
}

.frng {
 position: absolute;
 inset: -5px;
 border-radius: 40px;
 border: 2px solid var(--nm);
 animation: rg 2.5s ease-out infinite;
 pointer-events: none
}

@keyframes rg {
 0% {
 opacity: .6;
 transform: scale(1)
 }

 100% {
 opacity: 0;
 transform: scale(1.13)
 }
}

.fad {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity .55s ease,transform .55s ease
}

.fad.in {
 opacity: 1;
 transform: translateY(0)
}

@media(max-width: 920px) {
 .hi,.ppi {
 grid-template-columns:1fr!important
 }

 .pg {}


@media(max-width: 920px) {
 .hi,.ppi {
 grid-template-columns: 1fr 1fr
 }

 .wg {
 grid-template-columns: 1fr
 }

 .tg {
 grid-template-columns: 1fr
 }

 .fg2 {
 grid-template-columns: 1fr 1fr
 }

 .proc {
 grid-template-columns: 1fr 1fr
 }

 .proc::before {
 display: none
 }

 .ctgrid {
 grid-template-columns: 1fr!important;
 gap: 36px!important
 }
}

@media(max-width: 600px) {
 .w,.ws {
 padding:0 14px
 }

 .fr2 {
 grid-template-columns: 1fr
 }

 .pg {
 grid-template-columns: 1fr
 }

 .cv2 {
 grid-template-columns: 1fr
 }

 .proc {
 grid-template-columns: 1fr
 }

 .fg2 {
 grid-template-columns: 1fr
 }

 .hst {
 gap: 16px
 }
}
