:root {
  --bg: #fbfdff; /* slightly lighter */
  --surface: transparent; /* remove card surface so page reads full-width */
  --text: #0f1720;
  --muted: #586069;
  --accent: #0aa0a3; /* teal */
  --radius: 6px;
  --container-w: 1100px; /* wider to avoid the 'stripe' look */
}

/* Base */
* { box-sizing: border-box; }

html,body { height: 100%; }

body {
  background: radial-gradient(1200px 400px at 50% 5%, rgba(10,160,163,0.02), transparent),
              radial-gradient(800px 260px at 10% 90%, rgba(10,160,163,0.01), transparent),
              var(--bg);
  color: var(--text);
  /* original site/system fonts for a familiar look */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

/* Layout: card-like centered container */
.container {
  max-width: var(--container-w);
  padding: 56px 40px 48px; /* more top space for hero */
  margin: 32px auto;
  background: var(--surface); /* transparent now */
  border-radius: 0;
  box-shadow: none; /* remove uplift */
  border: none;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 48px;
  padding-top: 6px;
  position: relative;
}

/* decorative halo behind logo/title */
.hero::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 40% 35%, rgba(10,160,163,0.08), transparent 40%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.02;
  margin: 8px 0 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #071022;
  position: relative;
  z-index: 2; /* above halo */
  background: linear-gradient(90deg, #08343a 0%, var(--accent) 55%, #2cc4c6 100%);
  /* fallback color for browsers which don't support background-clip:text */
  color: var(--accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,0.02);
}

.hero .intro {
  max-width: 720px;
  margin: 0 auto;
  position: relative; z-index: 2;
}


/* reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .services li { transition: none !important; }
}

.tagline {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--muted);
  position: relative; z-index: 2;
}

.intro {
  font-size: 16px;
  color: #475569;
  max-width: 720px;
  margin: 0 auto;
}

/* thin divider under hero */
.hero + .section { padding-top: 28px; }
.hero-sep {
  height: 1px;
  background: linear-gradient(90deg, rgba(10,160,163,0.06), rgba(15,23,32,0.02));
  margin: 28px auto 36px;
  max-width: 360px;
  border-radius: 2px;
}

/* Sections */
.section {
  margin-bottom: 46px;
  padding: 18px 0;
  border-top: 1px solid rgba(15,23,32,0.04);
}

.section:first-of-type { border-top: none; }

.section h2 {
  font-size: 20px;
  margin: 6px 0 18px;
  position: relative;
  padding-left: 16px;
  font-weight: 700;
}

.section h2::before {
  /* fallback removed: per-section icons below */
  content: none;
}

/* Per-section heading icons (target by order after the hero section).
   hero is the first section, so the following sections are:
   2 = Why, 3 = Services, 4 = Products. This keeps HTML unchanged. */
.container > section.section:nth-of-type(2) h2 {
  padding-left: 48px;
}
.container > section.section:nth-of-type(2) h2::before {
  /* hollow lightbulb */
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M9%2018h6v1a1%201%200%200%200-1%201H10a1%201%200%200%200-1-1v-1z'%20fill='none'%20stroke='%230aa0a3'%20stroke-width='1.6'%20stroke-linecap='round'/%3E%3Cpath%20d='M12%202a6%206%200%200%200-4.9%2010.2c0%202.1%201.1%203.3%201.7%203.9.4.4.6.9.6%201.6v.3h6v-.3c0-.7.2-1.2.6-1.6.6-.6%201.7-1.8%201.7-3.9A6%206%200%200%200%2012%202z'%20fill='none'%20stroke='%230aa0a3'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
}

.container > section.section:nth-of-type(3) h2 {
  padding-left: 48px;
}
.container > section.section:nth-of-type(3) h2::before {
  /* hollow wrench */
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M21%2015v4a1%201%200%200%201-1%201h-4'%20fill='none'%20stroke='%230aa0a3'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3Cpath%20d='M14.7%2010.3a6%206%200%200%201-1.4%204.6L9%2019l-2-2%204.1-4.3a6%206%200%200%201%202.6-1.4'%20fill='none'%20stroke='%230aa0a3'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
}

.container > section.section:nth-of-type(4) h2 {
  padding-left: 48px;
}
.container > section.section:nth-of-type(4) h2::before {
  /* hollow box */
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M21%207l-9%205-9-5'%20fill='none'%20stroke='%230aa0a3'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3Cpath%20d='M3%207v10a1%201%200%200%200%201%201h16a1%201%200%200%200%201-1V7'%20fill='none'%20stroke='%230aa0a3'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Services */
.services { list-style: none; padding-left: 0; margin: 0; }

.services li {
  margin-bottom: 18px;
  padding: 14px 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(10,160,163,0.01), transparent);
  border-left: 3px solid rgba(10,160,163,0.10);
}

.services li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(18,24,33,0.07);
  background: linear-gradient(180deg, rgba(10,160,163,0.03), rgba(10,160,163,0.01));
}

.services strong { display: block; margin-bottom: 0.25rem; color: var(--text); }

.services h3 { font-size: 18px; margin: 0 0 6px; }

.services p { margin: 0; color: var(--muted); }

/* Footer */
.footer {
  margin-top: 40px;
  padding: 10px 0 8px;
  font-size: 15px;
  color: var(--muted);
  text-align: center;
}

.footer a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed rgba(10,160,163,0.12);
}

.footer a:hover { opacity: 0.9; }

.footer .location {
  font-size: 14px;
  color: #777;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.copyright { margin-top: 0.5rem; color: var(--muted); }

.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.08),
    transparent
  );
  margin: 80px 0 48px;
}

/* Logo improvements */
.logo {
  width: 92px; /* larger for more presence */
  height: auto;
  margin: 0 auto 8px; /* reduced gap to title */
  display: block;
  background: radial-gradient(circle at 30% 20%, rgba(10,160,163,0.12), transparent 40%);
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(10,160,163,0.08);
  position: relative; z-index: 2;
}

/* Small screens */
@media (max-width: 980px) {
  .hero h1 { font-size: 56px; }
  .logo { width: 84px; }
}

@media (max-width: 720px) {
  .container { padding: 32px 20px; margin: 24px 12px; }
  .hero h1 { font-size: 34px; }
  .tagline { font-size: 16px; }
  .section h2 { font-size: 20px; }
  .hero::before { width: 140px; height: 140px; top: 8px; }
  .logo { width: 72px; padding: 6px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 28px; }
  .logo { width: 64px; padding: 8px; }
}
