/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{

  --primary:#134882;
  --secondary:#E11931;

  --bg:#ffffff;
  --bg-soft:#f5f8fc;

  --text:#134882;
  --text-light:#5c7292;
  --text-muted:#8da1bb;

  --border:#dbe5f1;

}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  position:relative;
}

body::before{
  content:'';
  position:fixed;
  inset:0;

  background-image:
  linear-gradient(rgba(19,72,130,0.03) 1px,transparent 1px),
  linear-gradient(90deg,rgba(19,72,130,0.03) 1px,transparent 1px);

  background-size:50px 50px;

  pointer-events:none;
  z-index:0;
}

/* =========================
   HEADER
========================= */

header{
  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);

  width:calc(100% - 40px);
  max-width:1300px;

  z-index:999;

  background:rgba(255,255,255,0.82);

  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);

  border:1px solid rgba(19,72,130,0.08);

  border-radius:24px;

  box-shadow:
  0 10px 30px rgba(19,72,130,0.08);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:16px 26px;
}

.logo-box img{
  height:42px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
}

.nav-links a{
  text-decoration:none;
  color:var(--text);

  font-size:15px;
  font-weight:500;

  transition:0.3s ease;
}

.nav-links a:hover{
  color:var(--secondary);
}

.nav-cta{
  padding:12px 22px;

  border-radius:14px;

  background:var(--primary);

  color:white !important;

  font-weight:700 !important;
}

/* =========================
   HERO
========================= */

.hero{
  position:relative;
  z-index:2;

  min-height:100vh;

  padding:190px 24px 120px;

  display:flex;
  align-items:center;
}

.hero-container{
  max-width:1350px;
  margin:auto;

  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:10px 18px;

  border-radius:100px;

  background:rgba(225,25,49,0.06);

  border:1px solid rgba(225,25,49,0.12);

  color:var(--secondary);

  font-size:13px;
  font-weight:700;
  letter-spacing:0.08em;

  margin-bottom:30px;
}

.hero-badge::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--secondary);
}

h1{
  font-size:clamp(62px,5vw,120px);
  line-height:0.92;
  letter-spacing:-0.06em;
  font-weight:900;

  margin-bottom:34px;
}

.highlight{
  color:var(--secondary);
}

.hero p{
  font-size:18px;
  line-height:1.9;

  color:var(--text-light);

  max-width:620px;

  margin-bottom:42px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:18px 30px;

  border-radius:16px;

  text-decoration:none;

  font-size:15px;
  font-weight:700;
}

.btn-primary{
  background:var(--primary);
  color:white;
}

.btn-secondary{
  border:1px solid var(--border);
  color:var(--primary);
  background:white;
}

/* VIDEO */

.video-wrapper{
  position:relative;

  background:white;

  border:1px solid rgba(19,72,130,0.08);

  border-radius:34px;

  overflow:hidden;

  box-shadow:
  0 20px 60px rgba(19,72,130,0.08);

  min-height:620px;
}

.video-wrapper video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.video-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
  180deg,
  rgba(0,0,0,0.05),
  rgba(0,0,0,0.3)
  );

  display:flex;
  align-items:flex-end;

  padding:40px;
}

.video-text{
  color:white;
}

.video-text h3{
  font-size:32px;
  line-height:1.1;

  margin-bottom:14px;
}

/* =========================
   FEATURES
========================= */

.features{
  position:relative;
  z-index:2;

  max-width:1350px;
  margin:auto;

  padding:20px 24px 140px;
}

.section-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;

  margin-bottom:70px;

  gap:40px;
}

.section-header h2{
  font-size:clamp(40px,5vw,74px);
  line-height:1;
  letter-spacing:-0.05em;

  max-width:620px;
}

.section-header p{
  max-width:480px;

  color:var(--text-light);

  line-height:1.9;

  font-size:17px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.feature-card{
  position:relative;

  background:white;

  border:1px solid rgba(19,72,130,0.08);

  border-radius:34px;

  padding:40px;

  overflow:hidden;

  min-height:340px;
}

.feature-number{
  position:absolute;
  top:30px;
  right:34px;

  font-size:14px;
  font-weight:700;

  color:rgba(19,72,130,0.22);
}

.feature-icon{
  width:80px;
  height:80px;

  border-radius:24px;

  background:rgba(19,72,130,0.06);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:34px;

  margin-bottom:30px;
}

.feature-card h3{
  font-size:28px;
  line-height:1.1;

  margin-bottom:18px;
}

.feature-card p{
  color:var(--text-light);

  line-height:1.9;

  font-size:15px;
}

/* =========================
   CTA
========================= */

.cta-section{
  position:relative;
  z-index:2;

  max-width:1300px;
  margin:0 auto 120px;

  padding:0 24px;
}

.cta-box{
  background:var(--primary);

  border-radius:40px;

  padding:90px 70px;

  text-align:center;

  color:white;
}

.cta-box h2{
  font-size:clamp(44px,5vw,74px);
  line-height:1;
  letter-spacing:-0.05em;

  margin-bottom:24px;
}

.cta-box p{
  max-width:720px;
  margin:auto;

  line-height:1.9;

  color:rgba(255,255,255,0.82);

  margin-bottom:38px;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:18px 34px;

  border-radius:18px;

  background:white;

  color:var(--primary);

  text-decoration:none;

  font-weight:700;
}

/* =========================
   FOOTER
========================= */

.footer{
  position:relative;
  z-index:2;

  border-top:1px solid var(--border);

  padding:90px 24px 30px;

  background:var(--bg-soft);
}

.footer-container{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1.2fr;
  gap:50px;
}

.footer-logo{
  margin-bottom:24px;
}

.footer-logo img{
  height:40px;
}

.footer-about{
  color:var(--text-light);

  line-height:1.9;

  max-width:360px;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links h4,
.footer-contact h4{
  margin-bottom:24px;
  font-size:18px;
}

.footer-links a{
  text-decoration:none;
  color:var(--text-light);

  margin-bottom:14px;
}

.footer-contact p{
  color:var(--text-light);

  margin-bottom:14px;
  line-height:1.7;
}

.social-icons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;

  margin-top:20px;
}

.social-icons a{
  text-decoration:none;

  color:var(--primary);

  border:1px solid rgba(19,72,130,0.12);

  padding:10px 16px;

  border-radius:12px;

  background:white;
}

.footer-bottom{
  max-width:1300px;
  margin:auto;

  margin-top:60px;
  padding-top:24px;

  border-top:1px solid var(--border);

  text-align:center;

  color:var(--text-muted);
}


/* =========================
   TRUST SECTION
========================= */

.problem-section{
  position:relative;
  z-index:2;

  max-width:1300px;
  margin:auto;

  padding:40px 24px 140px;
}

.problem-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.problem-grid h2{
  font-size:clamp(42px,5vw,72px);
  line-height:1;
  letter-spacing:-0.05em;

  max-width:700px;
}

.problem-grid p{
  color:var(--text-light);

  line-height:1.9;

  font-size:18px;

  max-width:540px;
}