/* ============================================================
   LeadPilot CRM — Shared Stylesheet
   Primary Keys Technologies Pvt Ltd
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --orange: #FF6B00;
  --orange-light: #FF8C38;
  --orange-dark: #CC5500;
  --dark: #111111;
  --charcoal: #1E1E1E;
  --surface: #242424;
  --surface2: #2E2E2E;
  --grey: #9CA3AF;
  --border: #333333;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }

.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--orange-light); font-weight: 600; }

.nav-cta {
  background: var(--gradient) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: opacity 0.2s, transform 0.15s !important;
}

.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ============================================================
   HOME HERO (index.html only)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 { width: 400px; height: 400px; background: rgba(255,107,0,0.15); top: -100px; right: -100px; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(255,69,0,0.10); bottom: 0; left: -80px; }

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.hero-stat-val { font-size: 1.8rem; font-weight: 800; color: var(--orange); }
.hero-stat-label { font-size: 0.75rem; color: var(--grey); margin-top: 2px; }

/* ── PHONE MOCKUP ── */
.phone-wrap { display: flex; justify-content: center; position: relative; }

.phone-frame {
  width: 260px; height: 520px;
  background: var(--surface);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.08);
}

.phone-notch {
  width: 90px; height: 24px;
  background: var(--dark);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative; z-index: 2;
}

.phone-screen { padding: 12px; }

.phone-header {
  background: var(--orange);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}

.phone-header-title { font-size: 11px; font-weight: 700; color: white; margin-bottom: 2px; }
.phone-header-sub { font-size: 9px; color: rgba(255,255,255,0.7); }

.phone-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.phone-stat-card { background: var(--surface2); border-radius: 10px; padding: 10px; }
.phone-stat-num { font-size: 14px; font-weight: 800; color: var(--orange); }
.phone-stat-lbl { font-size: 8px; color: var(--grey); margin-top: 1px; }

.phone-lead {
  background: var(--surface2);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-lead-avatar {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white; flex-shrink: 0;
}

.phone-lead-name { font-size: 10px; font-weight: 600; color: var(--white); }
.phone-lead-phone { font-size: 8px; color: var(--grey); }

.phone-lead-badge {
  margin-left: auto;
  font-size: 7px; font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
  flex-shrink: 0;
}

.badge-interested { background: rgba(34,197,94,0.15); color: #4ade80; }
.badge-followup { background: rgba(255,107,0,0.15); color: var(--orange-light); }
.badge-pending { background: rgba(156,163,175,0.15); color: var(--grey); }

.phone-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,107,0,0.1);
  filter: blur(60px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-title .hl {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(255,107,0,0.3);
}

.btn-primary:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,0,0.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ============================================================
   HOME — FEATURES SECTION
   ============================================================ */
.features-section { padding: 100px 0; }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-subtitle { margin: 0 auto; }

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.2s;
}

.feature-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(255,107,0,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.feature-desc { font-size: 0.875rem; color: var(--grey); line-height: 1.6; }

/* ============================================================
   HOME — HOW IT WORKS SECTION
   ============================================================ */
.hiw-section { padding: 100px 0; background: var(--charcoal); }

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.hiw-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,107,0,0.2));
}

.hiw-step { text-align: center; position: relative; }

.hiw-num {
  width: 56px; height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: white;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(255,107,0,0.12);
}

.hiw-step-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.hiw-step-desc { font-size: 0.82rem; color: var(--grey); line-height: 1.6; }

/* ============================================================
   HOME — GOOGLE SHEETS SECTION
   ============================================================ */
.sheets-section { padding: 100px 0; }

.sheets-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sheets-badge-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.sheets-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.sheets-badge:hover { border-color: rgba(255,107,0,0.3); }

.sheets-badge-icon {
  width: 40px; height: 40px;
  background: rgba(255,107,0,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}

.sheets-badge-text strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.sheets-badge-text span { font-size: 0.82rem; color: var(--grey); line-height: 1.5; }

.sheets-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.sheets-header-bar {
  background: #1a7f4a;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}

.sheets-header-bar span { font-size: 0.85rem; font-weight: 600; color: white; }

.sheets-table { width: 100%; font-size: 0.75rem; }

.sheets-table th {
  background: rgba(26,127,74,0.15);
  color: #4ade80;
  padding: 8px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sheets-table td { padding: 8px 12px; border-bottom: 1px solid var(--border); color: var(--grey); }
.sheets-table tr:last-child td { border-bottom: none; }

.sheets-status { display: inline-block; padding: 2px 8px; border-radius: 8px; font-size: 0.65rem; font-weight: 600; }
.ss-int { background: rgba(34,197,94,0.15); color: #4ade80; }
.ss-won { background: rgba(255,107,0,0.15); color: var(--orange-light); }
.ss-fu { background: rgba(250,204,21,0.15); color: #fbbf24; }

.sync-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px 6px 6px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 20px;
  font-size: 0.72rem; color: #4ade80; font-weight: 600;
  margin: 12px; width: fit-content;
}

.sync-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================================
   HOME — TRUST / REVIEWS SECTION
   ============================================================ */
.trust-section { padding: 100px 0; background: var(--charcoal); }

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

.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.trust-stars { color: var(--orange); font-size: 1rem; margin-bottom: 14px; }
.trust-quote { font-size: 0.9rem; color: #D1D5DB; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.trust-author { display: flex; align-items: center; gap: 12px; }

.trust-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}

.trust-name { font-size: 0.875rem; font-weight: 700; }
.trust-role { font-size: 0.75rem; color: var(--grey); }

/* ============================================================
   HOME — CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,107,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}

.cta-sub {
  font-size: 1rem;
  color: var(--grey);
  margin-bottom: 40px;
  position: relative; z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ============================================================
   LEGAL PAGES — PAGE HERO
   ============================================================ */
.page-hero {
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,107,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 { width: 350px; height: 350px; background: rgba(255,107,0,0.12); top: -80px; right: -80px; }
.orb-2 { width: 250px; height: 250px; background: rgba(255,69,0,0.08); bottom: 0; left: -60px; }

.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange-light);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 16px;
}

.page-hero h1 .hl {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-desc {
  font-size: 1rem; color: var(--grey);
  line-height: 1.7; margin-bottom: 28px;
}

.page-hero-meta {
  display: flex;
  justify-content: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 0.8rem; color: #6B7280;
}

.page-hero-meta span {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 20px;
}

/* ============================================================
   LEGAL PAGES — CONTENT
   ============================================================ */
.content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

/* ── TOC ── */
.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 14px 14px 0;
  padding: 24px 28px;
  margin-bottom: 56px;
}

.toc-title {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--orange-light); margin-bottom: 16px;
}

.toc ol { padding-left: 18px; }
.toc li { margin-bottom: 8px; }

.toc a {
  color: var(--grey); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s;
}

.toc a:hover { color: var(--orange-light); }

/* ── DOC SECTIONS ── */
.doc-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}

.doc-section:last-child { border-bottom: none; }

.doc-section-header {
  display: flex; align-items: flex-start;
  gap: 16px; margin-bottom: 20px;
}

.doc-num {
  background: var(--gradient);
  color: white;
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
  box-shadow: 0 4px 12px rgba(255,107,0,0.25);
}

.doc-section h2 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); line-height: 1.3; padding-top: 6px;
}

.doc-section p {
  color: #D1D5DB; margin-bottom: 14px;
  font-size: 0.95rem; line-height: 1.75;
}

.doc-section p:last-child { margin-bottom: 0; }

.doc-section ul, .doc-section ol {
  padding-left: 22px; margin: 12px 0;
}

.doc-section li {
  margin-bottom: 10px; font-size: 0.95rem;
  color: #D1D5DB; line-height: 1.65;
}

.doc-section li::marker { color: var(--orange); }
.doc-section strong { color: var(--white); }
.doc-section a { color: var(--orange-light); transition: color 0.2s; text-decoration: none; }
.doc-section a:hover { color: var(--orange); }

/* ── DATA TABLE ── */
.data-table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0; font-size: 0.875rem;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
}

.data-table thead { background: var(--surface2); }

.data-table thead th {
  padding: 12px 16px; text-align: left;
  font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--orange-light);
}

.data-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(255,107,0,0.04); }

.data-table tbody td {
  padding: 12px 16px; color: #D1D5DB;
  vertical-align: top; font-size: 0.875rem;
}

.data-table tbody td:first-child { font-weight: 600; color: var(--white); }

/* ── CALLOUTS ── */
.callout {
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.2);
  border-left: 3px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: 0.9rem; color: #D1D5DB; line-height: 1.65;
}

.callout strong { color: var(--orange-light); }

.callout-warning {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-left: 3px solid #F59E0B;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: 0.9rem; color: #D1D5DB; line-height: 1.65;
}

.callout-warning strong { color: #FCD34D; }

/* ── PERM / USE GRID ── */
.perm-grid, .use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px; margin: 20px 0;
}

.perm-card, .use-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 16px;
  display: flex; align-items: flex-start;
  gap: 14px; transition: border-color 0.2s;
}

.perm-card:hover, .use-card:hover { border-color: rgba(255,107,0,0.3); }

.perm-icon, .use-card-icon {
  width: 40px; height: 40px;
  background: rgba(255,107,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}

.perm-info strong, .use-card-info strong {
  display: block; font-size: 0.875rem;
  font-weight: 600; color: var(--white); margin-bottom: 4px;
}

.perm-info span, .use-card-info span {
  font-size: 0.78rem; color: var(--grey); line-height: 1.5;
}

/* ── CONTACT CARD ── */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  display: flex; flex-wrap: wrap;
  gap: 24px; align-items: center;
  justify-content: space-between;
  position: relative; overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px; background: var(--gradient);
}

.contact-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.contact-card p { font-size: 0.875rem; color: var(--grey); margin: 0 !important; }

.contact-card a.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient); color: white;
  text-decoration: none; padding: 12px 24px;
  border-radius: 10px; font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(255,107,0,0.3);
  transition: opacity 0.2s, transform 0.15s; white-space: nowrap;
}

.contact-card a.btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── PAGE LINKS ── */
.page-links {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
  margin-top: 40px; padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.page-links-label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--grey); text-transform: uppercase;
  letter-spacing: 0.05em; margin-right: 4px;
}

.page-link-btn {
  display: inline-flex; align-items: center;
  gap: 8px; padding: 9px 18px;
  border-radius: 8px; text-decoration: none;
  font-size: 0.85rem; font-weight: 600;
  transition: all 0.2s;
}

.page-link-btn.primary {
  background: var(--gradient); color: white;
  box-shadow: 0 4px 16px rgba(255,107,0,0.25);
}

.page-link-btn.primary:hover { opacity: 0.9; transform: translateY(-1px); }

.page-link-btn.outline {
  background: rgba(255,255,255,0.05);
  color: var(--grey);
  border: 1px solid var(--border);
}

.page-link-btn.outline:hover {
  border-color: rgba(255,107,0,0.4);
  color: var(--orange-light);
  background: rgba(255,107,0,0.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}

.footer-brand-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.footer-brand-name span { color: var(--orange); }

.footer-brand-desc {
  font-size: 0.85rem; color: var(--grey);
  line-height: 1.6; max-width: 320px;
}

.footer-col-title {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--grey); margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}

.footer-links-list a {
  color: #6B7280; text-decoration: none;
  font-size: 0.875rem; transition: color 0.2s;
}

.footer-links-list a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

.footer-copy { font-size: 0.8rem; color: #6B7280; }
.footer-copy strong { color: var(--orange); }

.footer-copy a {
  color: #6B7280; text-decoration: none;
  transition: color 0.2s; margin-right: 16px;
}

.footer-copy a:last-child { margin-right: 0; }
.footer-copy a:hover { color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .phone-wrap { order: -1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hiw-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hiw-steps::before { display: none; }
  .sheets-inner { grid-template-columns: 1fr; gap: 48px; }
  .trust-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .page-hero { padding: 100px 16px 60px; }
  .content-wrap { padding: 40px 16px 80px; }
  .perm-grid, .use-grid { grid-template-columns: 1fr; }
  .contact-card { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-links { flex-direction: column; align-items: flex-start; }
  .data-table { font-size: 0.8rem; }
  .data-table thead th, .data-table tbody td { padding: 10px 12px; }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .page-hero-meta { flex-direction: column; align-items: center; }
}
