/* ---------- GLOBAL ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }


.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link.secondary {
  font-size: 14px;
  color: #6b7280; /* subtle gray */
  text-decoration: none;
}

.nav-link.secondary:hover {
  text-decoration: underline;
}

.nav-download {
  font-weight: 600;
  color: #ffffff;
  background: none;
}
body {
  font-family: "Inter", sans-serif;
  background: #023568;
  color: #fff;
  line-height: 1.4;
}

/* Main constraint wrapper */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;   /* This controls ALL page left/right spacing */
}

/* ---------- NAV ---------- */
.nav {
  padding: 20px 0;                    /* FIXED: removed side padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-size: 20px; 
  font-weight: 700; 
}

.logo img { width: 100px; height: auto; margin-left: -20px; }

.logo-small {
  width: 190px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

.nav-link {
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

/* ---------- HERO SECTION ---------- */
.hero {
  display: flex;
  justify-content: space-between;     /* FIXED: more natural layout */
  align-items: center;                /* FIXED: vertically aligned */
  padding: 60px 0;                    /* FIXED: removed horizontal padding */
  gap: 60px;                          /* More balanced spacing */
}

.hero-left {
  max-width: 520px;
}

.hero-left h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 20px;
  margin-bottom: 40px;
}

/* ---------- BUTTONS ---------- */
.btn-group { 
  display: flex; 
  gap: 20px; 
}

.btn {
  font-size: 20px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.primary {
  background: #fa6400;
  color: #fff;
}

.outline {
  border: 2px solid #fff;
  color: #fff;
}

/* ---------- PHONE MOCK ---------- */
.hero-right {
  display: flex;
  align-items: center;
}

.phone {
  width: 320px;
  height: 620px;
  background: #000;
  border-radius: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-screen {
  width: 90%;
  height: 90%;
  background: #024289;
  border-radius: 32px;
  padding: 40px 20px;
  text-align: center;
}

.phone-screen h2 {
  margin: 30px 0;
  font-weight: 700;
}

.phone-btn {
  margin-top: 16px;
  background: #fa6400;
  color: #fff;
  display: block;
  font-size: 17px;
  padding: 12px;
  border-radius: 10px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .btn-group { justify-content: center; }

  .phone { margin: auto; }
}
