/* ============================================================
   EVERTEK SERVICE PAGE STYLES
   Static HTML service pages matching the React app's aesthetic
   ============================================================ */
:root {
  --navy-deep: #000a15;
  --navy-mid: #001830;
  --navy-line: #0a2540;
  --teal-bright: #00beaf;
  --teal-mid: #00a9a7;
  --teal-deep: #008479;
  --bg-light: #f8f8f7;
  --bg-tint: #e9f0f5;
  --text-dark: #1a1a19;
  --text-muted: #34322d;
  --text-grey: #858481;

  --font-display: 'Syne', 'Arial Black', sans-serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ----- HEADER (matches blog/main) ----- */
.site-header {
  background: var(--bg-light);
  border-bottom: 1px solid rgba(0, 10, 21, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800;
}
.nav-links {
  display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-weight: 400; font-size: 15px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal-deep); }
.nav-cta {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  color: white; padding: 10px 22px; border-radius: 999px;
  text-decoration: none; font-weight: 500; font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 190, 175, 0.3);
}
@media (max-width: 720px) { .nav-links { display: none; } }

/* ----- SERVICE HERO ----- */
.service-hero {
  background: var(--navy-deep);
  color: white;
  padding: 80px 32px 100px;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 35%, rgba(0, 190, 175, 0.14), transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(0, 132, 121, 0.08), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
}
.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(0, 190, 175, 0.4);
  border-radius: 999px;
  color: var(--teal-bright);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.service-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.04;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.service-hero h1 .accent {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service-hero .lede {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 28px;
  max-width: 540px;
}
.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  color: white; padding: 14px 28px; border-radius: 999px;
  text-decoration: none; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 190, 175, 0.4);
}
.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 28px; border-radius: 999px;
  text-decoration: none; font-weight: 500;
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); }

/* Trust badges card in hero */
.trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 190, 175, 0.2);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(8px);
}
.trust-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin: 0 0 20px;
}
.trust-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
.trust-list .tick {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ----- SECTION LAYOUTS ----- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.section-tight { max-width: 800px; }
.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy-deep);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.section h2 .accent {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy-deep);
  margin: 32px 0 12px;
}
.section .lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 0 40px;
}
.section p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.section strong { color: var(--text-dark); font-weight: 500; }
.section ul, .section ol {
  font-size: 17px;
  color: var(--text-muted);
  padding-left: 24px;
}
.section li { margin-bottom: 8px; }

/* What's included grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.included-item {
  background: white;
  border: 1px solid rgba(0, 10, 21, 0.08);
  border-radius: 12px;
  padding: 24px;
}
.included-item .num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  line-height: 1;
}
.included-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--navy-deep);
}
.included-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Pricing band */
.pricing-band {
  background: var(--navy-deep);
  color: white;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.pricing-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 190, 175, 0.1), transparent 60%);
}
.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.pricing-band h2 {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.pricing-band .lede {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 40px;
  max-width: 600px;
  font-size: 17px;
}
.price-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.price-tier {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 190, 175, 0.2);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
}
.price-tier .tier-name {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 12px;
  font-weight: 500;
}
.price-tier .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: white;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.price-tier .price-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.price-tier ul {
  list-style: none;
  margin: 0; padding: 0;
}
.price-tier li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  display: flex; align-items: flex-start; gap: 10px;
}
.price-tier li::before {
  content: '✓';
  color: var(--teal-bright);
  font-weight: 700;
  flex-shrink: 0;
}

/* FAQ accordion (no JS — uses details/summary) */
.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list details {
  background: white;
  border: 1px solid rgba(0, 10, 21, 0.08);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-list details[open] {
  box-shadow: 0 8px 24px rgba(0, 10, 21, 0.06);
}
.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 17px;
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s, background 0.2s;
}
.faq-list details[open] summary::after {
  content: '−';
  background: var(--teal-deep);
  color: white;
}
.faq-list .faq-body {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 16px;
}

/* Areas served band */
.areas-band {
  background: var(--bg-tint);
  padding: 60px 32px;
  text-align: center;
}
.areas-inner {
  max-width: 900px;
  margin: 0 auto;
}
.areas-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--navy-deep);
  margin: 0 0 20px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.area-tag {
  background: white;
  border: 1px solid rgba(0, 10, 21, 0.1);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--text-muted);
}

/* CTA card */
.cta-card {
  background: linear-gradient(135deg, var(--navy-deep), #001b35);
  color: white;
  padding: 56px 40px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 190, 175, 0.2), transparent 70%);
}
.cta-card-inner { position: relative; }
.cta-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 12px;
  color: white;
}
.cta-card p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 28px;
  font-size: 17px;
}
.cta-buttons {
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cross-link to related services */
.related-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.related-services a {
  display: block;
  background: white;
  border: 1px solid rgba(0, 10, 21, 0.08);
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.related-services a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 10, 21, 0.08);
  border-color: var(--teal-bright);
}
.related-services .related-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--teal-deep);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ----- FOOTER ----- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 32px 40px;
  text-align: center;
  font-size: 14px;
}
.site-footer a { color: var(--teal-bright); text-decoration: none; }
.site-footer .footer-grid {
  max-width: 800px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.site-footer hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 800px;
  margin: 32px auto;
}

@media (max-width: 600px) {
  .service-hero { padding: 60px 24px 80px; }
  .section { padding: 60px 24px; }
  .pricing-band { padding: 60px 24px; }
  .cta-card { padding: 40px 24px; }
}
