/* ═══════════════════════════════════════════
   JDP CREDIT SOLUTIONS — DESIGN SYSTEM
   Premium Landing Page Styles
═══════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@600;700;800;900&display=swap");

:root {
  --blue: #2f6bff;
  --blue-light: #5b8eff;
  --blue-dark: #1a4fd4;
  --blue-glow: rgba(47, 107, 255, 0.25);
  --dark: #0a0f1e;
  --navy: #0e1630;
  --navy-light: #151e3d;
  --light: #f8faff;
  --border: #e2e8f4;
  --muted: #64748b;
  --note: #94a3b8;
  --green: #0d9b5e;
  --green-light: #10b981;
  --green-bg: #ecfdf5;
  --green-border: #a7f3d0;
  --gold: #f59e0b;
  --red: #ef4444;
  --gradient-hero: linear-gradient(
    135deg,
    #0a0f1e 0%,
    #111b3c 40%,
    #1a2a5e 100%
  );
  --gradient-blue: linear-gradient(135deg, #2f6bff, #1a4fd4);
  --gradient-card: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 255, 0.9)
  );
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 8px 40px rgba(47, 107, 255, 0.2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  margin: 0;
  color: #1e293b;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(47, 107, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(47, 107, 255, 0.5);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes count-up {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════ */
header {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  font-family: "Outfit", sans-serif;
}
.logo-mark {
  background: var(--gradient-blue);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-glow);
}
.logo-location {
  opacity: 0.5;
  font-weight: 400;
  font-size: 13px;
  font-family: "Inter", sans-serif;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-links a.btn {
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 30, 0.98);
  backdrop-filter: blur(20px);
  z-index: 199;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.mobile-menu .btn {
  text-align: center;
  margin-top: 8px;
}

/* Sticky Mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--gradient-blue);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 -4px 20px rgba(47, 107, 255, 0.3);
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  background: var(--gradient-blue);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 107, 255, 0.35);
}
.btn:hover::after {
  opacity: 1;
}
.btn:active {
  transform: translateY(0);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.btn.green {
  background: linear-gradient(135deg, var(--green), #0a8a50);
  box-shadow: 0 4px 15px rgba(13, 155, 94, 0.3);
}
.btn.green:hover {
  box-shadow: 0 8px 25px rgba(13, 155, 94, 0.4);
}

.btn.outline {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue) !important;
  box-shadow: none;
}
.btn.outline::after {
  display: none;
}
.btn.outline:hover {
  background: var(--blue);
  color: #fff !important;
  box-shadow: var(--shadow-glow);
}
.btn.btn-dark {
  background: var(--dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--gradient-hero);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(47, 107, 255, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(47, 107, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-content {
  animation: fadeInUp 0.8s ease;
}

/* Pills & Badges */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(47, 107, 255, 0.12);
  color: var(--blue-light);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(47, 107, 255, 0.2);
}
.pill-light {
  background: #eef2ff;
  color: #3b5bdb;
  border: 1px solid #c3d0ff;
}
.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--green-light);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 16px 0 20px;
  font-size: 48px;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}
h1 .highlight {
  background: linear-gradient(135deg, var(--blue-light), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px;
  line-height: 1.65;
  max-width: 560px;
}

/* KPIs */
.kpis {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.kpi {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  min-width: 170px;
  transition: var(--transition);
}
.kpi:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.kpi strong {
  font-size: 14px;
  color: #fff;
}
.kpi .muted {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Hero Form Card */
.hero-form-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow:
    var(--shadow-xl),
    0 0 60px rgba(47, 107, 255, 0.1);
  animation: slideInRight 0.8s ease 0.2s both;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}
.hero-form-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--gradient-blue);
  border-radius: 0 0 4px 4px;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h2 {
  font-size: 34px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.025em;
  color: var(--dark);
  line-height: 1.15;
}
h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}
.muted {
  color: var(--muted);
}
.note {
  font-size: 12px;
  color: var(--note);
  margin: 4px 0 0;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header p {
  max-width: 560px;
  margin: 8px auto 0;
}

/* ═══════════════════════════════════════════
   FORMS
═══════════════════════════════════════════ */
input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  background: #fff;
  transition: var(--transition);
  color: #1e293b;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.1);
}
label {
  font-weight: 600;
  font-size: 13px;
  display: block;
  margin: 12px 0 5px;
  color: #334155;
}

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--light);
}
.section-dark {
  background: var(--gradient-hero);
  color: #fff;
}

/* ═══════════════════════════════════════════
   GRIDS
═══════════════════════════════════════════ */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card.featured {
  border: 2px solid var(--blue);
  position: relative;
  box-shadow: var(--shadow-glow);
}
.card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.card.green-accent {
  border-left: 4px solid var(--green);
}
.card.green-accent:hover {
  border-left-color: var(--green-light);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
  background: rgba(47, 107, 255, 0.08);
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--gradient-blue);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
}
.stats-row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  color: #fff;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
.stat-num {
  font-size: 28px;
  font-weight: 900;
  font-family: "Outfit", sans-serif;
}
.stat-label {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 2px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.price {
  font-size: 42px;
  font-weight: 900;
  font-family: "Outfit", sans-serif;
  color: var(--dark);
  line-height: 1;
}
.price span {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 10px;
  background: #fff;
  transition: var(--transition);
}
.faq details:hover {
  box-shadow: var(--shadow-sm);
}
.faq details[open] {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(47, 107, 255, 0.08);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(47, 107, 255, 0.08);
  transition: var(--transition);
}
.faq details[open] summary::after {
  content: "−";
  background: var(--blue);
  color: #fff;
}
.faq details p {
  margin: 14px 0 0;
}

/* ═══════════════════════════════════════════
   TOOLS
═══════════════════════════════════════════ */
.tool-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.tool-box:hover {
  box-shadow: var(--shadow-md);
}
.tool-box h3 {
  margin: 0 0 4px;
  font-size: 20px;
}
.result-box {
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: 16px;
  display: none;
  animation: fadeIn 0.5s ease;
  background: var(--green-bg);
  border: 1.5px solid var(--green-border);
}
.result-box.show {
  display: block;
}
.result-val {
  font-size: 36px;
  font-weight: 900;
  font-family: "Outfit", sans-serif;
}
.result-label {
  font-size: 13px;
  color: var(--muted);
}

/* Score Meter */
.score-meter {
  width: 100%;
  height: 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(
    to right,
    #ef4444 0%,
    #f59e0b 35%,
    #22c55e 70%,
    #2f6bff 100%
  );
  margin: 10px 0;
  position: relative;
}
.score-pointer {
  position: absolute;
  top: -5px;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 3px solid var(--dark);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-sm);
}

/* Quiz */
.quiz-opt {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}
.quiz-opt label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  font-size: 14px;
}
.quiz-opt label:hover {
  border-color: var(--blue);
  background: rgba(47, 107, 255, 0.04);
}
.quiz-opt input[type="radio"] {
  accent-color: var(--blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}
.progress-bar {
  height: 6px;
  background: #e7eaf3;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  overflow: hidden;
}
.progress-fill {
  height: 6px;
  background: var(--gradient-blue);
  border-radius: var(--radius-pill);
  transition: width 0.5s ease;
}

/* ═══════════════════════════════════════════
   ARTICLES / SEO SECTIONS
═══════════════════════════════════════════ */
.article-section {
  max-width: 780px;
}
.article-section p {
  margin: 0 0 14px;
  color: #475569;
  line-height: 1.7;
}
.article-section ul {
  color: #475569;
  padding-left: 20px;
}
.article-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.article-section h3 {
  font-size: 19px;
  margin: 24px 0 8px;
  color: var(--dark);
}
.read-more-wrap {
  overflow: hidden;
  position: relative;
}
.read-more-content {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.read-more-content.expanded {
  max-height: 3000px;
}
.read-more-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
  transition: opacity 0.3s;
}
.read-more-fade.hidden {
  opacity: 0;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.testimonial-card {
  position: relative;
  padding-top: 32px;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -5px;
  left: 20px;
  font-size: 72px;
  font-family: "Outfit", serif;
  color: rgba(47, 107, 255, 0.1);
  line-height: 1;
}

/* ═══════════════════════════════════════════
   AREA SERVED
═══════════════════════════════════════════ */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-tag {
  background: rgba(47, 107, 255, 0.06);
  color: var(--blue);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(47, 107, 255, 0.12);
  transition: var(--transition);
}
.area-tag:hover {
  background: rgba(47, 107, 255, 0.12);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-col h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.footer-col a {
  color: #64748b;
  text-decoration: none;
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  transition: var(--transition);
}
.footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 12px;
  color: #475569;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-grid,
  .grid2,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .grid3,
  .grid4 {
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  .section {
    padding: 60px 0;
  }
  .hero {
    padding: 40px 0 60px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 52px;
  }
}
@media (max-width: 600px) {
  .grid3,
  .grid4 {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  .hero {
    padding: 32px 0 48px;
  }
  .section {
    padding: 48px 0;
  }
  .stat-item {
    min-width: 50%;
  }
  .hero-form-card {
    padding: 24px 20px;
  }
  .kpis {
    flex-direction: column;
  }
  .kpi {
    min-width: auto;
  }
  .tool-box {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════
   FORM SUCCESS/ERROR MESSAGES
═══════════════════════════════════════════ */
.form-success {
  background: var(--green-bg);
  border: 1.5px solid var(--green-border);
  color: #065f46;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  animation: fadeIn 0.5s ease;
}
.form-error {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #991b1b;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  animation: fadeIn 0.5s ease;
}
