@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: #ffffff;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-accent: #0d9488;
  --color-accent-hover: #0f766e;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --border-color: #e2e8f0;
  
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
  
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;
  
  --transition-all: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-all);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  transition: var(--transition-all);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.2);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

body:not(.success-layout) {
  padding-top: 80px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 550;
  color: var(--color-text-muted);
  font-size: 15px;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-all);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text-main);
  border-radius: var(--border-radius-full);
  transition: var(--transition-all);
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 120px 0 100px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(37, 99, 235, 0.45));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 580px;
}

.form-card {
  background-color: var(--bg-card);
  padding: 36px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text-main);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text-muted);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background-color: var(--bg-secondary);
  color: var(--color-text-main);
  transition: var(--transition-all);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.unsplash-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-full);
  font-size: 12px;
  color: #ffffff;
  backdrop-filter: blur(8px);
  margin-top: 20px;
}

.unsplash-badge:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.unsplash-text-credit {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 6px;
  display: block;
}

.unsplash-text-credit a {
  color: var(--color-primary);
  font-weight: 500;
}

.card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-all);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.dashboard-mockup {
  background-color: #0f172a;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  color: #ffffff;
}

.db-header {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.db-title {
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.db-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-success);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.db-tabs {
  display: flex;
  gap: 8px;
}

.db-tab {
  padding: 6px 12px;
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  color: #94a3b8;
}

.db-tab.active {
  background-color: var(--color-primary);
  color: #ffffff;
}

.db-body {
  padding: 24px;
}

.db-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.db-metric-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.db-metric-label {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 4px;
}

.db-metric-value {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.db-metric-trend {
  font-size: 11px;
  color: var(--color-success);
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 4px;
}

.db-metric-trend.down {
  color: #f43f5e;
}

.db-chart-container {
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.db-chart-bar-wrap {
  width: 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.db-chart-bar {
  width: 70%;
  background: linear-gradient(to top, var(--color-primary), #60a5fa);
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
  transition: var(--transition-all);
  cursor: pointer;
  position: relative;
}

.db-chart-bar:hover {
  opacity: 0.85;
}

.db-chart-bar-value {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-text-main);
  padding: 2px 4px;
  border-radius: var(--border-radius-sm);
  opacity: 0;
  transition: var(--transition-all);
}

.db-chart-bar:hover .db-chart-bar-value {
  opacity: 1;
}

.db-chart-label {
  font-size: 10px;
  color: #64748b;
  margin-top: 8px;
}

.db-chart-labels {
  display: flex;
  justify-content: space-between;
  padding-left: 10px;
  margin-top: 8px;
}

.img-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 350px;
  box-shadow: var(--shadow-lg);
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-all);
}

.img-card:hover img {
  transform: scale(1.05);
}

.img-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 20%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
}

.claims-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 50px 0;
  padding: 0 40px;
}

.claims-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 40px;
  right: 40px;
  height: 4px;
  background-color: var(--border-color);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--color-text-muted);
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: var(--transition-all);
}

.timeline-step.active .step-num {
  background-color: var(--color-primary);
  color: #ffffff;
}

.timeline-step.completed .step-num {
  background-color: var(--color-success);
  color: #ffffff;
}

.step-title {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-main);
}

.step-desc {
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 120px;
  margin-top: 4px;
}

.claims-mock-tracker {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.tracker-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.tracker-id {
  font-weight: 700;
}

.tracker-status {
  font-weight: 600;
  color: var(--color-primary);
  background-color: rgba(37, 99, 235, 0.1);
  padding: 4px 12px;
  border-radius: var(--border-radius-full);
}

.plans-grid {
  margin-bottom: 60px;
}

.plan-card {
  position: relative;
  overflow: hidden;
}

.plan-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.plan-card.featured:hover {
  transform: translateY(-12px);
}

.plan-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--color-accent);
  color: #ffffff;
  padding: 4px 30px;
  transform: rotate(45deg);
  font-size: 11px;
  font-weight: 700;
}

.plan-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: baseline;
}

.plan-price span {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.plan-features {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.plan-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-success);
}

.plan-features li.disabled {
  color: var(--color-text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.plan-features li.disabled::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #f43f5e;
}

.comparison-section {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-top: 60px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  font-weight: 700;
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table tr:hover {
  background-color: var(--bg-secondary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-toggle {
  display: none;
}

.faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
  background-color: #ffffff;
  user-select: none;
}

.faq-title::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  transition: var(--transition-all);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  background-color: #ffffff;
  color: var(--color-text-muted);
  font-size: 14px;
  border-top: 0 solid var(--border-color);
}

.faq-toggle:checked ~ .faq-content {
  max-height: 200px;
  padding: 10px 24px 24px 24px;
  border-top: 1px solid var(--border-color);
}

.faq-toggle:checked ~ .faq-title::after {
  content: '-';
  transform: rotate(180deg);
}

.success-layout {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  padding: 24px;
}

.success-container {
  max-width: 500px;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  animation: slide-up 0.5s ease-out;
}

@keyframes slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  background-color: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  color: var(--color-success);
  font-size: 36px;
  animation: pop-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s both;
}

@keyframes pop-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-text-main);
}

.success-message {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.footer {
  margin-top: auto;
  background-color: #0f172a;
  color: #94a3b8;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand .logo {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #94a3b8;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content div {
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  /* Hamburger Menu implementation */
  .menu-btn {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%; 
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -8px 0 24px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: flex-start;
    padding-top: 100px;
    gap: 24px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    z-index: 999;
  }
  
  .nav-links a {
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .menu-toggle:checked ~ .nav-links {
    transform: translateX(0);
    visibility: visible;
  }

  .menu-toggle:checked ~ .menu-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle:checked ~ .menu-btn span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle:checked ~ .menu-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .comparison-section {
    padding: 24px 16px;
    margin-top: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .comparison-table {
    min-width: 500px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
    font-size: 11px;
  }

  #data-logs-table {
    padding: 16px 12px !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #data-logs-table table {
    min-width: 550px;
  }

  #data-logs-table th,
  #data-logs-table td {
    padding: 6px 4px !important;
    font-size: 10px !important;
  }

  #heartbeat-card {
    padding: 16px 14px !important;
  }

  #heartbeat-card h3 {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }

  #heartbeat-card p {
    font-size: 11px !important;
    margin-bottom: 16px !important;
    line-height: 1.4 !important;
  }

  #heartbeat-card .feed-container {
    gap: 10px !important;
  }

  #heartbeat-card .feed-item {
    font-size: 11px !important;
    padding-bottom: 8px !important;
  }

  #heartbeat-card .feed-item div {
    font-size: 11px !important;
  }

  #heartbeat-card .feed-item span {
    font-size: 11px !important;
  }

  .claims-timeline {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    padding: 0 10px;
  }
  
  .claims-timeline::before {
    top: 0;
    bottom: 0;
    left: 24px;
    width: 4px;
    height: calc(100% - 40px);
  }
  
  .timeline-step {
    flex-direction: row;
    gap: 16px;
    width: 100%;
  }
  
  .step-desc {
    text-align: left;
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {

  .grid-4 {
    grid-template-columns: 1fr;
  }
  .success-container {
    padding: 40px 20px;
  }
  .success-actions {
    flex-direction: column;
    gap: 10px;
  }
  .success-actions .btn {
    width: 100%;
  }
}
