/* ================================================
   Sharma CPA & Advisors — Concept site by AI Gaur
   ================================================ */

:root {
  /* palette */
  --teal-900: #134E4A;
  --teal-500: #14B8A6;
  --teal-400: #2DD4BF;
  --cream:    #FAF7F2;
  --white:    #FFFFFF;
  --ink:      #0F172A;
  --ink-2:    #1E293B;
  --grey-200: #E5E7EB;
  --grey-300: #D1D5DB;
  --grey-400: #9CA3AF;
  --grey-500: #6B7280;
  --grey-700: #374151;

  /* type */
  --serif: "Merriweather", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* layout */
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.05);
  --shadow:    0 4px 16px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --shadow-lg: 0 24px 48px -12px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.05);

  --t: .25s cubic-bezier(.4,0,.2,1);
}

/* ===== reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-900); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--teal-500); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); margin: 0 0 .5em; line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; }

/* ===== layout ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--ink); color: #E2E8F0; }
.section--dark h2 { color: var(--white); }

.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__head--light .section__title { color: var(--white); }
.section__title { margin-bottom: 14px; letter-spacing: -0.01em; }
.section__sub { color: var(--grey-500); font-size: 1.05rem; }
.section--dark .section__sub { color: #94A3B8; }

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal-500);
  background: rgba(20,184,166,.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow--light { background: rgba(20,184,166,.15); color: var(--teal-400); }

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ===== buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--sm { padding: 10px 16px; font-size: .875rem; }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--teal-900); color: var(--white); }
.btn--primary:hover { background: var(--teal-500); transform: translateY(-1px); box-shadow: var(--shadow); color: var(--white); }
.btn--outline { color: var(--teal-900); border-color: var(--teal-900); }
.btn--outline:hover { background: var(--teal-900); color: var(--white); }
.btn--ghost { color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.1); color: var(--white); }

.link {
  font-weight: 600;
  font-size: .95rem;
  color: var(--teal-500);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--t);
}
.link:hover { gap: 8px; color: var(--teal-900); }

/* ===== nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.nav__logo:hover { color: var(--ink); }
.nav__logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--teal-900);
  color: var(--white);
  border-radius: 9px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.05rem;
}
.nav__logo-text em { color: var(--teal-500); font-style: normal; font-weight: 700; }
.nav__logo--light { color: var(--white); }
.nav__logo--light:hover { color: var(--white); }

.nav__links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--grey-700);
  position: relative;
}
.nav__links a:hover { color: var(--teal-900); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink);
}
.nav__phone:hover { color: var(--teal-500); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

/* mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--white);
  z-index: 200;
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav nav a {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav nav a:hover { color: var(--teal-400); }
.mobile-nav__cta { display: flex; flex-direction: column; gap: 12px; }

/* ===== hero ===== */
.hero {
  background: var(--cream);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,184,166,.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__title {
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero__title-accent {
  color: var(--teal-500);
  display: inline-block;
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--grey-700);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(15,23,42,.08);
}
.stat__num {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: -.02em;
  line-height: 1;
}
.stat__num span {
  font-size: 1rem;
  color: var(--teal-500);
  margin-left: 2px;
}
.stat__label {
  font-size: .78rem;
  color: var(--grey-500);
  margin-top: 6px;
  font-weight: 500;
}

/* hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 560px;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  font-family: var(--sans);
}
.hero__card--top {
  top: 32px;
  left: -32px;
  width: 220px;
}
.hero__card-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-500);
  font-weight: 600;
}
.hero__card-num {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin: 6px 0 10px;
}
.hero__card-bar {
  height: 6px;
  background: var(--grey-200);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.hero__card-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-900));
  border-radius: 999px;
}
.hero__card-foot {
  font-size: .78rem;
  color: var(--grey-500);
}
.hero__card-foot .up {
  color: var(--teal-500);
  font-weight: 600;
  font-family: var(--mono);
}
.hero__card--bot {
  bottom: 32px;
  right: -32px;
  width: 260px;
  padding: 14px 18px;
}
.hero__card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--grey-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-200);
}
.hero__card-row:last-child { border-bottom: 0; }
.hero__card-time {
  margin-left: auto;
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--grey-400);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.dot--green { background: #10B981; }
.dot--teal  { background: var(--teal-500); }
.dot--grey  { background: var(--grey-300); }

/* ===== trust strip ===== */
.trust {
  background: var(--white);
  padding: 36px 0;
  border-bottom: 1px solid var(--grey-200);
}
.trust__title {
  text-align: center;
  font-size: .85rem;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
  font-weight: 500;
}
.trust__title strong { color: var(--ink); font-weight: 700; }
.trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}
.trust__row span {
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--grey-700);
  font-weight: 500;
}

/* ===== card / service ===== */
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--teal-500);
}
.service__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(20,184,166,.1);
  color: var(--teal-900);
  border-radius: 10px;
  margin-bottom: 20px;
}
.service h3 { margin-bottom: 8px; }
.service p {
  color: var(--grey-500);
  font-size: .95rem;
  margin-bottom: 16px;
}

/* ===== pillars ===== */
.pillars { gap: 32px; }
.pillar {
  text-align: left;
  padding: 8px;
}
.pillar__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--teal-900);
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.pillar h3 { margin-bottom: 10px; }
.pillar p { color: var(--grey-700); font-size: .98rem; }

/* ===== industries ===== */
.industries { gap: 16px; }
.industry {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--t);
}
.industry:hover {
  border-color: var(--teal-500);
  box-shadow: var(--shadow);
}
.industry__icon {
  width: 42px;
  height: 42px;
  background: rgba(19,78,74,.06);
  color: var(--teal-900);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.industry h4 { margin: 0 0 4px; }
.industry p { font-size: .88rem; color: var(--grey-500); margin: 0; }

/* ===== ROI calculator ===== */
.calc {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-200);
}
.calc .section__title { text-align: left; }
.calc .section__sub { text-align: left; margin-bottom: 24px; }
.calc__copy .eyebrow { margin-bottom: 16px; }
.calc__notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .88rem;
  color: var(--grey-500);
  margin-top: 8px;
}
.calc__notes li {
  position: relative;
  padding-left: 20px;
}
.calc__notes li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 6px; height: 6px;
  background: var(--teal-500);
  border-radius: 50%;
}

.calc__widget {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--grey-200);
}
.calc__field { margin-bottom: 24px; }
.calc__field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.calc__input {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  padding: 0 16px;
  transition: border-color var(--t);
  margin-bottom: 12px;
}
.calc__input:focus-within { border-color: var(--teal-500); }
.calc__input input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 4px;
  width: 100%;
  outline: none;
}
.calc__input input::-webkit-outer-spin-button,
.calc__input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc__input input[type=number] { -moz-appearance: textfield; }
.calc__prefix, .calc__suffix {
  font-family: var(--mono);
  font-size: 1.1rem;
  color: var(--grey-400);
  font-weight: 600;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--grey-200);
  border-radius: 999px;
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--teal-500);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(15,23,42,.2);
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--teal-500);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(15,23,42,.2);
  cursor: pointer;
}

.calc__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.calc__result {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  padding: 16px;
}
.calc__result-label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--grey-500);
  font-weight: 600;
  margin-bottom: 6px;
}
.calc__result-num {
  display: block;
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.calc__result-foot {
  display: block;
  font-size: .72rem;
  color: var(--grey-400);
  margin-top: 4px;
  font-family: var(--mono);
}
.calc__result--total {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--teal-900), #0F4C47);
  border-color: var(--teal-900);
}
.calc__result--total .calc__result-label,
.calc__result--total .calc__result-foot { color: rgba(255,255,255,.7); }
.calc__result--total .calc__result-num { color: var(--white); font-size: 2rem; }

/* ===== pricing ===== */
.pricing { align-items: stretch; }
.price {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--t);
}
.price:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.price--featured {
  border-color: var(--teal-500);
  border-width: 2px;
  box-shadow: 0 24px 48px -12px rgba(20,184,166,.18);
}
.price__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-500);
  color: var(--white);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 999px;
}
.price__head { margin-bottom: 24px; }
.price__head h3 { margin-bottom: 4px; }
.price__head p { font-size: .88rem; color: var(--grey-500); margin: 0; }
.price__amt {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-200);
  font-family: var(--mono);
}
.price__cur {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--grey-500);
  margin-top: 12px;
}
.price__num {
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
}
.price__per {
  font-size: 1rem;
  color: var(--grey-500);
  margin-top: 32px;
  margin-left: 4px;
}
.price__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.price__list li {
  position: relative;
  padding-left: 28px;
  font-size: .92rem;
  color: var(--grey-700);
}
.price__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  background: rgba(20,184,166,.15);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2314B8A6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
.pricing__foot {
  text-align: center;
  margin-top: 32px;
  color: var(--grey-500);
}

/* ===== process ===== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  counter-reset: step;
}
.process::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-900));
  opacity: .3;
  z-index: 0;
}
.process__step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.process__num {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  background: var(--teal-900);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.1rem;
  margin: -56px 0 20px;
  border: 4px solid var(--cream);
}
.process__step h4 { margin-bottom: 8px; }
.process__step p {
  font-size: .9rem;
  color: var(--grey-500);
  margin-bottom: 14px;
}
.process__time {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  color: var(--teal-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(20,184,166,.08);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}

/* ===== team ===== */
.team { gap: 28px; margin-bottom: 64px; }
.member {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: var(--t);
}
.member:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.member img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.member__body { padding: 24px 28px 28px; }
.member__body h3 { margin-bottom: 4px; }
.member__role {
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--teal-500);
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.member__bio {
  font-size: .92rem;
  color: var(--grey-500);
  margin-bottom: 16px;
}
.member__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.member__creds li {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--teal-900);
  background: rgba(19,78,74,.08);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.press {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--grey-200);
}
.press__title {
  display: block;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-500);
  margin-bottom: 20px;
  font-weight: 500;
}
.press__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.press__badge {
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--ink);
  border: 1px solid var(--grey-300);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
  background: var(--white);
}

/* ===== quotes ===== */
.quotes { gap: 24px; }
.quote {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0;
}
.quote__stars {
  color: var(--teal-400);
  font-size: 1.05rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.quote blockquote {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: #E2E8F0;
}
.quote blockquote em { color: var(--teal-400); font-style: italic; }
.quote figcaption strong {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.quote figcaption span {
  font-size: .85rem;
  color: #94A3B8;
}

/* ===== blog ===== */
.blog { gap: 24px; }
.post {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.post:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--teal-500);
}
.post__cover {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
}
.post__body { padding: 24px 28px 28px; }
.post__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal-500);
  background: rgba(20,184,166,.08);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.post h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 10px;
}
.post p {
  font-size: .92rem;
  color: var(--grey-500);
  margin-bottom: 16px;
}

/* ===== FAQ ===== */
.faq__wrap { max-width: 820px; }
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--t);
}
.faq__item[open] {
  border-color: var(--teal-500);
  box-shadow: var(--shadow);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--teal-500);
  border-radius: 1px;
  transition: transform var(--t);
}
.faq__icon::before {
  top: 9px; left: 0;
  width: 20px; height: 2px;
}
.faq__icon::after {
  top: 0; left: 9px;
  width: 2px; height: 20px;
}
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__body {
  padding: 0 24px 22px;
  color: var(--grey-700);
  font-size: .96rem;
}
.faq__body p { margin: 0; }

/* ===== contact ===== */
.contact {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}
.contact__form {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form__row { margin-bottom: 18px; }
.form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form__field { margin-bottom: 18px; }
.form__field:last-of-type { margin-bottom: 24px; }
.form__row .form__field { margin-bottom: 0; }
.form__field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 8px;
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  font-family: var(--sans);
}
.form__field textarea { resize: vertical; min-height: 100px; }
.form__field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20,184,166,.12);
}
.form__field input.is-error,
.form__field select.is-error,
.form__field textarea.is-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239,68,68,.1);
}
.form__msg {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 500;
  display: none;
}
.form__msg.is-success {
  display: block;
  background: rgba(20,184,166,.1);
  color: var(--teal-900);
  border: 1px solid rgba(20,184,166,.3);
}
.form__msg.is-error {
  display: block;
  background: rgba(239,68,68,.08);
  color: #DC2626;
  border: 1px solid rgba(239,68,68,.2);
}

.contact__side { display: flex; flex-direction: column; gap: 16px; }
.contact__card {
  background: var(--cream);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px;
}
.contact__card h3 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-500);
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 12px;
}
.contact__card p { margin: 0 0 6px; color: var(--ink); font-weight: 500; }
.contact__card address { font-style: normal; color: var(--ink); font-weight: 500; line-height: 1.6; }
.hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  font-size: .92rem;
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 1px dashed var(--grey-300);
}
.hours li:last-child { border-bottom: 0; }
.hours li span:last-child { font-family: var(--mono); font-size: .85rem; color: var(--grey-700); }
.contact__note {
  margin-top: 12px !important;
  font-size: .82rem !important;
  color: var(--grey-500) !important;
  font-weight: 400 !important;
}

/* ===== footer ===== */
.footer {
  background: var(--ink);
  color: #94A3B8;
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__col h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer__col p { font-size: .92rem; line-height: 1.6; margin-bottom: 12px; }
.footer__small { font-family: var(--mono); font-size: .78rem; color: #64748B; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li { font-size: .92rem; }
.footer__col a { color: #94A3B8; }
.footer__col a:hover { color: var(--teal-400); }
.footer__col .nav__logo { color: var(--white); margin-bottom: 16px; }
.footer__col .nav__logo:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .82rem;
  color: #64748B;
}
.footer__bottom-inner a { color: var(--teal-400); }
.footer__bottom-inner a:hover { color: var(--teal-500); }
.footer__disclaimer {
  font-size: .74rem;
  color: #475569;
  font-style: italic;
}

/* ===== responsive ===== */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { max-width: 520px; margin: 0 auto; aspect-ratio: 4/3; }
  .hero__card--top { left: 0; }
  .hero__card--bot { right: 0; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .calc { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .contact { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__phone { display: none; }
  .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero { padding: 56px 0 72px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
  .industries { gap: 12px; }
  .calc__results { grid-template-columns: 1fr; }
  .calc__result--total { grid-column: span 1; }
  .form__row--2 { grid-template-columns: 1fr; }
  .contact__form { padding: 28px; }
  .calc { padding: 28px; }
  .calc__widget { padding: 24px; }
  .price { padding: 32px 24px; }
  .hero__card { display: none; }
  .hero__visual { aspect-ratio: 4/3; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer { padding-top: 56px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 48px 0; }
  .hero { padding: 40px 0 56px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero__sub { font-size: 1rem; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .stat__num { font-size: 1.3rem; }
  .nav__inner { height: 64px; }
  .calc { padding: 20px; }
  .calc__widget { padding: 18px; }
  .contact__form { padding: 20px; }
  .price { padding: 28px 20px; }
  .price__num { font-size: 2.6rem; }
  .faq__item summary { padding: 18px 20px; font-size: .96rem; }
  .faq__body { padding: 0 20px 18px; }
  .member__body { padding: 20px; }
  .quote { padding: 24px; }
  .post__body { padding: 20px; }
}
