/* Nel Accountants — shared stylesheet */
:root {
  --ink: #1f2a63;        /* Nel navy */
  --slate: #555f7a;
  --accent: #1f2a63;     /* navy primary */
  --accent-dark: #161e49;
  --orange: #f58220;     /* Nel orange */
  --orange-dark: #d96c0e;
  --bg: #ffffff;
  --bg-soft: #f5f6fa;
  --border: #e4e7f0;
  --radius: 12px;
}

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

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--orange); }
nav ul { display: flex; gap: 28px; list-style: none; align-items: center; }
nav a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
nav a:hover, nav a.active { color: var(--accent); }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn:hover { background: var(--accent-dark); }
.btn-orange { background: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline {
  background: transparent;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--bg-soft); }

/* Hero */
.hero { padding: 96px 0 80px; text-align: center; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 760px;
  margin: 0 auto 20px;
}
.hero p {
  color: var(--slate);
  font-size: 1.2rem;
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Split hero with illustration */
.hero-split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; text-align: left; }
.hero-split h1, .hero-split p { margin-left: 0; margin-right: 0; max-width: none; }
.hero-split .actions { justify-content: flex-start; }
.hero-split img { width: 100%; height: auto; }
.photo { border-radius: 16px; box-shadow: 0 18px 44px rgba(31, 42, 99, 0.18); object-fit: cover; }

/* Prose section with side illustration */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-section img { width: 100%; max-width: 420px; height: auto; justify-self: center; }

@media (max-width: 800px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-split .actions { justify-content: center; }
  .hero-split img { max-width: 380px; margin: 0 auto; }
  .split-section { grid-template-columns: 1fr; }
}

/* Sections */
section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.section-title p { color: var(--slate); max-width: 560px; margin: 0 auto; }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.card .icon { font-size: 1.8rem; margin-bottom: 14px; }
.card ul { list-style: none; margin-top: 10px; }
.card ul li { padding: 5px 0; color: var(--slate); font-size: 0.95rem; }
.card ul li::before { content: "– "; color: var(--orange); font-weight: 700; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; }
.card p { color: var(--slate); font-size: 0.97rem; }
.card a { color: var(--accent); font-weight: 600; text-decoration: none; font-size: 0.95rem; }

/* Pricing */
.price-card { text-align: center; display: flex; flex-direction: column; }
.price-card .price { font-size: 2.2rem; font-weight: 800; margin: 12px 0 2px; }
.price-card .per { color: var(--slate); font-size: 0.9rem; margin-bottom: 18px; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 24px; flex: 1; }
.price-card li { padding: 7px 0; color: var(--slate); font-size: 0.95rem; border-bottom: 1px solid var(--border); }
.price-card li::before { content: "✓ "; color: var(--orange); font-weight: 700; }
.featured { border: 2px solid var(--orange); position: relative; }
.featured .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 3px 14px; border-radius: 99px; letter-spacing: 0.04em;
}

/* Prose pages */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 36px 0 12px; letter-spacing: -0.02em; }
.prose p { color: var(--slate); margin-bottom: 16px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info h3 { margin-bottom: 6px; font-size: 1.05rem; }
.contact-info p { color: var(--slate); margin-bottom: 22px; }
form label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; }
form input, form textarea, form select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 8px; font: inherit; font-size: 0.97rem; margin-bottom: 18px;
  background: var(--bg);
}
form input:focus, form textarea:focus, form select:focus {
  outline: 2px solid var(--accent); border-color: transparent;
}
form button { border: none; cursor: pointer; font: inherit; }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; text-align: center; border-radius: var(--radius); padding: 56px 32px; }
.cta-band.with-photo { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; text-align: left; padding: 48px; }
.cta-band.with-photo img { width: 100%; height: auto; border-radius: 12px; }
@media (max-width: 800px) {
  .cta-band.with-photo { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; }
}
.stacked-cards { display: grid; gap: 24px; }
.cta-band h2 { font-size: 1.7rem; margin-bottom: 10px; letter-spacing: -0.02em; }
.cta-band p { color: #b8c4cc; margin-bottom: 26px; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 40px; }
.affiliations { text-align: center; margin-bottom: 28px; }
.affiliations p { color: var(--slate); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.affiliations .logos { display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; }
.affiliations img { height: 56px; width: auto; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; color: var(--slate); font-size: 0.9rem; }
footer a { color: var(--slate); text-decoration: none; margin-left: 18px; }
footer a:hover { color: var(--accent); }

@media (max-width: 720px) {
  nav ul { gap: 16px; }
  nav ul li.hide-mobile { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
}
