/* ============================================================
   Smartland Management — Stylesheet
   Matches smartlandapartments.com visual language exactly:
   - Light/white backgrounds throughout (no dark content sections)
   - Pink #eb146e accent only
   - Blue #3C90BE secondary
   - Dark text #282828
   - Footer: #282828
   - Top bar: white bg, pink links
   - Header: white, clean nav
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: #282828; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
.text-muted { color: #888; }
.text-pink  { color: #eb146e; }
.text-blue  { color: #3C90BE; }
.text-white { color: #fff; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section    { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center  { display: flex; align-items: center; justify-content: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.btn:hover { box-shadow: 0 4px 16px rgba(0,0,0,.15); }

.btn-primary   { background: #eb146e; color: #fff; border-color: #eb146e; }
.btn-primary:hover { background: #c90f5c; border-color: #c90f5c; }

.btn-secondary { background: #3C90BE; color: #fff; border-color: #3C90BE; }
.btn-secondary:hover { background: #2f7aa3; border-color: #2f7aa3; }

.btn-outline-pink { background: transparent; color: #eb146e; border-color: #eb146e; }
.btn-outline-pink:hover { background: #eb146e; color: #fff; }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-outline-dark { background: transparent; color: #282828; border-color: #282828; }
.btn-outline-dark:hover { background: #282828; color: #fff; }

.btn-lg { padding: .9rem 2rem; font-size: .95rem; }
.btn-sm { padding: .45rem 1rem; font-size: .8rem; }

/* ---- TOP BAR (matches consumer site) ---- */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: .45rem 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  font-size: .82rem;
  font-weight: 600;
}
.top-bar-inner a { color: #eb146e; transition: opacity .2s; }
.top-bar-inner a:hover { opacity: .75; }
.top-bar-divider { color: #ddd; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}

/* When header is sticky, top-bar scrolls away; header remains */
.site-header-outer {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

.nav-logo img  { height: 38px; width: auto; }
.nav-logo span { font-size: 1.35rem; font-weight: 900; color: #282828; letter-spacing: -.5px; }

.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; }
.nav-links a {
  color: #282828;
  font-size: .88rem;
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: 3px;
  transition: color .18s;
}
.nav-links a:hover,
.nav-links a.active { color: #eb146e; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: .3rem; }
.dropdown-toggle svg { width: 13px; height: 13px; transition: transform .2s; }
.nav-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + .6rem);
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  border-top: 3px solid #eb146e;
  border-radius: 4px;
  min-width: 270px;
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: .6rem 1.25rem;
  color: #282828;
  font-size: .87rem;
  font-weight: 500;
  transition: color .15s, background .15s;
}
.dropdown-menu a:hover { color: #eb146e; background: #fdf0f5; }

.nav-cta { margin-left: .5rem; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #282828; border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-top: 2px solid #eee;
  padding: .75rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav ul li { border-bottom: 1px solid #f5f5f5; }
.mobile-nav ul li:last-child { border: none; }
.mobile-nav ul a { display: block; padding: .7rem 0; color: #282828; font-size: .92rem; font-weight: 500; }
.mobile-nav ul a:hover { color: #eb146e; }
.mobile-nav .mobile-cta { margin-top: 1rem; }
.mobile-nav .mobile-cta .btn { width: 100%; justify-content: center; }

/* ---- HERO — Light, matches consumer site aesthetic ---- */
.hero {
  background: #f7f7f7;
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle left pink accent bar — matches consumer site's left-border pattern */
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #eb146e 0%, #3C90BE 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 4rem;
  align-items: start;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
}

.hero h1 { color: #282828; margin-bottom: 1.25rem; }
.hero h1 span { color: #eb146e; }

.hero-lead {
  font-size: 1.05rem;
  color: #4e4e4e;
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid #e0e0e0;
  padding-top: 2rem;
}

.hero-stat-num { font-size: 2rem; font-weight: 800; color: #282828; line-height: 1; }
.hero-stat-num span { color: #eb146e; }
.hero-stat-label { font-size: .78rem; color: #888; margin-top: .3rem; font-weight: 500; }

/* ---- Hero Form Card ---- */
.hero-form-card {
  background: #fff;
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 2px 40px rgba(0,0,0,.1);
  border-top: 4px solid #eb146e;
}
.hero-form-card h3 { font-size: 1.15rem; margin-bottom: .35rem; color: #282828; }
.hero-form-card > p { font-size: .85rem; color: #888; margin-bottom: 1.5rem; }

/* ---- Forms ---- */
.form-group { margin-bottom: .875rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: #282828; margin-bottom: .3rem; }
.form-group label .req { color: #eb146e; margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .6rem .85rem;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: .88rem;
  color: #282828;
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #eb146e;
  box-shadow: 0 0 0 3px rgba(235,20,110,.09);
}
.form-group textarea { resize: vertical; min-height: 85px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-submit { width: 100%; justify-content: center; margin-top: 1.1rem; }
.form-disclaimer { font-size: .73rem; color: #aaa; text-align: center; margin-top: .6rem; }
.form-msg { padding: .875rem 1rem; border-radius: 4px; font-size: .88rem; font-weight: 500; margin-top: 1rem; display: none; }
.form-msg.success { background: #f0faf9; color: #0d6b68; border: 1px solid #b2dcdb; display: block; }
.form-msg.error   { background: #fef0f5; color: #b91c5c; border: 1px solid #f5a7c8; display: block; }

/* ---- Section Header ---- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: #888; font-size: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #eb146e;
  margin-bottom: .75rem;
}

/* ---- Problems ---- */
.problems { background: #f7f7f7; }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.problem-card {
  background: #fff;
  border-radius: 4px;
  padding: 1.75rem;
  border-left: 4px solid #eb146e;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.problem-card h4 { margin-bottom: .5rem; font-size: 1rem; color: #282828; }
.problem-card p { font-size: .9rem; color: #4e4e4e; margin: 0; }

/* ---- Service Cards ---- */
.service-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s;
  border-top: 3px solid #eb146e;
}
.service-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.service-icon {
  width: 48px; height: 48px;
  background: #fdf0f5;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.service-icon svg { width: 24px; height: 24px; color: #eb146e; }
.service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; color: #282828; }
.service-card > p { color: #4e4e4e; font-size: .9rem; flex: 1; margin-bottom: 1.5rem; }
.service-features { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .45rem; }
.service-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .86rem; color: #4e4e4e; }
.service-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #eb146e; margin-top: .5em; flex-shrink: 0; }

/* ---- Why Smartland — now light, not dark ---- */
.why { background: #f7f7f7; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-item {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 3px solid #eb146e;
  transition: box-shadow .2s;
}
.why-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.why-item-icon {
  width: 52px; height: 52px;
  background: #fdf0f5;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.why-item-icon svg { width: 24px; height: 24px; color: #eb146e; }
.why-item h4 { color: #282828; margin-bottom: .4rem; font-size: .98rem; }
.why-item p { font-size: .86rem; color: #4e4e4e; margin: 0; }

/* ---- Stats Bar — stays pink ---- */
.stats-bar { background: #eb146e; color: #fff; padding: 2.5rem 0; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-num { font-size: 2.25rem; font-weight: 800; line-height: 1; color: #fff; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.85); margin-top: .35rem; font-weight: 500; }

/* ---- Steps / Intake ---- */
.intake { background: #fff; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 33px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: #eb146e;
  opacity: .15;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f7f7f7;
  border-radius: 4px;
  border-top: 3px solid #3C90BE;
}
.step-num {
  width: 52px; height: 52px;
  background: #eb146e; color: #fff;
  border-radius: 50%;
  font-size: 1.15rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
}
.step h4 { margin-bottom: .4rem; color: #282828; }
.step p { font-size: .87rem; color: #4e4e4e; margin: 0; }

/* ---- Values ---- */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.value-card { background: #f7f7f7; border-radius: 4px; padding: 1.5rem; border-top: 3px solid #eb146e; text-align: center; }
.value-card h4 { color: #282828; margin-bottom: .4rem; }
.value-card p { font-size: .87rem; color: #4e4e4e; margin: 0; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-item:first-child { border-top: 1px solid #eee; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; cursor: pointer; font-weight: 600; color: #282828;
  font-size: .95rem; gap: 1rem; background: none; border: none;
  width: 100%; text-align: left; font-family: inherit;
}
.faq-question svg { flex-shrink: 0; width: 18px; height: 18px; color: #eb146e; transition: transform .22s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding-bottom: 1.1rem; color: #4e4e4e; font-size: .92rem; line-height: 1.7; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: #282828;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #eb146e, #3C90BE);
}
.cta-banner h2 { color: #fff; margin-bottom: .875rem; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto 2rem; font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Contact Info Card ---- */
.contact-info-card { background: #f7f7f7; border-radius: 4px; padding: 2rem; border-top: 3px solid #eb146e; }
.contact-info-card h3 { color: #282828; margin-bottom: 1.5rem; }
.contact-method { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #eee; }
.contact-method:last-of-type { border-bottom: none; }
.contact-method-icon { width: 38px; height: 38px; background: #fdf0f5; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method-icon svg { width: 17px; height: 17px; color: #eb146e; }
.contact-method-label { font-size: .75rem; color: #888; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; margin-bottom: .2rem; }
.contact-method-value { font-weight: 600; color: #282828; font-size: .95rem; }
.contact-method-value a { color: #282828; transition: color .18s; }
.contact-method-value a:hover { color: #eb146e; }

/* ---- Page Hero (inner pages) — light ---- */
.page-hero {
  background: #f7f7f7;
  padding: 4rem 0 3rem;
  position: relative;
  border-bottom: 1px solid #eee;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #eb146e, #3C90BE);
}
.page-hero .eyebrow { color: #eb146e; }
.page-hero h1 { color: #282828; margin-bottom: .75rem; font-size: clamp(1.75rem, 4vw, 2.6rem); }
.page-hero .hero-lead { color: #4e4e4e; max-width: 600px; font-size: 1rem; line-height: 1.7; }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: #aaa; margin-bottom: 1.25rem; }
.breadcrumb a { color: #aaa; transition: color .18s; }
.breadcrumb a:hover { color: #eb146e; }
.breadcrumb span { color: #282828; font-weight: 500; }
.breadcrumb svg { width: 11px; height: 11px; }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-block {
  background: #f7f7f7;
  border-radius: 4px;
  padding: 2.5rem;
  border-top: 4px solid #eb146e;
}
.proof-list { display: flex; flex-direction: column; gap: .875rem; }
.proof-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; background: #f7f7f7; border-radius: 4px; border-left: 3px solid #eb146e; }
.proof-item-icon { width: 34px; height: 34px; background: #fdf0f5; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.proof-item-icon svg { width: 17px; height: 17px; color: #eb146e; }
.proof-item-text { font-size: .9rem; color: #282828; font-weight: 600; }
.proof-item-text span { display: block; font-size: .78rem; color: #888; font-weight: 400; margin-top: .1rem; }

/* ---- LLM ---- */
.llm-content { max-width: 760px; }
.llm-content h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: .5rem; border-bottom: 2px solid #eb146e; padding-bottom: .4rem; }
.llm-content p, .llm-content li { font-size: .93rem; color: #4e4e4e; }
.llm-content ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1em; }
.llm-content ul li { margin-bottom: .3rem; }

/* ---- Service Detail ---- */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.service-body h2 { font-size: 1.4rem; margin: 2.25rem 0 .75rem; color: #282828; }
.service-body h2:first-child { margin-top: 0; }
.service-body p { color: #4e4e4e; line-height: 1.75; margin-bottom: 1em; }
.service-body ul { list-style: none; margin-bottom: 1.25em; }
.service-body ul li { display: flex; align-items: flex-start; gap: .7rem; font-size: .92rem; color: #282828; padding: .35rem 0; }
.service-body ul li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #eb146e; margin-top: .45em; flex-shrink: 0; }
.service-sidebar { position: sticky; top: 90px; }
.sidebar-card { background: #f7f7f7; border-radius: 4px; padding: 1.75rem; margin-bottom: 1.25rem; border-top: 3px solid #eb146e; }
.sidebar-card.dark { background: #282828; border-top-color: #eb146e; }
.sidebar-card.dark h4 { color: #fff; }
.sidebar-card.dark p { color: rgba(255,255,255,.65); }
.sidebar-card h4 { font-size: .98rem; margin-bottom: .75rem; color: #282828; }
.sidebar-card p { font-size: .86rem; color: #4e4e4e; margin-bottom: .875rem; }
.sidebar-contact { display: flex; flex-direction: column; gap: .6rem; }
.sidebar-contact a { display: flex; align-items: center; gap: .6rem; font-size: .86rem; font-weight: 600; color: #fff; transition: color .18s; }
.sidebar-contact a:hover { color: #ff6aaa; }
.sidebar-contact a svg { width: 14px; height: 14px; }

/* ---- Footer ---- */
.site-footer { background: #282828; color: rgba(255,255,255,.6); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.5); margin-top: .875rem; max-width: 280px; margin-bottom: 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.footer-logo img { height: 34px; }
.footer-logo span { font-size: 1.2rem; font-weight: 900; color: #fff; }
.footer-contact a { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.55); font-size: .84rem; margin-bottom: .5rem; transition: color .18s; }
.footer-contact a:hover { color: #eb146e; }
.footer-contact a svg { width: 13px; height: 13px; flex-shrink: 0; }
.footer-col h5 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: .875rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color .18s; }
.footer-links a:hover { color: #eb146e; }
.footer-bottom { padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color .18s; }
.footer-bottom-links a:hover { color: #eb146e; }

/* ---- Utilities ---- */
.bg-light { background: #f7f7f7; }
.bg-white { background: #fff; }
.bg-dark   { background: #282828; }
.bg-pink   { background: #eb146e; }
.divider { height: 1px; background: #eee; margin: 2rem 0; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-0 { margin-bottom: 0; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 560px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr; }
}
