* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

/* ================= HEADER ================= */
.header {
  height: 110px;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 160px;
  width: auto;
}

/* BUTTONS */
.top-actions{
display:flex;
gap:14px;
}

.btn {
  background: #0ea5e9;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid #0ea5e9;
  color: #0ea5e9;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= HERO ================= */
.hero {
  min-height: calc(100vh - 110px);
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}


/* LEFT TEXT */
.hero-left {
  max-width: 560px;
}

.hero-left h1 {
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
}

.hero-left p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

.btn.big {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 34px;
  font-size: 16px;
}

.hero-right img{
  width:100%;
  max-width:800px;
  height:auto;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .hero {
    gap: 40px;
  }

  .hero-right img {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right img {
    margin-top: 30px;
    width: 100%;
  }
}
/* ============ DARK MODE PUBLIC PAGES ============ */

body.dark{
background:#020617;
color:white;
}

body.dark .header,
body.dark .hero{
background:#020617;
}

body.dark input,
body.dark textarea{
background:#020617;
color:white;
border:1px solid #334155;
}

body.dark .btn{
background:#0ea5e9;
}

body.dark .btn-outline{
border-color:#0ea5e9;
color:#0ea5e9;
}

body.dark a{
color:#38bdf8;
}

body.dark h1,
body.dark p{
color:white;
}
/* TABLET */
@media (max-width:1024px){

.hero{
gap:40px;
padding:40px;
}

.hero-right img{
width:100%;
max-width:600px;
}

}

/* MOBILE */
@media (max-width:768px){

.header{
flex-direction:column;
height:auto;
padding:20px;
gap:10px;
}

.hero {
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.hero-left{
max-width:100%;
}

.hero-right img{
width:100%;
max-width:350px;
margin-top:30px;
}

.logo img{
height:70px;
}

}
.extra-text {
  margin-top: 10px;
  font-size: 14px;
  color: #64748b;
}
