/* =========================
   RESET & BASE
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;


 
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
 
 background: ghostwhite;
 color: black;
 line-height: 1.6;
}

.halfsize {
 transform: scale(0.5)
}


img {
  max-width: 100%;
  max-height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   LAYOUT UTILITIES
========================= */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 70px 0;
 
}

.muted {
  background-color: ghostwhite;
}

/* =========================
   NAVIGATION
========================= */

header {
  background: linear-gradient(
  135deg,
  #ff7a18 0%,
  #ff3d00 40%,
  #2979ff 100%);
  backdrop-filter: blur(10px);
  /*position: sticky;*/
  top: 0;
  z-index: 100;
}


.site-header {
  border-bottom: 1px solid #e5e7eb;
}


.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-links a:hover {
  color: #2563eb;
}


.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
}

.nav-logo img {
  width: 40px;
  height: 40px;
}



/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(
    135deg,
    #ff7a18 0%,
    #ff3d00 40%,
    #2979ff 100%
  );
  padding: 120px 0 110px;
  color: white;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 520px;
  opacity: 0.95;
}

.hero-cta {
  margin-top: 35px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button-primary {
  background: #ffffff;
  color: #ff3d00;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.button-primary:hover {
  transform: translateY(-2px);
}

.button-secondary {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.button-secondary:hover {
  border-color: #ffffff;
}

/* WHY */
.why {
  padding: 70px 10%;
  text-align: center;
}

.cards {
  display: flex;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card {
  background: ghostwhite;
  padding: 30px;
  border-radius: 16px;
  flex: 1;
  min-width: 240px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}





/* =========================
   HEADINGS & TEXT
========================= */

h1, h2, h3 {
  line-height: 1.25;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: black
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #334155;
}


.nav-links {
  display: flex;
  gap: 30px;
}


/* =========================
   PRODUCTS GRID
========================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

.card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.card p {
  flex-grow: 1;
}

/* =========================
   BUTTONS
========================= */

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  border-radius: 8px;
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.button:hover {
  background-color: #1d4ed8;
}

/* =========================
   APP PAGE HERO (shared)
========================= */

.hero img {
  max-width: 420px;
  width: 100%;
  margin-top: 30px;
}

/* ================================
   Phone Mockups
================================ */
.phone-stack {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  width: 280px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.phone.back {
  position: absolute;
  transform: translateX(80px) scale(0.92);
  opacity: 0.9;
}

/* ================================
   Features Section
================================ */
.features {
  background-color: white;
}

.features h2 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 60px;
}

.features-text {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.feature {
  background: linear-gradient(
    180deg,
    white 0%,
    white 100%
  );
 
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}

.feature:hover {
  transform: translateY(-6px);
}

.feature img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 15px;
  opacity: 0.85;
}




/* ================================
   Value Section
================================ */
.value {
  background: linear-gradient(
    135deg,
    #10131d 0%,
    #1a2033 100%
  );
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.value h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.value ul {
  list-style: none;
}

.value li {
  font-size: 18px;
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
}

.value li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00e676;
}

/* ================================
   Call to Action
================================ */
.cta {
  background: linear-gradient(
    135deg,
    #ff3d00 0%,
    #ff7a18 100%
  );
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}



/* =========================
   FOOTER
========================= */

footer {
  background: #080a11;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

footer a {
  color: #ff9e80;
}


.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 30px 0;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
}

.footer-content a {
  color: #2563eb;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}






/* =========================
   RESPONSIVE
========================= */

@media (min-width: 900px) {
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    max-width: 55%;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .nav-links a {
    margin-left: 12px;
  }
}

