/* =====================================================================
   ACCENTUATE — SHARED STYLESHEET
   =====================================================================
   This one file controls the look of every page on the site.

   WANT TO CHANGE COLORS OR FONTS? Scroll down to the ":root" section
   right below this comment block and edit the values there. Every page
   will update automatically.
   ===================================================================== */

:root {
  /* ---- COLORS (edit these hex codes to change the whole site) ---- */
  --color-primary: #4f7c93;       /* cool steel blue — header, buttons, links */
  --color-primary-dark: #3a5f72;  /* darker steel blue — hover states */
  --color-accent: #6fae9e;        /* muted cool seafoam — highlights, CTAs */
  --color-accent-dark: #56907f;   /* seafoam hover */
  --color-bg: #f3f6f6;            /* cool soft grey-mint — page background */
  --color-bg-alt: #ffffff;        /* white — card backgrounds */
  --color-text: #2b2f33;          /* main text color */
  --color-text-light: #5d6469;    /* secondary/muted text */
  --color-border: #dbe6e3;        /* subtle border/divider color */

  /* ---- FONTS (edit the names to change typography) ---- */
  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  /* ---- LAYOUT ---- */
  --max-width: 1080px;
  --radius: 14px;
}

/* ---- RESET / BASE ---- */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--color-accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  margin: 0 0 0.5em 0;
  color: var(--color-text);
}

p {
  margin: 0 0 1em 0;
}

ul {
  margin: 0 0 1em 0;
  padding-left: 1.2em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.center {
  text-align: center;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-bg-alt);
  color: var(--color-bg-alt);
}

.btn-secondary:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ---- HEADER / NAV ---- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
}

nav a.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 96px 0;
}

.hero .eyebrow {
  color: #ffd9c6;
}

.hero h1 {
  color: #fff;
  font-size: 2.75rem;
  max-width: 700px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: #e7f1f1;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- CARDS / GRID ---- */
.grid {
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
}

.card h3 {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.card .icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

/* ---- PRICING CARDS ---- */
.pricing-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid var(--color-accent);
  position: relative;
}

.pricing-card .badge {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 14px;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 8px 0;
}

.pricing-card .price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.pricing-card ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 20px 0 28px 0;
  flex-grow: 1;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-top: 24px;
}

/* ---- TESTIMONIALS ---- */
.testimonial {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial p.quote {
  font-style: italic;
  font-size: 1.02rem;
}

.testimonial .author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 12px;
  font-style: normal;
}

/* ---- STEPS / PROCESS ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 56px 32px;
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  color: #fff5f0;
  max-width: 480px;
  margin: 0 auto 28px auto;
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 22px 0;
}

.faq-item h3 {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ---- CONTACT ---- */
.contact-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.contact-box .email-link {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-block;
  margin: 16px 0 24px 0;
}

/* ---- FOOTER ---- */
footer {
  background: var(--color-primary-dark);
  color: #d9e7e7;
  padding: 48px 0 28px 0;
  margin-top: 40px;
}

footer .footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

footer a {
  color: #d9e7e7;
}

footer a:hover {
  color: #fff;
}

footer .footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #9fc0c0;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 860px) {
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 720px) {
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-alt);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    border-bottom: 1px solid var(--color-border);
    display: none;
  }

  nav ul.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 64px 0;
    text-align: center;
  }

  .hero h1, .hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  section {
    padding: 56px 0;
  }
}
