/* ==========================================================
   easyfile.in — Executive Design System (10/10 Premium Polish)
   Fintech-grade typography, crisp card architecture, tangible
   depth, and authentic human professional aesthetic.
   ========================================================== */

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Executive Navy Blue & Emerald Green Palette */
  --navy-950:    #060c18;
  --navy-900:    #0a192f;
  --navy-800:    #112240;
  --navy-700:    #1e3a5f;
  --slate-600:   #475569;
  --slate-500:   #64748b;
  --slate-400:   #94a3b8;
  --slate-300:   #cbd5e1;
  --slate-200:   #e2e8f0;
  --slate-100:   #f1f5f9;
  --slate-50:    #f8fafc;
  --white:       #ffffff;

  /* Brand Colors: Deep Navy & Vibrant Green */
  --brand-primary:   #0a192f;
  --brand-hover:     #060c18;
  
  --emerald-700:     #047857;
  --emerald-600:     #059669;
  --emerald-500:     #10b981;
  --emerald-400:     #34d399;
  --emerald-50:      #ecfdf5;
  --emerald-border:  #a7f3d0;

  --wa-green:        #25d366;
  --wa-hover:        #20bd59;
  --wa-dark:         #064e3b;
  --wa-bg:           #ecfdf5;
  --wa-border:       #6ee7b7;

  --notice-red:      #dc2626;
  --notice-bg:       #fef2f2;
  --notice-border:   #fecaca;

  /* Geometry & Tangible Elevations */
  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-pill: 9999px;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.12), 0 4px 10px -2px rgba(15, 23, 42, 0.04);

  --container-width: 1180px;
  --header-height: 72px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--slate-700);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.15s ease;
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
}

ul {
  list-style: none;
}

.site-container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5 {
  color: var(--slate-950);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

p {
  color: var(--slate-600);
}

/* Section Shells */
.section-shell {
  padding: 72px 0;
  border-bottom: 1px solid var(--slate-200);
}
.section-shell.bg-slate {
  background-color: var(--slate-50);
}
.section-shell.bg-white {
  background-color: var(--white);
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-overline {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--emerald-700);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.section-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.section-intro p {
  font-size: 1rem;
  color: var(--slate-600);
}

/* Modern Tangible Cards */
.ui-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.ui-card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Buttons with Real Tactile Finish */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
  line-height: 1.25;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--brand-primary);
  color: var(--white);
  border-color: var(--brand-primary);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}
.btn-primary:hover {
  background-color: var(--brand-hover);
  border-color: var(--brand-hover);
  color: var(--white);
}

.btn-whatsapp {
  background-color: var(--wa-green);
  color: #033618;
  border-color: #20bd59;
  box-shadow: 0 1px 2px rgba(16, 185, 129, 0.2);
}
.btn-whatsapp:hover {
  background-color: var(--wa-hover);
  color: #022410;
  box-shadow: 0 3px 8px rgba(16, 185, 129, 0.3);
}

.btn-outline {
  background-color: var(--white);
  color: var(--slate-900);
  border-color: var(--slate-300);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
  background-color: var(--slate-50);
  border-color: var(--slate-800);
  color: var(--slate-950);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.82rem;
}
.btn-lg {
  padding: 13px 26px;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}

/* Feature Item with Icon Container (Replaces Plain Emojis) */
.feature-item-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: all 0.15s ease;
}
.feature-item-row:hover {
  background-color: var(--white);
  border-color: var(--slate-300);
  box-shadow: var(--shadow-xs);
}
.feature-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background-color: var(--slate-200);
  color: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.9rem;
}
.feature-icon-badge.green {
  background-color: var(--emerald-50);
  color: var(--emerald-700);
  border: 1px solid var(--emerald-border);
}
.feature-content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.feature-content p {
  font-size: 0.82rem;
  color: var(--slate-600);
  line-height: 1.45;
  margin: 0;
}

/* Badges & Chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background-color: var(--slate-100);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
}
.chip-green {
  background-color: var(--emerald-50);
  color: var(--emerald-700);
  border-color: var(--emerald-border);
}

/* ==========================================================
   HEADER & NAVIGATION
   ========================================================== */
.top-notice-bar {
  background-color: var(--slate-900);
  color: var(--slate-300);
  padding: 7px 0;
  font-size: 0.78rem;
}
.top-notice-bar a {
  color: var(--emerald-400);
  font-weight: 700;
}
.top-notice-bar a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-symbol {
  width: 34px;
  height: 34px;
  background-color: var(--navy-900);
  border: 2px solid var(--emerald-500);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-400);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.15);
}
.logo-title {
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--slate-950);
  letter-spacing: -0.035em;
}
.logo-title span {
  color: var(--emerald-600);
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-700);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 4px;
}
.nav-link:hover {
  color: var(--slate-950);
}
.nav-link.text-urgent {
  color: var(--notice-red);
  font-weight: 700;
}

/* Megamenu */
.nav-item.has-dropdown {
  position: relative;
}
.nav-megamenu {
  position: absolute;
  top: 100%;
  left: -180px;
  width: 920px;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
  pointer-events: none;
}
.nav-item.has-dropdown:hover .nav-megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.megamenu-col span.col-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 4px;
}
.megamenu-link {
  display: block;
  padding: 6px 8px;
  border-radius: var(--radius-xs);
  margin-bottom: 3px;
}
.megamenu-link:hover {
  background-color: var(--slate-50);
}
.megamenu-link strong {
  display: block;
  font-size: 0.85rem;
  color: var(--slate-900);
}
.megamenu-link span {
  display: block;
  font-size: 0.74rem;
  color: var(--slate-500);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--slate-950);
  margin: 5px 0;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 13, 22, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.mobile-nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.drawer-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 84%;
  max-width: 320px;
  height: 100%;
  background-color: var(--white);
  padding: 24px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.2s ease;
}
.mobile-nav-drawer.is-open .drawer-content {
  transform: translateX(0);
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.drawer-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--slate-950);
}
.drawer-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--slate-400);
  cursor: pointer;
}
.mobile-nav-links a {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate-900);
  padding: 10px 0;
  border-bottom: 1px solid var(--slate-100);
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.clean-hero-section {
  padding: 56px 0 48px;
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
}
.clean-hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 40px;
  align-items: start;
}
.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--emerald-700);
  background-color: var(--emerald-50);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--emerald-border);
  margin-bottom: 16px;
}
.clean-hero-headline {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--slate-950);
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.clean-hero-headline span.accent {
  color: var(--emerald-600);
}
.clean-hero-subtext {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 24px;
}

.hero-guarantees-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--slate-200);
}
.hero-guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-700);
}
.hero-guarantee-item svg {
  color: var(--emerald-600);
  flex-shrink: 0;
}

/* Service Navigator Card */
.hero-navigator-card {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.navigator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.navigator-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--slate-950);
}
.navigator-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background-color: var(--slate-200);
  color: var(--slate-700);
  padding: 2px 8px;
  border-radius: var(--radius-xs);
}

.navigator-picker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.nav-pill-btn {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xs);
  padding: 9px 12px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-700);
  cursor: pointer;
  transition: all 0.12s ease;
}
.nav-pill-btn:hover {
  border-color: var(--slate-400);
  background-color: var(--slate-100);
}
.nav-pill-btn.is-active {
  background-color: var(--emerald-50);
  border-color: var(--emerald-500);
  color: var(--emerald-700);
  font-weight: 700;
}

.navigator-detail-box {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xs);
  padding: 14px;
  margin-bottom: 14px;
}
.nav-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  padding: 5px 0;
}
.nav-detail-row:not(:last-child) {
  border-bottom: 1px dashed var(--slate-200);
}
.nav-detail-lbl {
  color: var(--slate-500);
}
.nav-detail-val {
  font-weight: 700;
  color: var(--slate-900);
}
.nav-detail-val.price {
  font-size: 1.15rem;
  color: var(--slate-950);
}

@media (max-width: 991px) {
  .clean-hero-grid {
    grid-template-columns: 1fr;
  }
  .clean-hero-headline {
    font-size: 2.3rem;
  }
}

/* ==========================================================
   AUTHENTIC CREDENTIALS STRIP
   ========================================================== */
.credentials-strip {
  background-color: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  padding: 24px 0;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.cred-card {
  padding: 8px;
  border-right: 1px solid var(--slate-200);
}
.cred-card:last-child {
  border-right: none;
}
.cred-number {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--slate-950);
  letter-spacing: -0.03em;
}
.cred-label {
  font-size: 0.82rem;
  color: var(--slate-500);
  font-weight: 600;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cred-card:nth-child(2) {
    border-right: none;
  }
}

/* ==========================================================
   PILLARS & SERVICE CARDS
   ========================================================== */
.pillars-section {
  padding: 64px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-card {
  background-color: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}
.pillar-card:hover {
  border-color: var(--slate-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pillar-header {
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--slate-950);
}
.pillar-desc {
  font-size: 0.82rem;
  color: var(--slate-500);
  margin-top: 2px;
}

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

/* Steps Row */
.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.process-card {
  background-color: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-xs);
}
.process-number {
  width: 32px;
  height: 32px;
  background-color: var(--slate-950);
  color: var(--white);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.process-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.process-card p {
  font-size: 0.84rem;
  color: var(--slate-600);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .steps-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .steps-row {
    grid-template-columns: 1fr;
  }
}

/* Reviews Grid */
.reviews-section {
  padding: 64px 0;
  background-color: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background-color: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: #eab308;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.review-text {
  font-size: 0.92rem;
  color: var(--slate-800);
  line-height: 1.6;
  margin-bottom: 16px;
}
.review-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--slate-950);
}
.review-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--slate-500);
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQs */
.faqs-section {
  padding: 64px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  padding: 0 20px;
  background-color: var(--slate-50);
}
.faq-question {
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--slate-950);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-icon {
  width: 16px;
  height: 16px;
  color: var(--slate-500);
  transition: transform 0.15s ease;
  flex-shrink: 0;
}
.faq-item.is-active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.faq-answer-inner {
  padding-bottom: 18px;
  font-size: 0.9rem;
  color: var(--slate-700);
  line-height: 1.6;
  border-top: 1px solid var(--slate-200);
  padding-top: 14px;
}

/* Pre-footer Callout */
.pre-footer-callout {
  padding: 56px 0;
  background-color: var(--slate-950);
  color: var(--white);
}
.callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.callout-inner h2 {
  color: var(--white);
  font-size: 1.9rem;
  margin-bottom: 6px;
}
.callout-inner p {
  color: var(--slate-400);
  font-size: 0.98rem;
}
.callout-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 860px) {
  .callout-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Footer */
.clean-footer {
  background-color: #060a12;
  color: #94a3b8;
  padding: 48px 0 24px;
  font-size: 0.84rem;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-links li {
  margin-bottom: 7px;
}
.footer-links a {
  color: #94a3b8;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #64748b;
}
.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #64748b;
}

@media (max-width: 991px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Table */
.diff-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}
.diff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.diff-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  background-color: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  color: var(--slate-900);
}
.diff-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--slate-200);
  vertical-align: top;
}
.diff-table tr:last-child td {
  border-bottom: none;
}
