:root {
  --bg: #f3f3f3;
  --bg-soft: #fafafa;
  --panel: #ffffff;
  --text: #111111;
  --muted: #5c5c5c;
  --line: #d6d6d6;
  --line-strong: #b7b7b7;
  --accent: #1b1b1b;
  --shadow: 0 20px 50px rgba(0,0,0,0.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ededed 0%, #f6f6f6 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  background: #111;
  color: #fff;
  font-size: 14px;
}
.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(245,245,245,0.85);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-tagline {
  font-size: 14px;
  font-weight: 600;
  color: #f5c518;
  white-space: nowrap;
}
.brand img {
  height: 54px;
  width: auto;
}
nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
}
nav a { color: var(--muted); }
nav a:hover { color: var(--text); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-light {
  background: rgba(255,255,255,0.7);
  border-color: var(--line);
}
.hero {
  padding: 64px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  color: #6b6b6b;
}
.hero-copy h1,
.section-heading h2,
.two-col h2,
.contact-copy h2,
.stripe h2 {
  margin: 0 0 18px;
  line-height: 1.08;
  font-size: clamp(30px, 4.4vw, 54px);
  letter-spacing: -0.04em;
}
.hero-copy h1 {
  max-width: 12ch;
}
.hero-copy p,
.section-heading p,
.about-box p,
.contact-copy p,
.areas p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-list li,
.pill-wrap span {
  padding: 10px 14px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  color: #323232;
}
.hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #efefef 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.hero-card img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
}
.hero-card-content {
  padding: 22px 6px 4px;
}
.hero-card-content h2 {
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: -0.04em;
}
.hero-card-content p {
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 600;
}
.hero-card-content a {
  font-size: 26px;
  font-weight: 800;
}
.section {
  padding: 90px 0;
}
.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}
.section-heading h2,
.two-col h2,
.contact-copy h2,
.stripe h2 {
  font-size: clamp(30px, 4vw, 48px);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card,
.about-box,
.contact-form,
.mini-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-card {
  padding: 28px;
}
.service-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 22px;
}
.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}
.feature-card {
  background: linear-gradient(180deg, #111 0%, #262626 100%);
  color: #fff;
}
.feature-card ul { color: rgba(255,255,255,0.84); }
.inline-link {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  font-weight: 700;
}
.stripe {
  background: linear-gradient(90deg, #111 0%, #222 100%);
  color: #fff;
}
.stripe .eyebrow { color: rgba(255,255,255,0.7); }
.stripe-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.stats div {
  min-width: 130px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
}
.stats strong {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}
.stats span { color: rgba(255,255,255,0.8); }
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.about-box {
  padding: 30px;
}
.about-box h2 {
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.14;
}
.about-box p {
  font-size: 16px;
  line-height: 1.68;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.mini-card {
  padding: 18px 20px;
}
.mini-card strong {
  display: block;
  margin-bottom: 8px;
}
.contact-form {
  padding: 28px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field-row.single { grid-template-columns: 1fr; }
label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}
input, select, textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.9);
  font: inherit;
}
textarea { resize: vertical; }
.submit-btn {
  width: 100%;
  margin-top: 8px;
}
.form-note,
.form-message {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.form-message { min-height: 24px; margin-bottom: 0; }
.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.footer-brand strong,
.footer-brand span {
  display: block;
}
.footer-brand span { color: var(--muted); }
.footer-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 600;
}
.footer-call {
  font-size: 22px;
  font-weight: 800;
}
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid,
  .two-col,
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  nav { display: none; }
  .topbar-inner,
  .nav,
  .stripe-inner,
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .field-row,
  .service-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 32px; }
  .site-header { position: static; }
  .brand img { height: 46px; }
  .brand-tagline { display: none; }
  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 40px);
    max-width: none;
  }
  .about-box p,
  .hero-copy p {
    font-size: 15px;
    line-height: 1.65;
  }
}
