:root {

  --bg: #f3f4f6;

  --bg-soft: #ffffff;

  --text-main: #0f172a;

  --text-muted: #6b7280;

  --accent: #0f766e;

  --accent-soft: #14b8a6;

  --border: #e5e7eb;

  --radius-lg: 20px;

  --radius-md: 14px;

  --max-width: 1120px;

}



/* RESET */

* {

  box-sizing: border-box;

  margin: 0;

  padding: 0;

}



body {

  font-family: system-ui, -apple-system, BlinkMacSystemFont,

    "SF Pro Text", "Segoe UI", sans-serif;

  background: var(--bg);

  color: var(--text-main);

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;

}



a {

  color: inherit;

  text-decoration: none;

}



/* LAYOUT */

.page {

  min-height: 100vh;

  display: flex;

  flex-direction: column;

}



.wrapper {

  max-width: var(--max-width);

  margin: 0 auto;

  padding: 0 1.25rem;

  width: 100%;

}



/* HEADER / NAV */

header {

  position: sticky;

  top: 0;

  z-index: 20;

  backdrop-filter: blur(12px);

  background: rgba(255, 255, 255, 0.96);

  border-bottom: 1px solid var(--border);

}



.nav {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0.9rem 0;

  gap: 1rem;

}



.brand {

  display: flex;

  flex-direction: column;

}



.brand-main {

  font-weight: 700;

  font-size: 1.05rem;

}



.brand-sub {

  font-size: 0.8rem;

  color: var(--text-muted);

}



.nav-links {

  display: none;

  gap: 1.1rem;

  font-size: 0.9rem;

}



@media (min-width: 768px) {

  .nav {

    gap: 2rem;

  }



  .brand {

    flex-direction: column;

  }



  .nav-links {

    display: flex;

  }

}



.nav-links a {

  color: var(--text-muted);

  position: relative;

  padding-bottom: 0.1rem;

}



.nav-links a::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 0;

  height: 2px;

  background: linear-gradient(90deg, var(--accent), var(--accent-soft));

  transition: width 0.18s ease-out;

}



.nav-links a:hover {

  color: var(--text-main);

}



.nav-links a:hover::after {

  width: 100%;

}



.nav-cta {

  display: none;

}



@media (min-width: 768px) {

  .nav-cta {

    display: inline-flex;

    align-items: center;

    gap: 0.4rem;

    font-size: 0.85rem;

    padding: 0.45rem 0.95rem;

    border-radius: 999px;

    border: 1px solid #d1d5db;

    background: #0f766e;

    color: white;

    cursor: pointer;

    white-space: nowrap;

  }

}



/* HERO */

.hero {

  position: relative;

  min-height: 80vh;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #111827;

  overflow: hidden;

}



.hero-bg {

  position: absolute;

  inset: 0;

  background-image:

    linear-gradient(to bottom right,

      rgba(15, 23, 42, 0.75),

      rgba(15, 23, 42, 0.65)),

    url("../hero-creekside.jpg");

  background-size: cover;

  background-position: center;

  z-index: 0;

}



.hero-overlay {

  position: absolute;

  inset: 0;

  background:

    radial-gradient(circle at top left, rgba(15, 23, 42, 0.6), transparent 55%);

  mix-blend-mode: screen;

}



.hero-inner {

  position: relative;

  z-index: 1;

  width: 100%;

}



.hero-content {

  max-width: 680px;

  padding: 2.6rem 1.4rem 2.4rem;

  margin: 2.2rem auto;

  border-radius: 22px;

  background: rgba(15, 23, 42, 0.92);

  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.95);

  color: white;

  border: 1px solid rgba(148, 163, 184, 0.55);

}



@media (min-width: 768px) {

  .hero-content {

    padding: 3rem 2.6rem 2.6rem;

  }

}



.hero-kicker {

  display: inline-flex;

  align-items: center;

  gap: 0.4rem;

  padding: 0.25rem 0.65rem 0.25rem 0.4rem;

  border-radius: 999px;

  background: rgba(15, 23, 42, 0.75);

  border: 1px solid rgba(148, 163, 184, 0.7);

  font-size: 0.78rem;

  margin-bottom: 1rem;

}



.hero-kicker .label {

  padding: 0.12rem 0.55rem;

  border-radius: 999px;

  background: rgba(45, 212, 191, 0.16);

  border: 1px solid rgba(45, 212, 191, 0.7);

  font-size: 0.7rem;

  text-transform: uppercase;

  letter-spacing: 0.12em;

}



.hero-title {

  font-size: 2.1rem;

  line-height: 1.1;

  letter-spacing: -0.04em;

  margin-bottom: 0.9rem;

}



@media (min-width: 768px) {

  .hero-title {

    font-size: 2.6rem;

  }

}



.hero-title .highlight {

  color: #a7f3d0;

}



.hero-subtitle {

  font-size: 1rem;

  color: #e5e7eb;

  max-width: 32rem;

  margin-bottom: 1.1rem;

}



.hero-microcopy {

  font-size: 0.86rem;

  color: #e5e7eb;

  margin-bottom: 1.4rem;

}



.hero-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 0.85rem;

  margin-bottom: 1.05rem;

}



.btn-primary,

.btn-secondary {

  border-radius: 999px;

  padding: 0.75rem 1.55rem;

  font-size: 0.9rem;

  font-weight: 500;

  display: inline-flex;

  align-items: center;

  gap: 0.45rem;

  border: none;

  cursor: pointer;

  outline: none;

  white-space: nowrap;

}



.btn-primary {

  background: #0f766e;

  color: #ecfdf5;

  border: 1px solid rgba(16, 185, 129, 0.8);

  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);

}



.btn-secondary {

  background: rgba(15, 23, 42, 0.4);

  color: #e5e7eb;

  border: 1px solid rgba(148, 163, 184, 0.9);

}



.hero-note {

  font-size: 0.78rem;

  color: #e5e7eb;

  max-width: 28rem;

}



/* MAIN SECTIONS */

main {

  background: var(--bg);

}



section {

  padding: 3rem 0;

}



.section-header {

  margin-bottom: 1.8rem;

  max-width: 34rem;

}



.section-kicker {

  font-size: 0.78rem;

  color: var(--text-muted);

  text-transform: uppercase;

  letter-spacing: 0.12em;

  margin-bottom: 0.4rem;

}



.section-title {

  font-size: 1.6rem;

  margin-bottom: 0.45rem;

}



.section-desc {

  font-size: 0.95rem;

  color: var(--text-muted);

}



.section-light {

  background: var(--bg-soft);

  border-top: 1px solid var(--border);

  border-bottom: 1px solid var(--border);

}



/* SERVICES */

.services-grid {

  display: grid;

  gap: 1rem;

}



@media (min-width: 900px) {

  .services-grid {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }

}



.service-card {

  border-radius: var(--radius-md);

  border: 1px solid var(--border);

  background: #ffffff;

  padding: 0.95rem 1.1rem 1.15rem;

  font-size: 0.9rem;

}



.service-title {

  font-size: 1rem;

  margin-bottom: 0.25rem;

}



.service-tag {

  font-size: 0.74rem;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  color: var(--accent);

  margin-bottom: 0.45rem;

}



/* VOICE / LOCAL */

.voice-grid {

  display: grid;

  gap: 1rem;

}



@media (min-width: 900px) {

  .voice-grid {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }

}



.voice-card {

  border-radius: var(--radius-md);

  border: 1px solid var(--border);

  background: #ffffff;

  padding: 1rem 1.1rem 1.15rem;

  font-size: 0.9rem;

}



.voice-card h3 {

  font-size: 1rem;

  margin-bottom: 0.35rem;

}



.voice-card .muted {

  font-size: 0.82rem;

  color: var(--text-muted);

  margin-top: 0.4rem;

}



/* WHY DIGITAL / STATS */

.stats-grid {

  display: grid;

  gap: 1rem;

}



@media (min-width: 900px) {

  .stats-grid {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }

}



.stat-card {

  border-radius: var(--radius-md);

  border: 1px solid var(--border);

  background: #ffffff;

  padding: 1rem 1.1rem 1.15rem;

}



.stat-number {

  font-size: 1.8rem;

  font-weight: 700;

  color: var(--accent);

  margin-bottom: 0.35rem;

}



.stat-label {

  font-size: 0.9rem;

  color: var(--text-muted);

}



/* PROCESS */

.process-grid {

  display: grid;

  gap: 1rem;

}



@media (min-width: 768px) {

  .process-grid {

    grid-template-columns: repeat(4, minmax(0, 1fr));

  }

}



.step-card {

  border-radius: var(--radius-md);

  border: 1px solid var(--border);

  background: #ffffff;

  padding: 0.85rem 0.95rem;

  font-size: 0.85rem;

}



.step-label {

  display: inline-flex;

  align-items: center;

  gap: 0.35rem;

  font-size: 0.74rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: var(--text-muted);

  margin-bottom: 0.35rem;

}



.step-label .badge {

  width: 22px;

  height: 22px;

  border-radius: 999px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border: 1px solid #d1d5db;

  font-size: 0.7rem;

  background: #f9fafb;

  color: #4b5563;

}



.step-title {

  font-size: 0.95rem;

  margin-bottom: 0.25rem;

}



/* CONTACT */

.contact-grid {

  display: grid;

  gap: 1.6rem;

}



@media (min-width: 900px) {

  .contact-grid {

    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);

  }

}



.contact-card {

  border-radius: var(--radius-lg);

  border: 1px solid var(--border);

  background: #ffffff;

  padding: 1.3rem 1.4rem 1.4rem;

}



.bullets {

  list-style: none;

  padding-left: 0;

  font-size: 0.88rem;

  color: var(--text-muted);

}



.bullets li + li {

  margin-top: 0.35rem;

}



form {

  display: grid;

  gap: 0.9rem;

  font-size: 0.88rem;

}



.field-group {

  display: flex;

  flex-direction: column;

  gap: 0.3rem;

}



label {

  font-size: 0.8rem;

  color: #4b5563;

}



input,

select,

textarea {

  border-radius: 10px;

  border: 1px solid #d1d5db;

  background: #f9fafb;

  padding: 0.55rem 0.7rem;

  color: #111827;

  font-size: 0.88rem;

  outline: none;

}



input:focus,

select:focus,

textarea:focus {

  border-color: var(--accent-soft);

  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.35);

  background: #ffffff;

}



textarea {

  min-height: 90px;

  resize: vertical;

}



.field-inline {

  display: grid;

  gap: 0.8rem;

}



@media (min-width: 600px) {

  .field-inline {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

}



.field-small {

  font-size: 0.76rem;

  color: var(--text-muted);

}



.checkbox-inline {

  width: auto;

  margin-right: 0.35rem;

}



.submit-row {

  display: flex;

  flex-wrap: wrap;

  gap: 0.8rem;

  align-items: center;

  margin-top: 0.4rem;

}



.submit-help {

  font-size: 0.78rem;

  color: var(--text-muted);

}



/* FOOTER */

footer {

  border-top: 1px solid var(--border);

  padding: 1.1rem 0 1.5rem;

  font-size: 0.8rem;

  color: var(--text-muted);

  margin-top: auto;

  background: #f9fafb;

}



.footer-inner {

  display: flex;

  flex-wrap: wrap;

  gap: 0.7rem;

  justify-content: space-between;

  align-items: center;

}
/* Voice Search Logo Row */

.voice-logos {

  padding: 3rem 0;

  text-align: center;

}



.voice-logos .section-title {

  font-size: 1.6rem;

  margin-bottom: 0.5rem;

}



.voice-logos .section-desc {

  color: var(--text-muted);

  margin-bottom: 1.5rem;

}



.logo-row {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 2.2rem;

  padding: 1rem 0;

}



.logo-row img {

  height: 38px;

  opacity: 0.8;

  transition: opacity 0.2s ease, transform 0.2s ease;

}



.logo-row img:hover {

  opacity: 1;

  transform: translateY(-2px);

}
/* Voice Search Logo Row */
.logo-row {
display: flex;
justify-content: center;
align-items: center;
gap: 50px;
margin: 40px 0;
}

.vs-logo {
width: 60px;
height: auto;
opacity: 0.9;
transition: transform 0.2s ease, opacity 0.2s ease;
}

.vs-logo:hover {
transform: scale(1.15);
opacity: 1;
}

