:root {
  --bg-dark: #0D1321;
  --bg-main: #131B2E;
  --accent: #F04E23;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  font-family: system-ui, sans-serif;
}

body {
  background: var(--bg-main);
  color: #fff;
  font-size: 16px;
}

h1 {font-size: 62px;}
h2 {font-size: 40px;}
h3 {font-size: 23px;}

.navbar {
  position: absolute;
  top: 25px;
  left: 25px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
}

/* HERO */
.hero {
  background: url("https://images.unsplash.com/photo-1569336415962-a4bd9f69cd83?q=80&w=2000") center/cover;
}

.hero-overlay {
  background: rgba(19, 27, 46, 0.85);
  padding-inline: 50px;
  padding-block: 175px 275px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.logo-circle {
  background: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.hero-content {
  max-width: 100%;
  margin-top: 80px;
}

.hero-content span {
  color: var(--accent);
}

.hero-content p {
  width: 98%;
  margin: 25px 0;
  color: #d1d5db;
  margin-block: 25px 50px;

  font-size: 19px;
}

.hero-buttons a:first-child {
    margin-right: 25px;
}

/* BUTTONS */
.btn {
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* STATS */
.stats {
  width: 100%;
  background: var(--bg-main);
  padding: 80px 100px;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5%;
  row-gap: 75px;
  justify-content: center;
}


.stat {
  min-width: 250px;
  width: 75%;
  max-width: 750px;
  background: #1A2234;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  margin: 0;
}

.stat strong {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.stat small {
  font-size: 13px;
  color: #6b7280;
}

.section.dark {background: var(--bg-dark); padding-block: 150px; }
.section.dark #section-dark-title { padding-bottom: 25px; }
.section.light { background: var(--bg-main); }

.grid-3, .grid-4, .stats-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); align-items: stretch;}
.grid-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* CARDS */
.card {width: 20%; min-width: 250px;}
.card, .price-card {
  background: #1A2234;
  padding: 30px;
  border-radius: 16px;
}

.price-card.popular {
  border: 2px solid var(--accent);
}

/* CTA */
.cta {
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cta a {max-width: 215px; margin: auto; margin-top: 25px;}

/* FOOTER */
footer {
  padding: 40px;
  background: var(--bg-dark);
  text-align: center;
  color: #6b7280;
}


@media screen and (max-width: 530px) {
  p, .hero-content p {font-size: 15px;}
  a {font-size: 15px;}
  h1 {font-size: 52px;}
  h2 {font-size: 35px;}
  h3 {font-size: 20px;}
  .hero-content {margin-top: 0px;}
  .hero-overlay {padding-block: 175px 175px;}
}

@media screen and (max-width: 415px) {
  h1 {font-size: 46px;}
  h2 {font-size: 31px;}
  h3 {font-size: 18px;}
  .hero-buttons a:first-child {padding: 10px; margin-inline: 0;}
}

@media screen and (max-width: 375px) {
  h1 {font-size: 30px;}
  .hero-content p {font-size: 13px;}
  .hero-buttons a:first-child {font-size: 11px;}
}