*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --accent: #F59E0B; /* warm orange */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* LOGO */
.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* NAV */
.nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.nav a {
  color: #4b5563;
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--accent);
  color: #ffffff;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background: #d97706;
}

.btn-secondary {
  background: #fff;
  border: 1px solid #d1d5db;
  color: #111827;
}

/* HERO */
.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  gap: 3rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.hero-subtitle {
  max-width: 32rem;
  color: #4b5563;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.hero-points li::before {
  content: "• ";
  font-weight: bold;
}

.hero-panel {
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #f9fafb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* SECTIONS */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: #f9fafb;
}

.section-intro {
  margin-bottom: 1.8rem;
  color: #4b5563;
}

/* TWO COLUMN */
.two-column {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr;
  gap: 2.5rem;
}

/* ABOUT */
.about-highlights {
  display: grid;
  gap: 1rem;
}

.highlight {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* CARDS */
.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  padding: 1.3rem;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.card-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

/* CONTACT */
.contact-details {
  list-style: none;
  padding: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.6rem;
}

/* FOOTER */
.site-footer {
  padding: 1.8rem 0;
  border-top: 1px solid #e5e7eb;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-subtext {
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner,
  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    height: auto;
    gap: 1rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-img {
    height: 50px;
  }
}

/* BLOG & FAQ STYLES */

.blog-divider {
  border: none;
  border-top: 2px solid #e5e7eb;
  margin: 3rem 0;
}

.home-blog-links {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.home-blog-links h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.home-blog-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-blog-links li {
  display: flex;
  align-items: center;
  margin-bottom: 0.35rem;
}

.home-blog-links li::before {
  content: "➜";
  color: var(--accent);
  font-size: 0.85rem;
  margin-right: 0.4rem;
}

.home-blog-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #111827;
}

.home-blog-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.blog-article-full {
  scroll-margin-top: 120px; /* adjust if needed */
  max-width: 720px;
  margin: 0 auto 3rem auto;
  padding: 1.5rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* BACK TO TOP */

.back-to-top-text {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.95rem;
  color: #ffffff;
  background: var(--accent);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.2s ease;
  z-index: 999;
}

.back-to-top-text--visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top-text:hover {
  background: #d97706;
}
@media (max-width: 480px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .blog-article-full {
    padding: 1.25rem 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
