@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;700;900&family=Nunito:wght@300;400;500;600;700&display=swap');
:root {
--red: #fc0002;
--red2: #b5191a;
--black: #0a0a0a;
--black2: #111111;
--black3: #1a1a1a;
--surface: #141414;
--white: #ffffff;
--off: #f9f9f9;
--muted-dark:#fff9;
--muted-dark2: rgba(255,255,255,0.22);
--border-dark: rgba(255,255,255,0.08);
--border-dark2: rgba(255,255,255,0.14);
--red-dim: rgba(252,0,2,0.12);
--red-glow: rgba(252,0,2,0.18);
--err: #ff4444;
--err-soft: rgba(255,68,68,0.12);
--input-bg: rgba(255,255,255,0.05);
--input-hover: rgba(255,255,255,0.08);
--input-focus: rgba(255,255,255,0.10);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
.pg {
padding: 0px 16px 56px;
}
.wrap { max-width: 840px; margin: 0 auto; }
.card {
background: #020714;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 24px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.05);
}
.top-stripe {
height: 4px;
background: linear-gradient(45deg, #b5191a, #fc0002);
}
.hero {
background: var(--black2);
padding: 48px 48px 36px;
display: grid;
grid-template-columns: 1fr 200px;
align-items: end;
gap: 24px;
border-bottom: 1px solid var(--border-dark);
position: relative;
overflow: hidden;
}
.hero-bg-text {
position: absolute;
right: -20px;
bottom: -30px;
font-weight: 900;
font-size: 140px;
line-height: 1;
color: rgba(255,255,255,0.025);
letter-spacing: -4px;
pointer-events: none;
user-select: none;
}
.hero-eyebrow {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 16px;
}
.hero-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--red);
animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.25;transform:scale(0.7)} }
.hero-eyebrow-txt {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--red);
}
.hero-title {
font-weight: 900;
font-size: 58px;
line-height: 0.9;
color: var(--white);
letter-spacing: -1px;
}
.hero-title-line2 {
background: linear-gradient(45deg, #b5191a, #fc0002);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-desc {
font-size: 13px;
color: var(--muted-dark);
font-weight: 300;
margin-top: 14px;
line-height: 1.7;
}
.hero-right {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 16px;
position: relative;
z-index: 1;
}
.hero-num {
font-weight: 900;
font-size: 72px;
line-height: 1;
color: rgba(255,255,255,0.06);
letter-spacing: -2px;
}
.hero-steps {
display: flex;
flex-direction: column;
gap: 8px;
align-items: flex-end;
}
.hero-step {
display: flex;
align-items: center;
gap: 10px;
}
.hero-step-lbl {
font-size: 11px;
font-weight: 600;
color: rgba(255,255,255,0.28);
letter-spacing: 0.04em;
}
.hero-step-lbl.on { color: rgba(255,255,255,0.7); }
.hero-step-pip {
width: 24px;
height: 24px;
border-radius: 50%;
border: 1.5px solid rgba(255,255,255,0.12);
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: 700;
color: rgba(255,255,255,0.25);
}
.hero-step-pip.on {
background: linear-gradient(45deg, #b5191a, #fc0002);
border-color: transparent;
color: #ffffff;
}
.fbody {
padding: 40px 48px 44px;
}
.slabel {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 24px;
}
.slabel-num {
width: 28px;
height: 28px;
border-radius: 8px;
background: linear-gradient(45deg, #b5191a, #fc0002);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 15px;
color: #ffffff;
flex-shrink: 0;
}
.slabel-txt {
font-weight: 700;
font-size: 20px;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--white);
}
.slabel-line {
flex: 1;
height: 1px;
background: var(--border-dark);
}
.slabel-sub {
font-size: 11px;
font-weight: 400;
color: var(--muted-dark2);
letter-spacing: 0.04em;
white-space: nowrap;
}
.fgrid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-bottom: 16px;
}
.field {
display: flex;
flex-direction: column;
gap: 8px;
}
.flabel {
display: flex;
align-items: center;
gap: 7px;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(255,255,255,0.5);
}
.flabel-icon {
width: 18px;
height: 18px;
fill: var(--red2);
flex-shrink: 0;
}
.finp {
position: relative;
}
.finp input,
.finp select {
width: 100%;
height: 52px;
background: var(--input-bg);
border: 1px solid var(--border-dark);
border-radius: 10px;
padding: 0 16px;  
font-size: 16px;
font-weight: 400;
color: var(--white);
outline: none;
transition: border-color 0.2px, background 0.2px, box-shadow 0.2px;
-webkit-appearance: none;
appearance: none;
}
.finp input::placeholder {
color: rgba(255,255,255,0.2);
font-size: 13px;
font-weight: 300;
}
.finp input:hover,
.finp select:hover {
background: var(--input-hover);
border-color: var(--border-dark2);
}
.finp input:focus,
.finp select:focus {
background: var(--input-focus);
border-color: var(--red2);
box-shadow: 0 0 0 3px var(--red-dim);
}
.field.err .finp input,
.field.err .finp select {
border-color: var(--err);
box-shadow: 0 0 0 3px var(--err-soft);
}
.finp select option {
background: #1a1a1a;
color: var(--white);
}
.sel-arr {
position: absolute;
right: 13px;
top: 50%;
transform: translateY(-50%);
pointer-events: none;
}
.sel-arr svg {
width: 14px;
height: 14px;
fill: rgba(255,255,255,0.3);
}
.phone-pair {
display: grid;
grid-template-columns: 164px 1fr;
gap: 8px;
}
.ferr {
display: none;
align-items: center;
gap: 5px;
font-size: 11px;
font-weight: 600;
color: var(--err);
padding-left: 2px;
}
.ferr svg {
width: 11px;
height: 11px;
fill: var(--err);
flex-shrink: 0;
}
.field.err .ferr { display: flex; }
.sec-div {
height: 1px;
background: var(--border-dark);
margin: 32px 0 28px;
position: relative;
}
.sec-div-line {
position: absolute;
left: 0;
top: 0;
width: 60px;
height: 1px;
background: linear-gradient(45deg, #b5191a, #fc0002);
}
.foot {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
padding-top: 8px;
}
.sbtn {
display: inline-flex;
align-items: center;
gap: 10px;
height: 52px;
padding: 0 36px;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 15px;
font-weight: 700;
color: #ffffff;
background: linear-gradient(45deg, #b5191a, #fc0002);
position: relative;
overflow: hidden;
transition: transform 0.15px, box-shadow 0.2px, opacity 0.2px;
}
.sbtn-shine {
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
opacity: 0;
transition: opacity 0.3px;
}
.sbtn:hover .sbtn-shine { opacity: 1; }
.sbtn:hover {
box-shadow: 0 0 0 3px rgba(252,0,2,0.25), 0 12px 40px rgba(252,0,2,0.3);
transform: translateY(-2px);
}
.sbtn:active { transform: scale(0.98); }
.sbtn-icon {
width: 17px;
height: 17px;
fill: #ffffff;
position: relative;
z-index: 1;
}
.sbtn-txt {
position: relative;
z-index: 1;
letter-spacing: 0.03em;
}
.snote {
display: flex;
align-items: center;
gap: 7px;
font-size: 12px;
color: rgba(255,255,255,0.28);
font-weight: 400;
}
.snote-icon {
width: 13px;
height: 13px;
fill: rgba(255,255,255,0.25);
flex-shrink: 0;
}
.smsg {
display: none;
align-items: center;
gap: 14px;
background: rgba(252,0,2,0.08);
border: 1px solid rgba(252,0,2,0.25);
border-radius: 12px;
padding: 18px 22px;
margin-top: 16px;
font-size: 14px;
color: var(--white);
font-weight: 500;
}
.smsg.show { display: flex; }
.smsg-icon {
width: 24px;
height: 24px;
fill: var(--red);
flex-shrink: 0;
}
@media (max-width: 600px) {
.hero { grid-template-columns: 1fr; padding: 32px 24px 28px; }
.hero-right { display: none; }
.hero-title { font-size: 48px; }
.fbody { padding: 28px 24px 36px; }
.fgrid { grid-template-columns: 1fr; }
.phone-pair { grid-template-columns: 1fr; }
}