/* ============================================
   ScrapPro — Premium Design System
   ============================================ */

/* --- Variables --- */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --accent: #22c55e;
  --accent-dark: #16a34a;
  --accent-light: #dcfce7;
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm:
    0 1px 3px rgba(15, 23, 42, 0.07), 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg:
    0 20px 50px rgba(15, 23, 42, 0.12), 0 8px 20px rgba(15, 23, 42, 0.06);
  --shadow-primary: 0 8px 30px rgba(37, 99, 235, 0.25);
  --shadow-accent: 0 8px 30px rgba(34, 197, 94, 0.25);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Clash Display", "DM Sans", system-ui, sans-serif;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Typography --- */
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section-sm {
  padding: 64px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header p {
  font-size: 1.05rem;
  max-width: 540px;
  margin: 12px auto 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 16px;
}
.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  -webkit-border-radius: var(--radius-sm);
  -moz-border-radius: var(--radius-sm);
  -ms-border-radius: var(--radius-sm);
  -o-border-radius: var(--radius-sm);
  -webkit-transition: all var(--transition);
  -moz-transition: all var(--transition);
  -ms-transition: all var(--transition);
  -o-transition: all var(--transition);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  opacity: 0;
  transition: opacity var(--transition);
  -webkit-transition: opacity var(--transition);
  -moz-transition: opacity var(--transition);
  -ms-transition: opacity var(--transition);
  -o-transition: opacity var(--transition);
}
.btn:hover::after {
  opacity: 1;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
  animation: btnPulse 3s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
  animation: btnPulse2 3s ease-in-out infinite;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--text-muted);
}
.btn-ghost:hover {
  color: var(--text);
  background: var(--border-light);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}
.btn-full {
  width: 100%;
}

@keyframes btnPulse {
  0%,
  100% {
    box-shadow: var(--shadow-primary);
  }
  50% {
    box-shadow:
      0 8px 40px rgba(37, 99, 235, 0.45),
      0 0 0 6px rgba(37, 99, 235, 0.08);
  }
}
@keyframes btnPulse2 {
  0%,
  100% {
    box-shadow: var(--shadow-accent);
  }
  50% {
    box-shadow:
      0 8px 40px rgba(34, 197, 94, 0.45),
      0 0 0 6px rgba(34, 197, 94, 0.08);
  }
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--text);
  background: var(--border-light);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-tel {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-hamburger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-hamburger:hover {
  background: var(--border-light);
  color: var(--text);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 80px 0 64px;
  background: linear-gradient(160deg, #f0f6ff 0%, var(--bg) 50%, #f0fff4 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  margin-bottom: 20px;
}
.hero h1 {
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--primary);
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}
.trust-item strong {
  color: var(--text);
}

/* Hero Calculator Card */
.hero-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
}
.hero-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.hero-card h3 {
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group select,
.form-group input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.calc-result {
  background: linear-gradient(135deg, #03071e 0%, #2c4281 100%);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-result-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 550;
}
.calc-result-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.calc-note {
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--text);
  padding: 0;
  overflow: hidden;
}
.stats-inner {
  display: flex;
  overflow: hidden;
}
.stats-track {
  display: flex;
  gap: 0;
  animation: statsScroll 20s linear infinite;
  white-space: nowrap;
}
@keyframes statsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.stat-value {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* =============================================
   PACKAGES
   ============================================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pkg-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.pkg-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  background: linear-gradient(160deg, #f0f6ff 0%, #fff 100%);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: #fff;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-primary);
}
.pkg-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.pkg-card.featured .pkg-icon {
  background: var(--primary);
}
.pkg-name {
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pkg-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.pkg-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.pkg-price sup {
  font-size: 1rem;
  font-weight: 700;
  vertical-align: super;
}
.pkg-price span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pkg-delivery {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pkg-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.pkg-reviews {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.pkg-features {
  margin-bottom: 20px;
  flex: 1;
}
.pkg-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-light);
}
.pkg-features li:last-child {
  border-bottom: none;
}
.pkg-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* =============================================
   PRICING TABLE
   ============================================= */
.pricing-table-section {
  background: #fff;
}
.pricing-table-wrap {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table thead {
  background: var(--text);
}
.pricing-table thead th {
  padding: 16px 24px;
  font-size: 0.82rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-table thead th:last-child {
  text-align: right;
}
.pricing-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-table tbody tr:hover {
  background: var(--bg);
}
.pricing-table .highlight {
  padding: 16px 24px;
  background: #f0f6ff;
  font-weight: 800;
}
.pricing-table tbody tr.highlight {
  background: #f0f6ff;
}
.pricing-table tbody tr.highlight td {
  color: var(--primary);
  font-weight: 700;
}
.pricing-table td {
  padding: 14px 24px;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--primary);
}
.pricing-table td:first-child {
  font-weight: 550;
}
.table-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
  margin-left: 8px;
}
.pricing-cta {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg);
  border-top: 1.5px solid var(--border);
}
.pricing-cta .btn {
  margin-top: 2rem;
}

/* =============================================
   CTA BLOCK
   ============================================= */
.cta-block {
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.cta-block::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.cta-block h2 {
  color: #fff;
  position: relative;
  z-index: 1;
}
.cta-block p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 12px auto 32px;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}
.cta-block-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover {
  background: #f0f6ff;
  transform: translateY(-2px);
}
.btn-ghost-white {
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 28px 24px;
  transition: all var(--transition);
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, #bfdbfe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.testi-type {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: #fff;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item.open {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--text);
  background: transparent;
  text-align: left;
  transition: all var(--transition);
  gap: 12px;
}
.faq-question:hover {
  background: var(--bg);
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 300;
  transition: all var(--transition);
  color: var(--text-muted);
}
.faq-item.open .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============================================
   URGENCY
   ============================================= */
.urgency {
  background: linear-gradient(135deg, #fefce8 0%, #fff7ed 100%);
  border: 2px solid #fde68a;
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: "⚡";
  position: absolute;
  font-size: 120px;
  opacity: 0.06;
  top: -20px;
  right: 20px;
  pointer-events: none;
}
.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f59e0b;
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  animation: urgencyPulse 2s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(245, 158, 11, 0.5);
  }
}
.urgency h2 {
  color: var(--text);
  margin-bottom: 8px;
}
.urgency p {
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 24px;
}
.urgency-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 12px;
}
.urgency-meta strong {
  color: #d97706;
}

/* =============================================
   SERVICE AREAS
   ============================================= */
.areas {
  background: var(--bg);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  cursor: default;
}
.area-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.area-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.area-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text);
  padding: 64px 0 32px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-tel {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col ul a {
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-col ul a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a:hover {
  color: #fff;
}

/* =============================================
   SERVICE PAGE (service.html)
   ============================================= */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  padding: 48px 0 80px;
}
.service-sidebar {
  position: sticky;
  top: 84px;
}
.sidebar-order-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-order-header {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 24px 24px 20px;
  text-align: center;
}
.sidebar-order-header h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.sidebar-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}
.sidebar-price span {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.75;
}
.sidebar-order-body {
  padding: 20px 24px;
}
.sidebar-trust {
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
}
.sidebar-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.sidebar-trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}
.sidebar-guarantee {
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.sidebar-guarantee span {
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 600;
}
.sidebar-packages-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-packages-card h4 {
  padding: 16px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.sidebar-pkg-list {
  padding: 8px 0;
}
.sidebar-pkg-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  transition: background var(--transition);
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
}
.sidebar-pkg-item:last-child {
  border-bottom: none;
}
.sidebar-pkg-item:hover {
  background: var(--bg);
}
.sidebar-pkg-item.active {
  background: var(--primary-light);
  color: var(--primary);
}
.sidebar-pkg-item a {
  color: var(--text);
  font-weight: 550;
  font-size: 0.84rem;
  transition: color var(--transition);
}
.sidebar-pkg-item:hover a {
  color: var(--primary);
}
.sidebar-pkg-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.84rem;
}
.sidebar-areas-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.sidebar-areas-card h4 {
  padding: 16px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.sidebar-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 20px;
}
.sidebar-area-chip {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 550;
  color: var(--text-muted);
  transition: all var(--transition);
}
.sidebar-area-chip:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* Service Content */
.service-content {
  min-width: 0;
}
.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.service-breadcrumb a:hover {
  color: var(--primary);
}
.service-content h1 {
  margin-bottom: 16px;
}
.service-content .hero-sub {
  font-size: 1rem;
  margin-bottom: 32px;
}
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  padding: 20px;
  background: var(--primary-light);
  border-radius: var(--radius);
}
.service-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-meta-label {
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}
.service-meta-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.content-section {
  margin-bottom: 48px;
}
.content-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.content-section p {
  margin-bottom: 12px;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.benefit-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.benefit-text p {
  font-size: 0.82rem;
  margin-bottom: 0;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.how-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-primary);
}
.how-step-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.how-step-content p {
  font-size: 0.85rem;
  margin-bottom: 0;
}
.service-page-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #f0fff4 100%);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-card {
    max-width: 480px;
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .service-layout {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
    order: -1;
  }
  .sidebar-order-card,
  .sidebar-packages-card,
  .sidebar-areas-card {
    max-width: 540px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-block {
    padding: 40px 24px;
  }
  .urgency {
    padding: 36px 24px;
  }
  .pricing-table td,
  .pricing-table th {
    padding: 12px 14px;
  }
}

@media (max-width: 540px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .stats-bar {
    display: none;
  }
}

/* --- Mobile Nav Menu --- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav-panel {
  width: 280px;
  height: 100%;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 4px 0 40px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.2s ease-out;
}
@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.mobile-nav-close {
  align-self: flex-end;
  margin-bottom: 8px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}
.mobile-nav-panel a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-nav-panel a:hover {
  background: var(--bg);
}

/* Scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
