:root{
  --ink:#0f1c2e;
  --text:#243047;
  --muted:#5d6a7f;
  --bg:#ffffff;
  --alt:#f5f7fa;
  --card:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 14px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
}

.brand-name{
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .2px;
}

.brand-tag{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}

.nav a{
  text-decoration:none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  opacity: .92;
}

.nav a:hover{ opacity:1; }

.nav-cta{
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff !important;
}

.hero {
  position: relative;
  height: 88vh;
  min-height: 620px;
  background: url('hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;        /* vertical centering */
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(15,28,46,.78) 0%, rgba(15,28,46,.35) 55%, rgba(15,28,46,.15) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end; /* moves card to right */
}

.hero-card {
  width: 520px;
  padding: 32px 34px;
  border-radius: 18px;
  background: rgba(15,28,46,.55);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  color: #fff;

  margin-right: 40px; /* spacing from right edge */
}

.hero-card h1{
  margin:0 0 10px 0;
  font-size: 42px;
  letter-spacing: .2px;
  line-height: 1.08;
}

.hero-card p{
  margin: 0 0 18px 0;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn{
  display:inline-block;
  text-decoration:none;
  font-weight: 800;
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid transparent;
}

.btn-primary{
  background: #000;
  color:#fff;
}

.btn-primary:hover{
  background:#222;
}

.btn-ghost{
  background: rgba(255,255,255,.12);
  color:#fff;
  border-color: rgba(255,255,255,.25);
}

.btn-ghost:hover{
  background: rgba(255,255,255,.18);
}

.btn-block{
  width: 100%;
  text-align:center;
}

.trust-row{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

.section{
  padding: 70px 0;
}

.section-alt{
  background: var(--alt);
}

.section-head{
  text-align:center;
  margin-bottom: 26px;
}

.section-head h2{
  margin:0;
  font-size: 30px;
  color: var(--ink);
}

.section-head p{
  margin: 10px 0 0 0;
  color: var(--muted);
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card{
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
}

.card h3{
  margin:0 0 10px 0;
  color: var(--ink);
}

.card p{
  margin:0 0 12px 0;
  color: var(--muted);
  line-height: 1.55;
}

.card ul{
  margin:0;
  padding-left: 18px;
  color: var(--text);
}

.card li{
  margin: 8px 0;
}

.about{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.about p{
  color: var(--muted);
  line-height: 1.65;
}

.about-bullets{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.about-pill{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 13px;
}

.about-panel{
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  padding: 18px;
}

.panel-title{
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 12px;
}

.panel-item{
  display:flex;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}

.panel-item:first-of-type{
  border-top: none;
}

.panel-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #000;
  margin-top: 6px;
}

.muted{ color: var(--muted); }

.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.contact-card{
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  padding: 22px;
}

.contact-line{
  margin-top: 10px;
  color: var(--text);
}

.contact-line span{
  color: var(--muted);
  font-weight: 700;
  display:inline-block;
  width: 70px;
}

.note{
  margin-top: 14px;
  background: var(--alt);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.form{
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  padding: 22px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  font-family: inherit;
  font-size: 14px;
}

textarea{
  min-height: 120px;
  resize: vertical;
}

button{
  cursor:pointer;
  border:none;
}

.form-foot{
  font-size: 12px;
}

.site-footer{
  text-align:center;
  margin-top: 40px;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 900px){
  .hero{
    align-items:flex-end;
    padding-bottom:60px;
  }

  .hero-inner{
    justify-content:center;
  }

  .hero-card{
    width:100%;
    margin:0;
  }
}

.hero-card h1 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-card p {
  line-height: 1.6;
  margin-bottom: 22px;
  color: rgba(255,255,255,.85);
}
