/* Bespoke Design System */
:root {
  --theme-primary: #064e3b;
  --theme-secondary: #065f46;
  --theme-accent: #10b981;
  --theme-accent-hover: #059669;
  --theme-badge-bg: #ecfdf5;
  --theme-badge-text: #047857;
  --theme-badge-border: #a7f3d0;
  --theme-btn: #059669;
  --theme-btn-text: #ffffff;
  --theme-btn-hover: #047857;
  --theme-hero-bg: linear-gradient(135deg, #064e3b 0%, #0f766e 100%);
  --theme-card-border: #e2e8f0;
  
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  --border-light: #e2e8f0;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-body: #334155;
  --success: #10b981;
  --success-dark: #059669;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.12), 0 10px 10px -5px rgba(0,0,0,0.04);
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); background-color: var(--bg-page); color: var(--text-body); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img, svg { vertical-align: middle; max-width: 100%; }

/* TOP TICKER */
.top-ticker {
  background: var(--theme-primary);
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.top-ticker a {
  color: var(--theme-accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  border-bottom: 2px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-text-block { display: flex; flex-direction: column; }
.brand-title {
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--theme-primary);
  text-transform: uppercase;
  line-height: 1.15;
  white-space: nowrap;
}
.brand-title span { color: var(--theme-accent); }
.brand-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-links a { color: var(--text-body); transition: color 0.15s; }
.nav-links a:hover { color: var(--theme-accent); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--theme-badge-bg);
  color: var(--theme-badge-text);
  padding: 9px 18px;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  border: 1px solid var(--theme-badge-border);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.phone-badge:hover { background: var(--theme-badge-border); transform: translateY(-1px); }

.btn-primary {
  background: var(--theme-btn);
  color: var(--theme-btn-text);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-primary:hover { background: var(--theme-btn-hover); transform: translateY(-1px); }

/* HERO SECTION */
.hero {
  background: var(--theme-hero-bg);
  color: #ffffff;
  padding: 56px 24px 68px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--theme-accent);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--theme-accent); }
.hero p {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #e2e8f0;
  margin-bottom: 24px;
  max-width: 680px;
}
.hero-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-check-item {
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: #f1f5f9;
}
.hero-preview-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #0f172a;
}
.hero-preview-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.hero-preview-caption {
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #e2e8f0;
}

/* QUOTE / DISPATCH CARD */
.quote-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--theme-card-border);
}
.quote-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--theme-primary);
}
.quote-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-body);
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #ffffff;
}
.form-control:focus {
  outline: none;
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 3px var(--theme-badge-bg);
}
.btn-quote {
  width: 100%;
  background: var(--theme-btn);
  color: var(--theme-btn-text);
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}
.btn-quote:hover {
  background: var(--theme-btn-hover);
  transform: translateY(-1px);
}

/* TRUST BAR */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.trust-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--theme-badge-bg);
  color: var(--theme-badge-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--theme-primary);
  line-height: 1.25;
}
.trust-item p { font-size: 0.8rem; color: var(--text-muted); }

/* SECTIONS */
.section { padding: 72px 24px; }
.section-alt { background: var(--bg-subtle); }
.section-container { max-width: 1320px; margin: 0 auto; }
.section-header { text-align: center; max-width: 820px; margin: 0 auto 52px; }
.section-subtitle {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--theme-accent);
  margin-bottom: 8px;
}
.section-title {
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--theme-primary);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-description { font-size: 1.05rem; color: var(--text-muted); line-height: 1.6; }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--theme-accent);
}
.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--theme-badge-bg);
  color: var(--theme-badge-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--theme-primary);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}
.service-features-list {
  list-style: none;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-bottom: 20px;
}
.service-features-list li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--theme-accent);
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}
.service-btn:hover { text-decoration: underline; }

/* 4-STAGE PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.process-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--theme-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.process-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--theme-primary);
  margin-bottom: 10px;
}
.process-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* MATRIX TABLE */
.matrix-wrap {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.matrix-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.9rem; }
.matrix-table th {
  background: var(--theme-primary);
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.matrix-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
}
.matrix-table tr:hover td { background: var(--bg-subtle); }
.matrix-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.badge-green { background: #dcfce7; color: #15803d; }
.badge-blue { background: #e0f2fe; color: #0369a1; }
.badge-amber { background: #fef3c7; color: #b45309; }

/* WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.why-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--theme-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* FAQ ACCORDION */
.faq-container { max-width: 920px; margin: 0 auto; }
.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--theme-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
}
.faq-item.active .faq-answer { display: block; }

/* CTA BANNER */
.cta-banner {
  background: var(--theme-hero-bg);
  color: #ffffff;
  padding: 64px 24px;
  text-align: center;
  position: relative;
}
.cta-container { max-width: 820px; margin: 0 auto; }
.cta-banner h2 { font-size: 2.45rem; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-banner p { font-size: 1.1rem; color: #e2e8f0; margin-bottom: 28px; }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-urgent-phone {
  background: var(--theme-btn);
  color: var(--theme-btn-text);
  font-size: 1.25rem;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s, background 0.2s;
}
.btn-urgent-phone:hover { background: var(--theme-btn-hover); transform: translateY(-2px); }

/* FOOTER */
.site-footer {
  background: var(--theme-primary);
  color: #94a3b8;
  padding: 64px 24px 32px;
  border-top: 3px solid var(--theme-accent);
}
.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 18px; }
.footer-col h4 {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #94a3b8; font-size: 0.88rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--theme-accent); }
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-container { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-ticker { flex-direction: column; text-align: center; gap: 4px; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.15rem; }
  .hero-checklist { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-container { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
