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

:root {
  --navy: #1a2332;
  --orange: #f97316;
  --white: #ffffff;
  --grey-light: #f5f6f8;
  --grey-text: #4a5568;
  --font: 'Segoe UI', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--grey-text);
  background: var(--white);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem 4rem;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--orange);
}

.badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange);
  border: 1px solid rgba(249, 115, 22, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.8;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

/* ── FEATURE LIST ── */
.features {
  background: var(--grey-light);
  padding: 4rem 2rem;
}

.features-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.features h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.features-sub {
  color: var(--grey-text);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  text-align: left;
}

.feature-item {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  border-top: 3px solid var(--orange);
  box-shadow: 0 1px 6px rgba(26, 35, 50, 0.06);
}

.feature-item .icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-item h3 {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--grey-text);
  line-height: 1.5;
}

/* ── CONTACT ── */
.contact {
  background: var(--white);
  padding: 3.5rem 2rem;
  text-align: center;
}

.contact p {
  font-size: 0.95rem;
  color: var(--grey-text);
  margin-bottom: 0.5rem;
}

.contact a {
  font-weight: 600;
  font-size: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.5);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.82rem;
}

footer span {
  color: var(--orange);
}

footer a {
  color: rgba(255, 255, 255, 0.5);
}

footer a:hover {
  color: var(--orange);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .logo-text {
    font-size: 1.4rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
