/* ============================================================
   Cleaning Pro Resolution — Tampa, FL
   Shared stylesheet
   ============================================================ */

:root {
  --navy: #121212;
  --navy-light: #1f1f1f;
  --teal: #d4af37;
  --teal-dark: #b8962e;
  --teal-light: #faf6e8;
  --sun: #e8c252;
  --white: #ffffff;
  --off-white: #f7fafc;
  --gray-100: #eef2f6;
  --gray-300: #cbd5e0;
  --gray-600: #5a6b7b;
  --gray-800: #2d3a48;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.16);
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--teal); color: #121212; }
.btn-primary:hover { background: var(--teal-dark); color: #121212; }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); color: var(--white); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.4rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); font-weight: 600; }
.topbar .tagline { opacity: 0.85; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none !important;
}
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.15; }
.logo-text .brand {
  display: block;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-text .area {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}
.nav-links a {
  color: var(--gray-800);
  font-weight: 500;
  font-size: 0.97rem;
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-dark);
  border-bottom-color: var(--teal);
}
.nav-cta { white-space: nowrap; }
/* Restore pill styling on the CTA — the generic .nav-links a rule above
   otherwise strips the button padding and adds the underline border */
.nav-links a.btn {
  padding: 0.65rem 1.5rem;
  border-bottom: none;
  color: #121212;
  font-weight: 600;
}
.nav-links a.btn:hover,
.nav-links a.btn.active {
  color: #121212;
  border-bottom: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.94) 0%, rgba(61, 50, 17, 0.92) 100%),
    radial-gradient(circle at 80% 20%, #d4af37 0%, #121212 70%);
  color: var(--white);
  padding: 5.5rem 0 6.5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 70px;
  background: var(--white);
  clip-path: ellipse(75% 100% at 50% 100%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: #f0d77b; }
.hero p.lead {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 34rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-art { display: flex; justify-content: center; }
.hero-art svg { width: 100%; max-width: 380px; height: auto; }

.hero-badges {
  display: flex;
  gap: 1.6rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}
.hero-badges .badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.95;
}
.hero-badges .badge svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section.tinted { background: var(--off-white); }
.section.teal-tinted { background: var(--teal-light); }

.section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-dark);
  margin-bottom: 0.6rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.section-head p { color: var(--gray-600); font-size: 1.05rem; }

/* ---------- Cards / grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.card .icon svg { width: 30px; height: 30px; }
.card h3 {
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
  font-weight: 600;
}
.card p { color: var(--gray-600); font-size: 0.95rem; }
.card .card-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.step { text-align: center; padding: 0 0.5rem; }
.step .num {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px var(--teal-light);
}
.step h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: 0.5rem; }
.step p { color: var(--gray-600); font-size: 0.95rem; }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.why-item svg { width: 28px; height: 28px; flex-shrink: 0; margin-top: 0.15rem; }
.why-item h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.3rem; }
.why-item p { font-size: 0.93rem; color: var(--gray-600); }

/* ---------- Service areas ---------- */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  max-width: 52rem;
  margin: 0 auto;
}
.area-chips .chip {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.area-chips .chip svg { width: 15px; height: 15px; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}
.testimonial .stars { color: var(--sun); letter-spacing: 0.15em; margin-bottom: 0.9rem; font-size: 1.05rem; }
.testimonial blockquote {
  font-size: 0.98rem;
  color: var(--gray-800);
  font-style: italic;
  flex: 1;
}
.testimonial cite {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
}
.testimonial cite span {
  display: block;
  font-weight: 400;
  color: var(--gray-600);
  font-size: 0.82rem;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(115deg, var(--navy) 0%, var(--teal-dark) 100%);
  color: var(--white);
  border-radius: 18px;
  padding: 3.2rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}
.cta-banner p { opacity: 0.9; margin-bottom: 1.8rem; font-size: 1.05rem; }
.cta-banner .btn-primary { background: var(--sun); color: var(--navy); }
.cta-banner .btn-primary:hover { background: #f0d77b; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.page-hero p { opacity: 0.9; max-width: 38rem; margin: 0 auto; font-size: 1.08rem; }

/* ---------- Service detail blocks ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.service-detail .icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail .icon svg { width: 34px; height: 34px; }
.service-detail h2 { color: var(--navy); font-size: 1.35rem; margin-bottom: 0.5rem; }
.service-detail p { color: var(--gray-600); margin-bottom: 0.8rem; }
.service-detail ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 1.5rem;
}
.service-detail ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.93rem;
  color: var(--gray-800);
}
.service-detail ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ---------- About page ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-split h2 { color: var(--navy); font-size: 1.8rem; margin-bottom: 1rem; letter-spacing: -0.02em; }
.about-split p { color: var(--gray-600); margin-bottom: 1rem; }
.about-art { display: flex; justify-content: center; }
.about-art svg { width: 100%; max-width: 360px; }

.values-list { list-style: none; margin-top: 1.2rem; }
.values-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}
.values-list li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 0.2rem; }
.values-list li strong { color: var(--navy); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat .value {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
}
.stat .label { color: var(--gray-600); font-size: 0.92rem; font-weight: 500; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  padding: 2.2rem;
}
.contact-form h2 { color: var(--navy); font-size: 1.4rem; margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--gray-600); margin-top: 0.8rem; }

.form-success {
  display: none;
  background: var(--teal-light);
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.form-success.visible { display: block; }

.contact-info .info-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info .info-card svg { width: 26px; height: 26px; flex-shrink: 0; margin-top: 0.15rem; }
.contact-info .info-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.2rem; }
.contact-info .info-card p, .contact-info .info-card a { font-size: 0.93rem; color: var(--gray-600); }
.contact-info .info-card a { font-weight: 600; color: var(--teal-dark); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  margin-top: 0.4rem;
}
.map-embed iframe { display: block; width: 100%; height: 280px; border: 0; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.4rem 1.2rem; color: var(--gray-600); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 0.55rem; }
.footer-grid a { color: rgba(255, 255, 255, 0.8); font-size: 0.93rem; }
.footer-grid a:hover { color: var(--white); }
.footer-about p { font-size: 0.92rem; margin-top: 0.8rem; max-width: 22rem; }
.footer-about .logo-text .brand { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Blog / Tips & Tricks ---------- */
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card .post-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.post-tag {
  display: inline-block;
  background: var(--teal-light);
  color: #8a6d1c;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.post-date { font-size: 0.8rem; color: var(--gray-600); white-space: nowrap; }
.post-card h3 { font-size: 1.12rem; line-height: 1.35; margin-bottom: 0.55rem; }
.post-card h3 a { color: var(--navy); text-decoration: none; }
.post-card h3 a:hover { color: var(--teal-dark); }
.post-card p { color: var(--gray-600); font-size: 0.93rem; flex: 1; }
.post-card .card-link { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: 0.92rem; }

/* Article pages */
.page-hero .post-tag { background: rgba(255, 255, 255, 0.14); color: #f0d77b; margin-bottom: 0.9rem; }
.page-hero .post-meta { opacity: 0.85; font-size: 0.92rem; margin-top: 0.7rem; }

.article-body {
  max-width: 46rem;
  margin: 0 auto;
  font-size: 1.02rem;
}
.article-body > p { margin-bottom: 1.2rem; color: var(--gray-800); }
.article-body h2 {
  color: var(--navy);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  margin: 2.2rem 0 0.8rem;
}
.article-body h3 { color: var(--navy); font-size: 1.15rem; margin: 1.8rem 0 0.6rem; }
.article-body ul, .article-body ol { margin: 0 0 1.2rem 1.4rem; }
.article-body li { margin-bottom: 0.45rem; }
.article-body strong { color: var(--navy); }

.tip-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem;
  margin: 1.6rem 0;
  font-size: 0.97rem;
}
.tip-box strong { color: #8a6d1c; }

.warn-box {
  background: #fdf2f2;
  border-left: 4px solid #c0392b;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem;
  margin: 1.6rem 0;
  font-size: 0.97rem;
}
.warn-box strong { color: #c0392b; }

.article-footer {
  max-width: 46rem;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.back-link { font-weight: 600; font-size: 0.95rem; }

/* Social share buttons */
.share-bar {
  max-width: 46rem;
  margin: 2.5rem auto 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.share-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  margin-right: 0.3rem;
}
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  text-decoration: none !important;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.share-btn svg { width: 18px; height: 18px; }
.share-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #121212;
  transform: translateY(-2px);
}
.share-copied {
  font-size: 0.85rem;
  color: var(--teal-dark);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.share-copied.visible { opacity: 1; }

/* ---------- Social link hub (link-in-bio landing page) ---------- */
.linkhub {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(10, 10, 10, 0.96) 0%, rgba(46, 37, 10, 0.93) 100%),
    radial-gradient(circle at 50% 0%, #d4af37 0%, #121212 65%);
  display: flex;
  justify-content: center;
  padding: 3rem 0 2.5rem;
}
.linkhub-card {
  width: min(430px, 90%);
  text-align: center;
  color: var(--white);
}
.linkhub-card .logo-mark { width: 88px; height: 88px; margin: 0 auto 1rem; }
.linkhub-card h1 {
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.linkhub-card .hub-area {
  color: #f0d77b;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.9rem;
}
.linkhub-card .hub-tagline {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.8rem;
}
.hub-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.92;
  margin-bottom: 2rem;
}
.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.9rem;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.link-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.link-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); }
.link-btn.gold { background: var(--teal); color: #121212; }
.link-btn.gold:hover { background: #e8c252; }
.link-btn.ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.link-btn.ghost:hover { background: rgba(255, 255, 255, 0.15); }
.hub-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.6rem 0 1.8rem;
}
.hub-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.hub-social a:hover { background: var(--teal); border-color: var(--teal); color: #121212; }
.hub-social svg { width: 20px; height: 20px; }
.hub-foot { font-size: 0.78rem; opacity: 0.6; }
.hub-foot a { color: #f0d77b; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-art { display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .about-split, .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .grid-3, .grid-2, .form-row { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .tagline { display: none; }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--shadow-md);
    display: none;
    padding: 0.5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.55rem 1.5rem; }
  .nav-links a { display: block; border-bottom: none; }
  .nav-cta { margin: 0.5rem 1.5rem 0; text-align: center; }
}
