

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ── Design Tokens ── */
:root {
  --green:        #2ecc71;
  --green-hover:  #25b55a;
  --text-primary: #1a1a1a;
  --text-dark:    #333333;
  --nav-link:     #3a3a3a;
  --white:        #ffffff;
  --navbar-h:     72px;
  --shadow-btn:   0 4px 14px rgba(46, 204, 113, 0.38);
  --radius-btn:   8px;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  height: var(--navbar-h);
}

.navbar__inner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
}

/* Logo */
.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: auto;
}

.navbar__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}


.navbar__nav {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  font-size: 15px;
  font-weight: 400;
  color: var(--nav-link);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.navbar__link:hover {
  color: var(--green);
}

.navbar__link--active {
  color: var(--green);
  font-weight: 500;
}

/* CTA button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 500;
  border-radius: var(--radius-btn);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.15s ease,
              color 0.22s ease, border-color 0.22s ease;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  padding: 11px 24px;
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background: var(--green-hover);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.46);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Outline / ghost button */
.btn--outline {
  background: transparent;
  color: var(--text-primary);
  font-size: 15px;
  padding: 10px 24px;
  border: 1.5px solid #bdbdbd;
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
}

/* Hamburger – hidden on desktop */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 20px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile drawer */
.navbar__drawer {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid #ebebeb;
  padding: 16px 24px 24px;
}

.navbar__drawer--open {
  display: flex;
}

.navbar__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--navbar-h));
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
}


.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}


.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.88)  0%,
    rgba(255, 255, 255, 0.82)  18%,
    rgba(255, 255, 255, 0.60)  36%,
    rgba(255, 255, 255, 0.18)  54%,
    rgba(255, 255, 255, 0.00)  68%
  );
}


.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero__heading,
.hero__tagline,
.hero__description,
.hero__cta-group {
  max-width: 480px;
}

.hero__tagline {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.hero__heading {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero__description {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 380px;
}


.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn--hero {
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
}

.btn--hero-outline {
  font-size: 16px;
  padding: 13px 32px;
  border-radius: 8px;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Wider desktops (≥1400px) – slightly larger type */
@media (min-width: 1400px) {
  .hero__heading {
    font-size: 46px;
  }

  .hero__heading,
  .hero__tagline,
  .hero__description,
  .hero__cta-group {
    max-width: 520px;
  }
}

/* Tablet / small laptop (≤960px) */
@media (max-width: 960px) {
  .navbar__nav {
    display: none;
  }

  .navbar__inner > .btn {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero__content {
    padding: 0 24px;
  }

  .hero__heading {
    font-size: 32px;
  }

  .hero__bg::after {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.80) 30%,
      rgba(255, 255, 255, 0.35) 55%,
      rgba(255, 255, 255, 0.00) 75%
    );
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  :root {
    --navbar-h: 60px;
  }

  .hero {
    height: auto;
    min-height: 420px;
    max-height: none;
    align-items: flex-start;
  }

  .hero__content {
    padding: 40px 24px;
    max-width: 100%;
  }

  .hero__heading {
    font-size: 28px;
  }

  .hero__description {
    max-width: 100%;
  }

  .hero__description br {
    display: none;
  }

  .hero__bg::after {
    background: rgba(255, 255, 255, 0.78);
  }

  .hero__cta-group {
    gap: 10px;
  }

  .btn--hero,
  .btn--hero-outline {
    font-size: 14px;
    padding: 12px 22px;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero__heading {
    font-size: 24px;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
}
