*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#ffffff;
color:#111111;
line-height:1.6;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1280px;
margin:auto;
}

.header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(255,255,255,.92);
backdrop-filter:blur(12px);
border-bottom:1px solid #ececec;
z-index:1000;
}

.nav{
height:85px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
display:flex;
align-items:center;
gap:10px;

font-size:44px;
font-weight:700;
letter-spacing:-2px;
}

.logo img{
height:90px;
width:auto;
display:block;
}

.logo span{
color:#111;
font-weight:700;
}

nav{
display:flex;
gap:35px;
}

nav a{
text-decoration:none;
color:#111;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#245DFF;
}

.btn-demo-header{
background:#245DFF;
color:white;
text-decoration:none;
padding:16px 28px;
border-radius:999px;
font-weight:600;
transition:.3s;
}

.btn-demo-header:hover{
transform:translateY(-2px);
}

.hero{
padding-top:120px;
padding-bottom:40px;
}

.hero-grid{
display:grid;
grid-template-columns:0.9fr 1.1fr;
gap:60px;
align-items:center;
}

.badge{
display:inline-block;
padding:10px 18px;
background:#EEF3FF;
color:#245DFF;
border-radius:999px;
font-size:13px;
font-weight:700;
margin-bottom:25px;
}

.hero-content h1{
font-size:64px;
line-height:1.05;
font-weight:800;
margin-bottom:25px;
letter-spacing:-2px;
}

.hero-content p{
font-size:21px;
color:#666;
max-width:650px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:18px;
margin-bottom:35px;
flex-wrap:wrap;
}

.btn-primary{
background:#245DFF;
color:white;
text-decoration:none;
padding:20px 38px;
border-radius:999px;
font-weight:600;
display:inline-block;
}

.btn-secondary{
border:1px solid #245DFF;
color:#245DFF;
text-decoration:none;
padding:20px 38px;
border-radius:999px;
font-weight:600;
display:inline-block;
}

.hero-features{
display:flex;
gap:25px;
flex-wrap:wrap;
font-size:15px;
color:#666;
}

.hero-image{
position:relative;
display:flex;
justify-content:flex-end;
}

.hero-image::before{
content:"";
position:absolute;
top:-40px;
right:-40px;

width:250px;
height:250px;

background:rgba(255,255,255,.45);

filter:blur(80px);

z-index:2;
pointer-events:none;
}

.hero-image img{
width:110%;
border-radius:32px;
display:block;
box-shadow:0 30px 80px rgba(0,0,0,.12);

filter:
brightness(1.05)
contrast(0.95)
saturate(0.9);

}

.floating-card{
position:absolute;
bottom:25px;
right:25px;

background:rgba(255,255,255,.92);

backdrop-filter:blur(12px);

padding:24px;

border-radius:24px;

max-width:320px;

box-shadow:
0 20px 50px rgba(0,0,0,.10);

}

.floating-card h3{
margin-bottom:8px;
font-size:18px;
}

.floating-card p{
font-size:14px;
color:#666;
}

.section{
padding:80px 0;
}

.gray{
background:#F8F9FC;
}

.section-header{
text-align:center;
margin-bottom:60px;
}

.section-header span{
color:#245DFF;
font-size:14px;
font-weight:700;
text-transform:uppercase;
}

.section-header h2{
font-size:52px;
line-height:1.1;
margin-top:12px;
}

.steps{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.step-card{
background:white;
padding:35px;
border-radius:28px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.number{
font-size:28px;
font-weight:800;
color:#245DFF;
margin-bottom:15px;
}

.step-card h3{
margin-bottom:12px;
font-size:24px;
}

.step-card p{
color:#666;
}

.benefits{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.benefit{
background:white;
padding:28px;
border-radius:22px;
font-weight:600;
box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.cta{
padding:100px 0;
background:#081225;
color:white;
text-align:center;
}

.cta h2{
font-size:56px;
margin-bottom:15px;
}

.cta p{
color:#CFD4DD;
margin-bottom:35px;
font-size:20px;
}

footer{
padding:60px 0;
background:white;
border-top:1px solid #ECECEC;
}

.footer{
display:flex;
justify-content:space-between;
gap:30px;
flex-wrap:wrap;
}

.footer h3{
font-size:28px;
color:#245DFF;
}

@media(max-width:1000px){

.hero-grid{
grid-template-columns:1fr;
}

.steps{
grid-template-columns:1fr;
}

.benefits{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:50px;
}

.section-header h2{
font-size:40px;
}

.cta h2{
font-size:40px;
}

nav{
display:none;
}

.btn-demo-header{
display:none;
}

}

@media(max-width:600px){

.hero{
padding-top:110px;
}

.hero-content h1{
font-size:40px;
}

.hero-content p{
font-size:18px;
}

.floating-card{
position:relative;
right:auto;
bottom:auto;
margin-top:20px;
max-width:100%;
}

}
.logo,
.footer-logo{
  font-weight:800 !important;
  letter-spacing:-2px !important;
}

.logo{
  font-size:44px !important;
}

.footer-logo{
  font-size:32px !important;
}

.nova{
  color:#111111 !important;
}

.cita{
  color:#245DFF !important;
}

.logo-container{
    display:flex;
    align-items:center;
    margin-left:20px;
    margin-top:17px;
}

.logo-img{
    height:155px;
    width:auto;
}
/* RESPONSIVE FINAL */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

@media (max-width: 768px) {

  .container {
    width: 100%;
    padding: 0 22px;
  }

  .header {
    position: relative;
  }

  .nav {
    height: auto;
    padding: 18px 0;
    justify-content: center;
  }

  nav,
  .btn-demo-header {
    display: none;
  }

  .logo-container {
    margin-left: 0;
    justify-content: center;
  }

  .logo-img {
    height: 95px;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 35px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .badge {
    font-size: 13px;
    line-height: 1.35;
    padding: 14px 20px;
    border-radius: 28px;
  }

  .hero-content h1 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.8px;
  }

  .hero-content p {
    font-size: 20px;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 20px 24px;
    font-size: 18px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
    font-size: 17px;
  }

  .hero-image {
    width: 100%;
    display: block;
  }

  .hero-image img {
    width: 100%;
    border-radius: 24px;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .hero-content h1 {
    font-size: 56px;
  }

  .hero-grid {
    gap: 45px;
  }
}/* MOBILE COMPACT FINAL */

@media (max-width: 768px) {

  .logo-img {
    height: 95px !important;
  }

  .header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.nav {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    min-height: auto !important;
}

  .hero {
    padding-top: 24px !important;
  }

  .badge {
    font-size: 11px !important;
    padding: 12px 18px !important;
  }

  .hero-content h1 {
    font-size: 42px !important;
    line-height: 1.08 !important;
    letter-spacing: -1px !important;
  }

  .hero-content p {
    font-size: 18px !important;
    line-height: 1.45 !important;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 17px !important;
    padding: 18px 22px !important;
  }

  .hero-features {
    font-size: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .hero-image {
    margin-top: 10px !important;
  }

  .floating-card h3 {
    font-size: 22px !important;
  }

  .floating-card p {
    font-size: 17px !important;
  }
}
