/* RESET + BASICS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #f3f4f6;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER */
.top-bar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 40;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-text h1 {
  font-size: 1.35rem;
  font-weight: 700;
}

.tagline {
  font-size: 0.88rem;
  color: #6b7280;
}

.header-contact {
  text-align: right;
}

.service-area {
  font-size: 0.82rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.btn-small {
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
}

.btn-large {
  padding: 0.7rem 1.4rem;
}

.btn-solid,
.btn-primary {
  background: #0f766e;
  color: #ecfeff;
}

.btn-solid:hover,
.btn-primary:hover {
  background: #115e59;
}

.btn-outline {
  background: transparent;
  border-color: #0f766e;
  color: #0f766e;
}

.btn-outline:hover {
  background: #ecfdf5;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  color: #e5e7eb;
}

.btn-ghost:hover {
  background: rgba(15, 118, 110, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-full {
  width: 100%;
}

/* NAV */
.main-nav {
  background: linear-gradient(90deg, #0f766e, #0e7490);
  color: #f9fafb;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #a7f3d0;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.nav-cta {
  display: flex;
  gap: 0.4rem;
}

/* HERO */
.hero {
  background: radial-gradient(circle at top left, #ecfeff, #ffffff 60%);
  padding: 3.25rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: flex-start;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f766e;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.hero-main h2 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero-main h2 strong {
  color: #0f766e;
}

.hero-copy {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 1.4rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.83rem;
}

.meta-item {
  background: #ecfdf5;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  border: 1px solid #a7f3d0;
}

.meta-label {
  font-weight: 600;
  margin-right: 0.25rem;
}

/* HERO CARD */
.hero-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
  max-width: 360px;
}

.hero-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.contact-list {
  list-style: none;
  margin-bottom: 0.8rem;
}

.contact-list li + li {
  margin-top: 0.3rem;
}

.contact-list a {
  color: #0f766e;
  font-weight: 500;
}

.small-note {
  font-size: 0.82rem;
  color: #6b7280;
}

/* SECTIONS */
.section {
  padding: 3.25rem 0;
  background: #ffffff;
}

.section.alt {
  background: #f3f4f6;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  font-size: 0.96rem;
  color: #4b5563;
}

/* SERVICES */
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: flex-start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.service-card {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.4rem;
}

.service-card ul {
  font-size: 0.88rem;
  color: #4b5563;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
}

.service-card ul li + li {
  margin-top: 0.2rem;
}

.service-tagline {
  font-size: 0.82rem;
  color: #6b7280;
}

.service-note {
  background: #ecfdf5;
  border-radius: 0.85rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #a7f3d0;
  font-size: 0.9rem;
  color: #065f46;
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.step-card {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
  position: relative;
  padding-top: 1.6rem;
}

.step-number {
  position: absolute;
  top: 0.6rem;
  left: 0.8rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  background: #0f766e;
  color: #ecfeff;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.step-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* BEFORE/AFTER */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.ba-card {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.ba-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.ba-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.review-card {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.review-text {
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.review-name {
  font-size: 0.84rem;
  color: #6b7280;
}

/* CONTACT */
.contact-section {
  background: #f9fafb;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-column h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-form-box {
  background: #ffffff;
  border-radius: 0.95rem;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.contact-form-box form {
  display: grid;
  gap: 0.75rem;
}

.contact-form-box label {
  font-size: 0.9rem;
  display: grid;
  gap: 0.25rem;
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
  padding: 0.5rem 0.6rem;
  border-radius: 0.55rem;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus,
.contact-form-box select:focus {
  outline: none;
  border-color: #0f766e;
  box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.18);
}

/* FOOTER */
.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 1.3rem 0;
  margin-top: 2.5rem;
}

.footer-inner {
  text-align: center;
  font-size: 0.86rem;
}

.footer-sub {
  font-size: 0.8rem;
  margin-top: 0.2rem;
  color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-contact {
    text-align: left;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 100%;
  }
  .service-layout {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-cta {
    align-self: stretch;
  }
  .hero {
    padding: 2.5rem 0 2.75rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 2.4rem 0;
  }
}
