:root {
  --primary: #0f8f97;
  --primary-dark: #0b6276;
  --accent: #f08c2b;
  --ink: #1f2933;
  --muted-ink: #52606d;
  --light-bg: #f6f8fb;
  --white: #ffffff;
  --border: #d9e2ec;
  --shadow: 0 10px 30px rgba(15, 98, 118, 0.08);
  --radius: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 98, 118, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand-logo {
  width: 180px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

.hero,
.page-hero {
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(circle at top right, rgba(240, 140, 43, 0.18), transparent 25%),
    radial-gradient(circle at top left, rgba(15, 143, 151, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.hero-grid,
.two-column,
.service-layout,
.grid {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.two-column {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.service-layout {
  grid-template-columns: repeat(3, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.section {
  padding: 5rem 0;
}

.muted {
  background: var(--light-bg);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.center,
.center {
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.84rem;
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p,
li {
  color: var(--muted-ink);
}

.lead {
  font-size: 1.15rem;
  max-width: 62ch;
}

.hero-copy .lead {
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0;
}

.center-actions {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.btn-secondary {
  color: var(--primary-dark);
  background: rgba(15, 143, 151, 0.08);
  border-color: rgba(15, 143, 151, 0.14);
}

.btn-light {
  background: var(--white);
  color: var(--primary-dark);
}

.full-width {
  width: 100%;
}

.text-link {
  color: var(--primary-dark);
  font-weight: 700;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card,
.quote-card,
.process-card,
.emphasis-card {
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.emphasis-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.info-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.info-value {
  color: var(--ink);
  font-weight: 600;
}

.quick-points,
.check-list,
.footer-links,
.contact-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.quick-points li,
.check-list li {
  position: relative;
  padding-left: 1.7rem;
}

.quick-points li::before,
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.compact li {
  gap: 0.55rem;
}

.steps-grid .card,
.result-card,
.service-panel {
  height: 100%;
}

.step-number {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(15, 143, 151, 0.1);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-tag {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(240, 140, 43, 0.12);
  color: #9a5513;
  font-weight: 700;
  font-size: 0.86rem;
}

.stack {
  display: grid;
  gap: 1.25rem;
}

.number-list {
  margin-left: 1.25rem;
  display: grid;
  gap: 0.8rem;
}

.quote {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.small-text {
  font-size: 0.94rem;
}

.top-gap {
  margin-top: 1.5rem;
}

.cta-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 65%, var(--accent) 100%);
  color: var(--white);
}

.cta-strip h2,
.cta-strip p,
.cta-strip .eyebrow,
.cta-strip li {
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer {
  background: #0d1b23;
  color: rgba(255, 255, 255, 0.88);
  padding: 3.5rem 0;
}

.site-footer p,
.site-footer a,
.site-footer h3 {
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2rem;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.contact-list li strong {
  color: var(--ink);
}

.note-card {
  border-style: dashed;
}
