
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:linear-gradient(180deg,#050505 0%,#0b0b0b 100%);
color:white;
overflow-x:hidden;
font-size:17px;
line-height:1.6;
}

nav{
position:fixed;
width:100%;
top:0;
left:0;
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 10%;
backdrop-filter:blur(14px);
background:rgba(10,10,10,0.72);
border-bottom:1px solid rgba(255,255,255,0.06);
z-index:1000;
}

.logo{
font-size:24px;
font-weight:700;
letter-spacing:3px;
}

.nav-links a{
color:white;
text-decoration:none;
margin-left:25px;
font-size:15px;
font-weight:500;
letter-spacing:0.5px;
opacity:0.7;
transition:0.3s ease;
}

.nav-links a:hover{
opacity:1;
color:white;
}

.hero{
min-height:100vh;
display:grid;
grid-template-columns:1.1fr 1fr;
align-items:center;
gap:80px;
padding:120px 10% 0;
position:relative;
overflow:hidden;
background:
radial-gradient(circle at top right,
rgba(255,255,255,0.08),
transparent 35%),
#050505;
}

.hero-content{
max-width:900px;
}

.hero-badge{
display:inline-block;
padding:12px 20px;
border:1px solid rgba(255,255,255,0.15);
border-radius:30px;
margin-bottom:30px;
background:rgba(255,255,255,0.04);
backdrop-filter:blur(10px);
font-size:14px;
letter-spacing:0.5px;
}

.hero h1{
font-size:82px;
font-weight:800;
line-height:0.95;
letter-spacing:-4px;
max-width:900px;
margin-bottom:28px;
}

.hero p{
font-size:20px;
color:rgba(255,255,255,0.72);
max-width:760px;
line-height:1.7;
}

.hero-buttons{
display:flex;
justify-content:flex-start;
gap:20px;
margin-top:45px;
}

button{
padding:14px 26px;
border:none;
border-radius:12px;
font-size:15px;
cursor:pointer;
transition:0.25s ease;
font-weight:600;
}

button:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

button.secondary{
background:transparent;
border:1px solid rgba(255,255,255,0.12);
color:white;
backdrop-filter:blur(10px);
}

section{
padding:110px 10%;
}

h2{
font-size:42px;
margin-bottom:45px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
border-radius:28px;
padding:40px;
backdrop-filter:blur(12px);
transition:0.35s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 60px rgba(0,0,0,0.45);
}

.card h3{
margin-bottom:15px;
}

.card p{
color:#b8b8b8;
}

.corporate-box{
background:linear-gradient(135deg,#111,#1a1a1a);
border-radius:28px;
padding:60px;
border:1px solid rgba(255,255,255,0.08);
}

.steps{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
}

.step{
background:#111;
border-radius:22px;
padding:35px;
text-align:center;
}

.step span{
font-size:42px;
opacity:0.2;
display:block;
margin-bottom:15px;
}

.status-box{
max-width:700px;
}

input,textarea{
width:100%;
padding:16px 18px;
margin-bottom:14px;
border:1px solid rgba(255,255,255,0.08);
border-radius:14px;
background:rgba(18,18,18,0.8);
color:white;
outline:none;
transition:0.25s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}

textarea{
resize:none;
}

details{
background:#111;
padding:25px;
border-radius:18px;
margin-bottom:15px;
}

summary{
cursor:pointer;
font-weight:bold;
}

.contact-box{
background:#111;
padding:35px;
border-radius:22px;
}

footer {
  padding: 60px 10%;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.6);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.footer-content h3 {
  color: white;
  font-size: 20px;
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.5;
}

@media(max-width:900px){

.hero{
grid-template-columns:1fr;
text-align:center;
padding:140px 5% 60px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

nav{
flex-direction:column;
gap:15px;
}

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

.hero-buttons{
flex-direction:column;
}

.glass-card{
width:100%;
max-width:340px;
}

.cards{
grid-template-columns:1fr;
}

.steps{
grid-template-columns:1fr;
}

section{
padding:70px 5%;
}

.corporate-box{
padding: 25px;
}

.corporate-box h2{
font-size: 22px;
}

.corporate-box p{
font-size: 14px;
}

}
.hero-visual{
display:flex;
justify-content:center;
align-items:center;
position:relative;
z-index:2;
}

.glass-card{
width:420px;
padding:30px;
border-radius:30px;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(20px);
box-shadow:
0 30px 80px rgba(0,0,0,0.45),
0 0 60px rgba(255,255,255,0.04);
}

.glass-top{
display:flex;
gap:8px;
margin-bottom:30px;
}

.dot{
width:10px;
height:10px;
border-radius:50%;
background:rgba(255,255,255,0.6);
}

.glass-card h3{
font-size:28px;
margin-bottom:30px;
}

.stat{
padding:20px;
border-radius:20px;
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.05);
margin-bottom:18px;
}

.stat p{
font-size:14px;
color:rgba(255,255,255,0.6);
margin-bottom:10px;
}

.stat h4{
font-size:32px;
}

body::before{
content:"";
position:fixed;
width:700px;
height:700px;
background:
radial-gradient(circle,
rgba(255,255,255,0.08),
transparent 70%);
top:-250px;
right:-250px;
filter:blur(100px);
pointer-events:none;
z-index:0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.corporate-box h2,
.corporate-box p {
word-break: break-word;
overflow-wrap: break-word;
}