:root {
  --bg: #f4f3f1;          /* warm gray background */
  --text: #1f1f1f;        /* main text */
  --accent: #3a6ea5;      /* blue accent */
  --muted: #555;          /* subdued gray text */
  --border: #e0e0de;      /* warm light border */
  --highlight: #f0c674;   /* soft amber accent */
  --maxw: 1000px;
}

* {box-sizing: border-box}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing:antialiased;
}

/* header / hero */
.hero {
  text-align: center;
  padding: 48px 20px 20px;
}
.logo {
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}
h1, h2, h3 {
  font-family: 'Open Sans', Arial;
  margin: 0.5em 0;
}
h1 { font-size: 1.9rem; font-weight:700; }
h2 { font-size: 1.3rem; color: var(--accent); font-weight:600; margin-top:6px; }
/* ---------- TOP NAV: BUTTON-STYLE LINKS ---------- */
/* ---------- TOP NAV: PREMIUM BUTTONS WITH PRESS EFFECT ---------- */
.top-nav {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.top-nav a {
  display: inline-block;
  padding: 12px 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;

  /* Base look */
  color: var(--accent);
  background: white;
  border: 3px solid var(--accent);
  border-radius: 10px;

  /* Motion */
  transition: all 0.25s ease;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

/* Hover: brighter + lift */
.top-nav a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

/* Press: feel of a real button */
.top-nav a:active {
  transform: translateY(1px); /* subtle downward tap */
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: all 0.07s ease; /* quicker snap for press */
}


/* main layout */
main { max-width: var(--maxw); margin: 0 auto; padding: 18px; }

/* cards */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  margin: 28px auto;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
.card:hover { box-shadow: 0 5px 14px rgba(0,0,0,0.08); }

/* intro text */
.intro { max-width: 720px; margin: 8px auto; color: var(--muted); font-size:1.02rem; }

/* buttons */
.btn { display:inline-block; padding: 12px 18px; background: var(--accent); color: white; border-radius:6px; text-decoration:none; font-weight:700; }
.btn.ghost { background: transparent; color: var(--accent); border: 2px solid var(--accent); padding: 10px 16px; }
.home-actions { margin-top: 14px; display:flex; gap:10px; justify-content:center; }

/* pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items:center;
}
.pricing-grid div { padding:8px 0; border-bottom:1px solid var(--border); }
.pricing-grid div:nth-child(even) { text-align:right; font-weight:600; }
.hint { color: var(--muted); margin-bottom:10px; }
.note { color: var(--muted); font-size:0.92rem; text-align:center; margin-top:10px; }

/* form embed */
.form-embed iframe { width: 100%; max-width: 100%; height: 900px; border: none; border-radius: 6px; }

/* contact form (Formspree) */
.contact-form { display:flex; flex-direction:column; gap:12px; max-width:720px; margin: 14px auto 0; }
.contact-form input, .contact-form textarea { padding:10px; border:1px solid var(--border); border-radius:6px; font-size:1rem; }
.contact-form .two-col { display:grid; grid-template-columns:1fr 1fr; gap:12px; }

/* footer */
.site-footer { text-align:center; color:var(--muted); padding:26px 10px; font-size:0.95rem; }
.site-footer a { color: var(--accent); text-decoration:none; }

/* small screen */
@media (max-width:720px) {
  .pricing-grid { grid-template-columns: 1fr auto; }
  .contact-form .two-col { grid-template-columns:1fr; }
  .logo { max-width: 260px; }
  .hero { padding: 28px 16px 18px; }
}
