:root {
  --primary-navy: #001529;
  --secondary-navy: #002B4D;
  --text-dark: #0A1E2B;
  --text-light: #FFFFFF;
  --accent-blue: #CCF3FF;
  --wave-1: #002244;
  --wave-2: #001a33;
  --wave-3: #001122;
  --font-main: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background-color: rgba(0, 21, 41, 0.8);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  height: 48px;
  width: auto;
}

.header .logo-image {
  filter: brightness(0) invert(1);
}

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

.nav-link {
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.login-link {
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.login-link:hover {
  color: #1F6B98;
}

.btn-teal {
  background-color: #00A3C4;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 163, 196, 0.3);
}

.btn-teal:hover {
  background-color: #00BBE2;
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--secondary-navy);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #072536;
}

/* Hero Section (Replaced by Tailwind markup) */

/* Globe Visual (Cleaned up) */
.globe {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
  transform: translate(-80%, 25%) scale(2.8);
}

.globe-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.1));
  opacity: 0.95;
  mix-blend-mode: lighten;
}

/* Airplane Orbit Animation */
.airplane-orbit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-15deg);
  z-index: 20;
  pointer-events: none;
}

.airplane-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  color: #CCF3FF;
  /* Using percentages for path to be responsive */
  offset-path: path("M 0 225 a 225 90 0 1 0 450 0 a 225 90 0 1 0 -450 0");
  offset-rotate: auto 90deg;
  animation: fly-path 12s linear infinite;
  filter: drop-shadow(0 0 8px rgba(204,243,255,0.9));
}

@keyframes fly-path {
  0% { offset-distance: 0%; z-index: 21; }
  49% { z-index: 21; }
  50% { z-index: 5; }
  99% { z-index: 5; }
  100% { offset-distance: 100%; z-index: 21; }
}

/* Features Bar (Relocated under buttons) */
.hero-content .features-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.hero-content .feature-item {
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  opacity: 0.7;
}

.hero-content .feature-item:hover {
  opacity: 1;
  transform: translateX(5px);
}

.hero-content .feature-text {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: none;
  letter-spacing: 0;
}

.hero-content svg {
  color: #CCF3FF;
  flex-shrink: 0;
}

/* Waves Background */
.waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 5;
  pointer-events: none;
}

.waves {
  position: relative;
  width: 100%;
  height: 150px;
  margin-bottom: -7px; /* Fix for safari gap */
  min-height: 150px;
  max-height: 150px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}

.content-section {
  padding: 80px 0;
  background-color: #f8fafc;
  min-height: 400px;
}

/* Premium Content Sections */
.mt-16 { margin-top: 64px; }

.premium-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-header {
  margin-bottom: 24px;
}

.card-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-top: 12px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-red {
  background-color: #fee2e2;
  color: #ef4444;
}

.badge-green {
  background-color: #dcfce3;
  color: #22c55e;
}

.section-desc {
  font-size: 18px;
  color: #475569;
  margin-bottom: 32px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.grid-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 12px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
}

.error-card {
  border-left: 4px solid #ef4444;
}

.success-card {
  border-left: 4px solid #22c55e;
  align-items: center;
}

.icon-box {
  font-size: 24px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card-text strong {
  display: block;
  font-size: 18px;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.card-text p {
  color: #64748b;
  font-size: 15px;
}

.alert-box {
  background-color: #fff7ed;
  border: 1px solid #ffedd5;
  border-left: 4px solid #f97316;
  padding: 16px 24px;
  border-radius: 8px;
  color: #9a3412;
  font-weight: 500;
  font-size: 16px;
}

/* Solution Footer */
.solution-footer-text {
  margin-top: 24px;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

/* Features Section */
.features-card {
  margin-top: 40px;
}

.badge-blue {
  background-color: rgba(31, 107, 152, 0.1);
  color: #1F6B98;
}

.coming-soon {
  font-size: 14px;
  font-weight: 500;
  color: #f59e0b;
  background-color: rgba(245, 158, 11, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 12px;
  letter-spacing: normal;
}

.feature-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.rounded-point {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 20px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 56px;
}

.rounded-point::before {
  content: "✦";
  position: absolute;
  left: 24px;
  top: 20px;
  color: #1F6B98;
  font-size: 18px;
}

.rounded-point:hover {
  background-color: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transform: translateX(4px);
}

/* ------------------------------------- */
/* TARIFF CALCULATOR SPECIFIC STYLES     */
/* ------------------------------------- */
.app-layout {
  background-color: #f8fafc;
  min-height: calc(100vh - 80px);
  padding: 40px 20px;
}

.calculator-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.config-panel {
  width: 320px;
  flex-shrink: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.config-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.config-header h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1e293b;
}

.btn-reset {
  background: none;
  border: none;
  color: #3b82f6;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.config-group {
  margin-bottom: 24px;
}

.group-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 16px;
}

.input-wrap {
  margin-bottom: 16px;
}

.input-wrap label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
}

.input-icon-wrap input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  color: #334155;
  transition: all 0.2s;
  box-sizing: border-box;
}

.input-icon-wrap input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.hs-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 50;
  margin-top: 4px;
}

.hs-suggestion-item {
  padding: 8px 12px;
  font-size: 12px;
  color: #334155;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
}

.hs-suggestion-item:last-child {
  border-bottom: none;
}

.hs-suggestion-item:hover {
  background-color: #f8fafc;
}

.hs-suggestion-code {
  font-family: monospace;
  font-weight: 700;
  color: #3b82f6;
  display: block;
  margin-bottom: 2px;
}

.hs-suggestion-desc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #64748b;
}

.input-wrap select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  color: #334155;
  background-color: white;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  box-sizing: border-box;
}

.hs-desc {
  font-size: 11px;
  color: #64748b;
  margin-top: 6px;
  display: none;
}

.btn-calculate {
  width: 100%;
  padding: 14px;
  background-color: #60a5fa;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.btn-calculate:hover {
  background-color: #3b82f6;
}

.main-panel {
  flex: 1;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  min-height: 600px;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.tab {
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.tab.active {
  color: #1e293b;
  border-bottom-color: #3b82f6;
  background: white;
}

.tab-content {
  padding: 32px;
}

.report-header {
  margin-bottom: 32px;
}

.report-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.report-header p {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.report-empty {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps {
  display: flex;
  gap: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 200px;
}

.step-num {
  font-size: 48px;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
}

.step-text {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.5;
}

/* Results State */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.kpi-card {
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.kpi-card.highlight {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.kpi-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.kpi-value {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.kpi-card.highlight .kpi-value {
  color: #2563eb;
}

.duty-breakdown {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.breakdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.breakdown-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.badge {
  background: #e2e8f0;
  color: #475569;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.duty-lines-list {
  padding: 8px;
}

.duty-line {
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: white;
}

.duty-line:hover {
  background: #f8fafc;
}

.line-code {
  font-family: monospace;
  font-size: 13px;
  color: #3b82f6;
  font-weight: 600;
}

.line-name {
  font-size: 13px;
  color: #475569;
}

.line-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.tag-BASE { background: #f1f5f9; color: #64748b; }
.tag-Section301 { background: #fff7ed; color: #ea580c; border: 1px solid #fed7aa; }
.tag-Section232 { background: #fefce8; color: #ca8a04; border: 1px solid #fef08a; }
.tag-Section122 { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.tag-ADDCVD { background: #fee2e2; color: #ef4444; border: 1px solid #fecaca; }

.line-rate {
  font-family: monospace;
  font-size: 14px;
  color: #1e293b;
}

.line-amount {
  font-family: monospace;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-align: right;
  min-width: 80px;
}

.duty-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.total-amt {
  font-family: monospace;
  font-size: 16px;
  color: #2563eb;
}

.fees-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
  color: #475569;
}

.fee-row span:last-child {
  font-family: monospace;
  font-weight: 600;
  color: #0f172a;
}

.advisory-banner {
  padding: 12px 16px;
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 4px;
  color: #92400e;
  font-size: 13px;
  font-weight: 500;
  margin-top: 24px;
}

.expert-box {
  background: #f59e0b;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

.add-cvd-popup {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 12px;
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.add-cvd-popup .popup-icon {
  font-size: 18px;
}

.add-cvd-popup .popup-content strong {
  font-size: 11px;
  color: #92400e;
  display: block;
}

.add-cvd-popup .popup-content p {
  font-size: 11px;
  color: #b45309;
  margin: 0;
}

.s232-options {
  margin-bottom: 24px;
  padding: 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.checkbox-item:last-child {
  margin-bottom: 0;
}
.checkbox-item input {
  margin-top: 2px;
}
.checkbox-item label {
  font-size: 12px;
  color: #92400e;
  cursor: pointer;
}

/* Sidebar Country Selection */
.btn-add-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: white;
  color: #3b82f6;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-add-circle:hover {
  background: #f1f5f9;
  border-color: #3b82f6;
}

.selected-countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.country-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid #dbeafe;
}

.country-tag .remove {
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  color: #3b82f6;
  margin-left: 2px;
}

/* Comparison Cards Grid */
.comparison-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.comp-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.comp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.comp-card-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f8fafc;
}

.comp-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.country-letter {
  width: 28px;
  height: 28px;
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.country-name {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.btn-remove-card {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 18px;
  cursor: pointer;
}

.comp-card-summary {
  padding: 0;
  display: flex;
  gap: 1px;
  background: #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.summary-item {
  flex: 1;
  background: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.summary-label {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.summary-value {
  font-size: 24px;
  font-weight: 800;
  color: #2563eb;
}

.comp-card-body {
  padding: 20px;
}

.expand-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
}

.detail-label {
  color: #64748b;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-value {
  color: #0f172a;
  font-weight: 700;
}

.progress-container {
  width: 100%;
  height: 4px;
  background: #f1f5f9;
  border-radius: 2px;
  margin: 4px 0 12px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #3b82f6;
  border-radius: 2px;
}

.info-circle {
  width: 14px;
  height: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #94a3b8;
  cursor: help;
}

.comp-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.comp-details.expanded {
  max-height: 500px;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .features-bar {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
  }
  .feature-divider {
    display: none;
  }
  .nav-links {
    display: none; /* Add a mobile menu later */
  }
}

/* Utilities */
.text-center { text-align: center; }
.mb-12 { margin-bottom: 48px; }
.mt-16 { margin-top: 64px; }

/* Audience Section */
.audience-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.audience-card {
  padding: 40px;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.audience-card:hover {
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transform: translateY(-8px);
  border-color: var(--accent-blue);
}

.audience-icon {
  font-size: 32px;
  margin-bottom: 24px;
}

.audience-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.audience-card ul {
  list-style: none;
  padding: 0;
}

.audience-card li {
  font-size: 15px;
  color: #475569;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.audience-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.feature-icon-wrapper.blue { background: rgba(59, 130, 246, 0.1); }
.feature-icon-wrapper.green { background: rgba(34, 197, 94, 0.1); }
.feature-icon-wrapper.orange { background: rgba(249, 115, 22, 0.1); }
.feature-icon-wrapper.purple { background: rgba(168, 85, 247, 0.1); }

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

.step-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.text-link {
  display: inline-block;
  color: #3b82f6;
  font-weight: 600;
  font-size: 15px;
  margin-top: 12px;
}

.text-link.muted {
  color: #94a3b8;
  cursor: not-allowed;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: var(--primary-navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.cta-footer-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Footer */
.footer {
  padding: 80px 0 0;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-logo p {
  margin-top: 16px;
  color: #64748b;
  font-size: 15px;
}

.footer .logo-image {
  height: 54px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-size: 15px;
  color: #64748b;
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: #3b82f6;
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid #f1f5f9;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

/* --- New Professional UI Styles --- */

/* Animations */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }

/* Competitors Section */
.competitors-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.badge-purple {
  background-color: rgba(168, 85, 247, 0.1);
  color: #9333ea;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

.comparison-table th {
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 2px solid #f1f5f9;
}

.comparison-table th.traditional {
  color: #64748b;
  width: 50%;
}

.comparison-table th.customswave {
  color: var(--primary-navy);
  background: rgba(59, 130, 246, 0.05);
  width: 50%;
  border-bottom-color: #3b82f6;
}

.comparison-table td {
  padding: 20px;
  font-size: 16px;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.comparison-table td.highlight {
  background: rgba(59, 130, 246, 0.02);
  color: #0f172a;
  font-weight: 600;
}

.cross-icon {
  color: #ef4444;
  margin-right: 12px;
  font-weight: bold;
}

.check-icon {
  color: #22c55e;
  margin-right: 12px;
  font-weight: bold;
}

/* Audience Header & Desc Updates */
.audience-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.audience-header .audience-icon {
  margin-bottom: 0;
}

.audience-header h4 {
  margin-bottom: 0;
}

.audience-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.audience-benefits ul li {
  font-size: 14px;
}

/* Buttons */
.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.glow {
  box-shadow: 0 0 20px rgba(197, 229, 241, 0.4);
}
.glow:hover {
  box-shadow: 0 0 30px rgba(197, 229, 241, 0.8);
}

