/* ==========================================================================
   Data Recovery Template — Shared Theme
   Modern dark slate + electric green accent
   ========================================================================== */

:root {
  /* Palette */
  --bg:           #e2e8f0;
  --bg-elev:      #ffffff;
  --bg-card:      #ffffff;
  --line:         rgba(15, 30, 50, 0.10);
  --line-strong:  rgba(15, 30, 50, 0.18);
  --text:         #0f1e32;
  --text-muted:   #5b6b7d;
  --text-dim:     #8896a4;
  --brand:        #10b981;   /* emerald */
  --brand-2:      #047857;
  --brand-dark:   #065f46;
  --warn:         #d97706;
  --danger:       #dc2626;

  /* Type */
  --sans:     'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display:  'Space Grotesk', 'Inter', sans-serif;
  --mono:     'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --maxw:  1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(15,30,50,0.06);
  --shadow:    0 4px 16px rgba(15,30,50,0.08);
  --shadow-lg: 0 16px 40px rgba(15,30,50,0.12);
  --ease:  cubic-bezier(0.2, 0.7, 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;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a    { color: var(--brand-2); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--brand); }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em 0;
  color: var(--text);
}
h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; }
h3 { font-size: clamp(20px, 2.2vw, 24px); line-height: 1.25; }
h4 { font-size: 16px; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }
p  { margin: 0 0 1em 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

/* ─── Layout helpers ───────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.section { padding: 96px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--bg-elev); }

/* ─── Background texture ───────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(16,185,129,0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 100%, rgba(4,120,87,0.07), transparent 60%);
  z-index: -2;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(15,30,50,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,30,50,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: -1; pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}

/* ─── Top band ─────────────────────────────────────────────────── */
.topband {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-muted);
}
.topband__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  gap: 16px;
}
.topband__left, .topband__right { display: flex; gap: 12px; align-items: center; }
.topband a { color: var(--text); display: inline-flex; align-items: center; gap: 6px; }
.topband a:hover { color: var(--brand-2); }
.topband .pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,0.12); color: var(--brand-dark);
  padding: 3px 10px; border-radius: 999px; font-weight: 600; font-size: 12px;
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.dot { color: var(--text-dim); }

/* ─── Header / nav ─────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 4px rgba(15,30,50,0.04);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-family: var(--display); font-weight: 700; font-size: 18px;
}
.logo:hover { color: var(--text); text-decoration: none; }
.logo__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
}
.logo__sub { display: block; font-size: 11px; color: var(--text-muted); font-weight: 400; font-family: var(--sans); letter-spacing: 0.05em; text-transform: uppercase; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  color: var(--text); font-weight: 500; font-size: 15px;
  position: relative; padding: 6px 0;
}
.nav a:hover { color: var(--brand-dark); text-decoration: none; }
.nav a.is-active { color: var(--brand-dark); }
.nav a.is-active::after,
.nav a:hover::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--brand);
}
.header__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; border: 0;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.header__cta:hover { background: var(--brand-2); transform: translateY(-1px); text-decoration: none; color: #fff; }

@media (max-width: 900px) {
  .nav { display: none; }
  .header__cta { display: none; }
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px;
  border: 0; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn--primary {
  background: var(--brand); color: #fff;
}
.btn--primary:hover {
  background: var(--brand-2); transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16,185,129,0.25);
  color: #fff; text-decoration: none;
}
.btn--ghost {
  background: transparent; color: var(--text); border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-2px); text-decoration: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero { padding: 80px 0 56px; position: relative; }
.hero__inner { max-width: 760px; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(16,185,129,0.1); color: var(--brand-2);
  border: 1px solid rgba(16,185,129,0.3);
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede { font-size: 19px; color: var(--text-muted); margin-bottom: 36px; max-width: 600px; }
.hero .btn-row { margin-bottom: 60px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 24px; padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat strong {
  display: block; font-family: var(--display); font-size: 32px;
  color: var(--brand-2); margin-bottom: 4px;
}
.stat span { font-size: 13px; color: var(--text-muted); }

@media (max-width: 700px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Sections ─────────────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 56px; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-head .label {
  display: inline-block; font-size: 13px; font-weight: 600;
  color: var(--brand-2); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section-head p { font-size: 17px; color: var(--text-muted); }

/* ─── Cards grid ───────────────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(16,185,129,0.4);
  box-shadow: var(--shadow-lg);
}
.card__icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(16,185,129,0.12); color: var(--brand-2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 15px; margin-bottom: 0; }

/* ─── Pricing tables ───────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.tier {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  display: flex; flex-direction: column;
}
.tier--featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, rgba(16,185,129,0.05) 0%, var(--bg-card) 40%);
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(16,185,129,0.15);
}
.tier__badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--brand); color: #052e1f; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em;
}
.tier h3 { margin-bottom: 8px; }
.tier .price {
  font-family: var(--display); font-size: 40px; font-weight: 700;
  color: var(--brand-2); margin: 16px 0 4px;
}
.tier .price small { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.tier .desc { color: var(--text-muted); margin-bottom: 24px; font-size: 14px; }
.tier ul { margin-bottom: 28px; }
.tier li {
  padding: 10px 0; font-size: 14px; color: var(--text);
  border-bottom: 1px dashed var(--line);
  display: flex; align-items: start; gap: 10px;
}
.tier li:last-child { border-bottom: 0; }
.tier li::before {
  content: '\2713'; color: var(--brand); font-weight: 700;
  flex-shrink: 0;
}

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__q {
  width: 100%; text-align: left; padding: 18px 22px;
  background: transparent; border: 0; color: var(--text);
  font-weight: 600; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__q::after { content: '+'; font-size: 22px; color: var(--brand-dark); transition: transform 0.2s var(--ease); }
.faq__item.is-open .faq__q::after { content: '−'; }
.faq__a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease);
  padding: 0 22px;
  color: var(--text-muted); font-size: 14px;
}
.faq__item.is-open .faq__a { max-height: 320px; padding: 0 22px 20px; }

/* ─── CTA strip ────────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  color: #052e1f;
  box-shadow: 0 16px 40px rgba(16,185,129,0.25);
}
.cta-strip h2 { color: #052e1f; margin-bottom: 14px; }
.cta-strip p { font-size: 17px; margin-bottom: 32px; opacity: 0.8; }
.cta-strip .btn--ghost { color: #052e1f; border-color: rgba(5,46,31,0.3); }
.cta-strip .btn--ghost:hover { background: rgba(5,46,31,0.1); color: #052e1f; }
.cta-strip .btn--primary { background: #052e1f; color: var(--brand-2); }
.cta-strip .btn--primary:hover { background: #04291a; color: #fff; }

/* ─── Contact specifics ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 16px;
  display: flex; gap: 16px; align-items: start;
}
.info-block__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(16,185,129,0.12); color: var(--brand-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-block h4 { margin-bottom: 6px; font-size: 17px; }
.info-block p, .info-block a { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin: 0; }
.info-block a:hover { color: var(--brand-2); }

.form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-muted); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text); font: inherit;
  transition: border-color 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form .btn { width: 100%; justify-content: center; }

/* ─── Map placeholder ──────────────────────────────────────────── */
.map {
  border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-card); aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─── About specifics ──────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.trust-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.trust-list li {
  display: flex; gap: 10px; align-items: center;
  font-size: 14px; color: var(--text);
}
.trust-list li::before {
  content: '\2713'; color: var(--brand); font-weight: 700; flex-shrink: 0;
}

.image-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); position: relative; overflow: hidden;
}
.image-block::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, transparent 60%);
}
.image-block .ph-label { font-size: 13px; opacity: 0.5; }

/* ─── Hours table ──────────────────────────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.hours-table th { color: var(--text-muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.hours-table td { color: var(--text); font-size: 14px; }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table .today { color: var(--brand-2); font-weight: 600; }
.hours-table .closed { color: var(--text-dim); }

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h5 {
  color: var(--text); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 18px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-muted); font-size: 14px; }
.footer ul a:hover { color: var(--brand-2); }
.footer__about p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.footer__about .logo { margin-bottom: 16px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line);
  color: var(--text-dim); font-size: 13px;
}
@media (max-width: 600px) { .footer__bottom { flex-direction: column; gap: 12px; } }

/* ─── Done-by credit (subtle bottom-left badge) ─────────────────── */
.done-by {
  position: fixed;
  bottom: 14px;
  left: 14px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  background: rgba(15, 30, 50, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(15, 30, 50, 0.18);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.done-by:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.done-by__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0;
}
.done-by__label { white-space: nowrap; }
@media (max-width: 480px) {
  .done-by { font-size: 11px; padding: 6px 12px 6px 7px; bottom: 10px; left: 10px; }
  .done-by__mark { width: 20px; height: 20px; font-size: 10px; }
}

/* ─── Utility ──────────────────────────────────────────────────── */
.text-grad {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.text-center { text-align: center; }

/* ─── Animations on scroll ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
