* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #07111f;
  color: white;
}

/* TOP STRIP */
.top-strip {
  background: #0ea5e9;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

.top-strip a {
  color: white;
  text-decoration: none;
}

/* HERO */
.hero {
  padding: 25px;
  background: linear-gradient(135deg, #07111f, #0f2138);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  width: 90px;
}

.nav-call {
  background: #13b8ff;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

/* HERO GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto 0;
}

.hero-text-box h1 {
  font-size: 50px;
  margin-bottom: 15px;
}

.hero-subtext {
  color: #cbd5f5;
  font-size: 18px;
}

.local-tag {
  color: #38bdf8;
  font-weight: bold;
}

/* TRUST */
.trust-row {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  background: rgba(255,255,255,0.1);
  padding: 8px 12px;
  border-radius: 999px;
}

/* BUTTONS */
.cta-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.big-call {
  background: #0ea5e9;
  padding: 16px 25px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

.outline-btn {
  border: 2px solid #38bdf8;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
}

/* LOGO CARD */
.logo-card {
  background: #0f2138;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
}

.logo-card img {
  width: 100%;
  max-width: 300px;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-label {
  color: #38bdf8;
  font-weight: bold;
}

.section h2 {
  font-size: 32px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.card {
  background: #0f2138;
  padding: 20px;
  border-radius: 15px;
  text-decoration: none;
}

.card h3 {
  color: #38bdf8;
}

/* PROBLEM SECTION */
.problem-section {
  text-align: center;
  padding: 50px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* DARK SECTION */
.dark-section {
  background: #0b1728;
  padding: 60px;
  text-align: center;
}

/* SUBURBS */
.suburb-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.suburb-links a {
  background: #0f2138;
  padding: 10px 15px;
  border-radius: 999px;
  text-decoration: none;
}

/* REVIEWS */
.review-section {
  background: #0b1728;
  padding: 60px;
  text-align: center;
}

.review-card {
  background: #0f2138;
  padding: 20px;
  border-radius: 15px;
}

.stars {
  color: gold;
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, #0284c7, #07111f);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: #040b14;
}

/* MOBILE */
@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cards,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .hero-text-box h1 {
    font-size: 34px;
  }
}
