:root {
  --os-sage: #7A9D7A;
  --os-sage-light: #A4C4A4;
  --os-sage-dark: #5A7D5A;
  --os-terracotta: #C97C63;
  --os-teal: #5B9A99;
  --os-teal-light: #7DBDBC;
  --os-warm-gray: #8B8680;
  --os-light-gray: #E8E6E3;
  --os-off-white: #F7F6F4;
  --os-charcoal: #3C3C3C;
  --os-text: #2D2D2D;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d2d5;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #6e6a6f;
  --gray-700: #525252;
  --gray-900: #262626;
  --primary-50: #f5f3f7;
  --primary-100: #ebe8ed;
  --primary-200: #d4d2d5;
  --primary-500: #6c698d;
  --primary-600: #5c5a74;
  --primary-700: #4a4860;
  --accent-50: #f7f5f4;
  --accent-100: #efeae8;
  --success-50: #ecfdf5;
  --success-200: #bbf7d0;
  --success-500: #10b981;
  --success-600: #059669;
  --success-700: #047857;
  --warning-50: #fffbeb;
  --warning-500: #f59e0b;
  --warning-600: #d97706;
  --error-50: #fef2f2;
  --error-500: #ef4444;
  --error-600: #dc2626;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f3 50%, #f5f7f6 100%);
  color: var(--os-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background: white;
  border-bottom: 1px solid var(--os-light-gray);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--os-charcoal);
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--os-sage), var(--os-teal));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.125rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.header-subtitle {
  font-size: 0.875rem;
  color: var(--os-warm-gray);
  margin-left: auto;
  display: none;
}

@media (min-width: 768px) {
  .header-subtitle {
    display: block;
  }
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.hero-mode {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-out;
}

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--os-charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--os-sage), var(--os-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--os-warm-gray);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}
.tools-section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--os-charcoal);
  margin-bottom: 1.5rem;
  text-align: center;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tool-card {
  background: white;
  border: 2px solid var(--os-light-gray);
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--os-sage), var(--os-teal));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tool-card:hover::before {
  transform: scaleX(1);
}

.tool-card.active:hover {
  border-color: var(--os-sage);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(122, 157, 122, 0.15);
}

.tool-card.coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
}

.tool-card.coming-soon:hover {
  transform: none;
  border-color: var(--os-light-gray);
}

.tool-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
}

.tool-card.active .tool-icon {
  background: linear-gradient(135deg, var(--os-sage-light), var(--os-teal-light));
}

.tool-card.coming-soon .tool-icon {
  background: var(--os-light-gray);
}

.tool-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--os-charcoal);
  margin-bottom: 0.75rem;
}

.tool-description {
  font-size: 0.9375rem;
  color: var(--os-warm-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  align-self: flex-start;
}

.tool-badge.available {
  background: rgba(122, 157, 122, 0.15);
  color: var(--os-sage-dark);
}

.tool-badge.coming-soon {
  background: var(--os-light-gray);
  color: var(--os-warm-gray);
}

.footer {
  background: white;
  border-top: 1px solid var(--os-light-gray);
  padding: 2rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-text {
  font-size: 0.875rem;
  color: var(--os-warm-gray);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: var(--os-sage-dark);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--os-sage);
}

  .hero-mode {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .hero {
    margin-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}


/* Methodology page styles (moved from methodology.html) */
.methodology-hero {
  background: linear-gradient(135deg, var(--dusty-grape), var(--dusty-taupe));
  color: white;
  padding: var(--space-12) var(--space-8);
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-8);
  text-align: center;
}

.methodology-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

.methodology-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

.content-section {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dusty-grape);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 3px solid var(--primary-200);
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
}

.content-section p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: var(--space-4);
}

.info-box {
  background: var(--primary-50);
  border-left: 4px solid var(--dusty-grape);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  margin: var(--space-6) 0;
}

.info-box-title {
  font-weight: 600;
  color: var(--dusty-grape);
  margin-bottom: var(--space-2);
  font-size: 1.125rem;
}

.process-steps {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.process-step {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.process-step:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--dusty-grape), var(--dusty-taupe));
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.step-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: var(--space-2);
}

.step-content p {
  margin-bottom: 0;
  color: var(--gray-600);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
  margin: var(--space-6) 0;
}

.feature-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: all var(--transition-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--dusty-grape);
}

.feature-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dusty-grape);
  margin-bottom: var(--space-3);
}

.feature-card-subtitle {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: var(--space-3);
}

.feature-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: var(--space-3);
}

.feature-card-example {
  background: var(--accent-50);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--gray-600);
  font-style: italic;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-5);
  margin: var(--space-6) 0;
}

.stat-card {
  background: linear-gradient(135deg, var(--primary-50), white);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dusty-grape);
  margin-bottom: var(--space-1);
}

.stat-subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.market-group-section {
  margin-top: var(--space-8);
}

.market-group {
  margin-bottom: var(--space-8);
}

.market-group-header {
  background: linear-gradient(135deg, var(--dusty-grape), var(--dusty-taupe));
  color: white;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  cursor: pointer;
  transition: all var(--transition-base);
}

.market-group-header:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.market-group-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.market-group-stats {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  font-size: 0.875rem;
  opacity: 0.95;
}

.market-group-stat {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.market-group-content {
  display: none;
  padding: var(--space-5);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.market-group-content.active {
  display: block;
}

.coefficient-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-4);
}

.coefficient-table th {
  background: var(--primary-100);
  color: var(--gray-800);
  font-weight: 600;
  text-align: left;
  padding: var(--space-3);
  border-bottom: 2px solid var(--primary-300);
}

.coefficient-table td {
  padding: var(--space-3);
  border-bottom: 1px solid var(--gray-200);
}

.coefficient-table tr:hover {
  background: white;
}

.quality-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.quality-excellent {
  background: var(--success-50);
  color: var(--success-700);
}

.quality-good {
  background: var(--primary-50);
  color: var(--primary-700);
}

.faq-section {
  margin-top: var(--space-6);
}

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: var(--space-3);
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.last-updated {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-200);
}

/* === Parcel Search Module === */
.hidden {
  display: none !important;
}

.portal-parcel-search {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}

.portal-parcel-search .parcel-search-card {
  border: 1px solid rgba(109, 114, 138, 0.18);
  border-radius: 32px;
  padding: 2.75rem 2.25rem;
  box-shadow: 0 40px 90px rgba(39, 47, 78, 0.15);
}

.portal-parcel-search .input {
  border: 1px solid rgba(138, 124, 255, 0.5);
  background: #f7f5ff;
  height: 60px;
  border-radius: 999px;
  font-size: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.portal-parcel-search .input:focus {
  border-color: #6f7bff;
  box-shadow: 0 0 0 6px rgba(111, 123, 255, 0.2);
}

.portal-parcel-search .selected-property {
  border-radius: 22px;
  border: 1px solid rgba(109, 174, 155, 0.4);
  background: linear-gradient(135deg, rgba(109, 174, 155, 0.15), rgba(255, 255, 255, 0.95));
}

.parcel-search-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.parcel-search-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--os-sage), var(--os-teal));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.parcel-search-kicker {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--os-warm-gray);
  margin-bottom: 0.25rem;
}

.parcel-search-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--os-charcoal);
  margin: 0 0 0.4rem;
}

.parcel-search-description {
  color: var(--os-warm-gray);
  line-height: 1.6;
  margin: 0;
}

.form-group {
  margin: 0;
}

.input-wrapper {
  position: relative;
}

.input {
  width: 100%;
  padding: 0.95rem 1.25rem;
  padding-left: 2.75rem;
  font-size: 1rem;
  border: 2px solid #dfe4e1;
  border-radius: 999px;
  background: #fbfbfb;
  color: var(--os-charcoal);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.input:focus {
  outline: none;
  border-color: var(--os-sage);
  box-shadow: 0 0 0 4px rgba(122, 157, 122, 0.22);
}

.input::placeholder {
  color: var(--os-warm-gray);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--os-warm-gray);
  opacity: 0.9;
}

.input-clear {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--os-light-gray);
  color: var(--os-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.input-wrapper:focus-within .input-clear,
.input-wrapper:hover .input-clear {
  opacity: 1;
}

.loading-indicator {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--os-warm-gray);
  font-size: 0.9rem;
}

.spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid #e2e4e1;
  border-right-color: var(--os-sage);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.search-results-container {
  margin-top: 1rem;
  border: 1px solid #e0e2df;
  border-radius: 16px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.search-results-container--visible {
  max-height: 480px;
  opacity: 1;
}

.autocomplete-result {
  display: block;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f0ef;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
  background: white;
  position: relative;
}

.autocomplete-result:hover {
  background: #f7faf8;
  transform: translateY(-1px);
}

.autocomplete-result:last-child {
  border-bottom: none;
}

.result-address {
  font-size: 1rem;
  font-weight: 600;
  color: var(--os-charcoal);
}

.result-parcel {
  font-size: 0.85rem;
  color: var(--os-sage-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.result-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--os-sage);
  font-weight: 600;
}

.result-cta svg {
  width: 0.9rem;
  height: 0.9rem;
}

.selected-property {
  margin-top: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(122, 157, 122, 0.4);
  background: linear-gradient(135deg, rgba(122, 157, 122, 0.15), rgba(255, 255, 255, 0.9));
  display: flex;
  align-items: center;
  gap: 1rem;
}

.selected-property__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--os-sage-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.selected-property__content {
  flex: 1;
}

.selected-property__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #4f7a6a;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.selected-property__address {
  font-size: 1rem;
  font-weight: 600;
  color: var(--os-charcoal);
}

.selected-property__details {
  font-size: 0.85rem;
  color: var(--os-warm-gray);
}

.selected-property__change {
  border: none;
  background: white;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  color: var(--os-charcoal);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.selected-property__change:hover {
  background: #f3f5f3;
  transform: translateY(-1px);
}

.parcel-tools-panel {
  margin-top: 1.75rem;
  border: 1px solid #e4e7e3;
  border-radius: 18px;
  background: #fcfdfc;
  padding: 1.25rem 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(90, 125, 90, 0.08);
}

.parcel-tools-panel__title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--os-warm-gray);
  margin-bottom: 0.35rem;
}

.parcel-tools-panel__parcel {
  font-size: 1rem;
  font-weight: 600;
  color: var(--os-charcoal);
  margin-bottom: 0.9rem;
}

.parcel-tools-panel__items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.parcel-tools-panel__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: white;
  border: 1px solid #e0e3df;
  text-decoration: none;
  color: inherit;
  transition: border 0.2s ease, transform 0.2s ease;
}

.parcel-tools-panel__item:hover {
  border-color: var(--os-sage);
  transform: translateY(-1px);
}

.parcel-tools-panel__label {
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  color: var(--os-charcoal);
}

.parcel-tools-panel__cta {
  font-size: 0.8rem;
  color: var(--os-sage-dark);
  font-weight: 600;
}

.parcel-tools-panel__item.hidden {
  display: none;
}

@media (min-width: 640px) {
  .parcel-tools-panel__items {
    flex-direction: row;
  }
}
