/* Local SEO Packages Page */

:root {
  --pkg-green: #22c55e;
  --pkg-green-dark: #16a34a;
  --pkg-green-light: #f0fdf4;
  --pkg-green-border: #bbf7d0;
}

/* Hero feature grid */
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.hero-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hero-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feature strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 2px;
}

.hero-feature span {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.45;
}

/* Rankings dashboard mockup */
.rankings-mockup {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.rankings-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
}

.rankings-map {
  height: 100px;
  background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 100%);
  position: relative;
}

.rankings-map::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--blue-600);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  top: 40%;
  left: 45%;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.rankings-stats {
  padding: 16px 20px;
  display: grid;
  gap: 10px;
}

.rank-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.rank-stat-label {
  color: var(--gray-600);
}

.rank-stat-value {
  font-weight: 700;
  color: var(--pkg-green-dark);
}

.rankings-chart {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--gray-100);
}

.rankings-chart-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rankings-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 3px 8px;
  border-radius: 20px;
}

.rankings-chart svg {
  width: 100%;
  height: 60px;
}

/* Pricing section background */
.section-pricing {
  background: var(--gray-50);
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--popular {
  border: 2px solid var(--pkg-green);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.18);
  transform: scale(1.04);
  z-index: 1;
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--pkg-green);
  color: var(--white);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px;
  text-transform: uppercase;
}

.pricing-card-head {
  padding: 28px 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-card--popular .pricing-card-head {
  background: var(--pkg-green-light);
  padding-top: 40px;
}

.pricing-card-head h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-600);
  margin-bottom: 6px;
}

.pricing-card--popular .pricing-card-head h3 {
  color: var(--pkg-green-dark);
}

.pricing-card-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.45;
}

.pricing-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--blue-600);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-400);
}

.pricing-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-includes-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.pricing-features {
  margin-bottom: 20px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 12px;
  line-height: 1.45;
}

.feat-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-check--green {
  background: var(--pkg-green-light);
  color: var(--pkg-green-dark);
}

.feat-check svg {
  display: block;
}

.pricing-focus {
  font-size: 13px;
  color: var(--gray-500);
  padding: 12px;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-bottom: 20px;
  line-height: 1.5;
}

.pricing-focus strong {
  color: var(--navy-900);
}

.pricing-card .btn {
  width: 100%;
}

.btn-green {
  background: var(--pkg-green);
  color: var(--white);
  border-color: var(--pkg-green);
}

.btn-green:hover {
  background: var(--pkg-green-dark);
  border-color: var(--pkg-green-dark);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.faq-section .overline {
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

.cta-banner {
  border-radius: var(--radius-lg);
  margin: 0 24px 48px;
  max-width: calc(var(--container) + 48px);
  margin-left: auto;
  margin-right: auto;
}

.custom-pricing-bar {
  margin-top: 32px;
  padding: 14px 20px;
  background: var(--blue-50);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  text-align: center;
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.custom-pricing-bar a {
  font-weight: 600;
}

/* Comparison table */
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}

.compare-table thead th {
  padding: 16px 20px;
  font-weight: 700;
  text-align: center;
  background: var(--blue-600);
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.15);
}

.compare-table thead th:first-child {
  text-align: left;
  background: var(--navy-900);
}

.compare-table thead th.col-growth {
  background: var(--pkg-green-dark);
}

.compare-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
  vertical-align: middle;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy-900);
  background: var(--white);
}

.compare-table tbody tr:nth-child(even) td:first-child {
  background: var(--gray-50);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr.row-price td {
  background: var(--blue-50);
  border-top: 2px solid var(--gray-200);
  padding-top: 18px;
  padding-bottom: 18px;
}

.compare-table tbody tr.row-price td.col-growth {
  background: #ecfdf5;
}

.compare-table .col-growth {
  background: var(--pkg-green-light);
}

/* Comparison cell components */
.cell-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
}

.cell-yes--green {
  background: #dcfce7;
  color: var(--pkg-green-dark);
}

.cell-no {
  display: inline-block;
  color: var(--gray-300);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  user-select: none;
}

.cell-val {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--gray-100);
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.cell-val--green {
  background: #dcfce7;
  color: var(--pkg-green-dark);
}

.cell-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-600);
  letter-spacing: -0.02em;
}

.cell-price--green {
  color: var(--pkg-green-dark);
}

/* Why choose grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.why-item-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.why-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.why-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* Package detail sections – card layout */
.package-detail-section {
  padding: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.package-detail-section--growth {
  border-color: var(--pkg-green-border);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.12);
}

.package-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.package-detail-section--foundation .package-detail-header {
  border-top: 4px solid var(--blue-600);
}

.package-detail-section--growth .package-detail-header {
  border-top: 4px solid var(--pkg-green);
  background: var(--pkg-green-light);
}

.package-detail-section--authority .package-detail-header {
  border-top: 4px solid var(--navy-900);
}

.package-detail-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--pkg-green);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.package-detail-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.package-detail-tag {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 0;
}

.package-detail-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-600);
  margin-bottom: 0;
  white-space: nowrap;
  letter-spacing: -0.03em;
  line-height: 1;
}

.package-detail-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-400);
}

.package-detail-section--growth .package-detail-price {
  color: var(--pkg-green-dark);
}

.package-detail-intro {
  padding: 24px 32px 0;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 0;
}

.package-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 24px 32px;
}

.package-detail-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.package-detail-section--growth .package-detail-col h4 {
  color: var(--pkg-green-dark);
}

.detail-check-list {
  margin: 0;
}

.detail-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.45;
}

.detail-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%232563eb' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.detail-check-list--green li::before {
  background-color: var(--pkg-green-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%2316a34a' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.package-detail-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 32px 28px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.package-detail-focus {
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.55;
}

.package-detail-focus strong {
  color: var(--navy-900);
}

.package-detail-section p:not(.package-detail-tag):not(.package-detail-price):not(.package-detail-intro):not(.package-detail-focus) {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.65;
}

.package-detail-section ul:not(.detail-check-list) {
  margin: 12px 0 16px;
}

.package-detail-section ul:not(.detail-check-list) li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--gray-600);
}

.package-detail-section ul:not(.detail-check-list) li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue-600);
  font-weight: 700;
}

.recommendation-box {
  background: var(--blue-50);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.recommendation-box h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.recommendation-box p {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.included-breakdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.included-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.included-item:hover {
  border-color: #bfdbfe;
  box-shadow: var(--shadow-md);
}

.included-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
  padding-left: 36px;
  position: relative;
}

.included-item h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 2px solid var(--blue-600);
}

.included-item p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
  line-height: 1.6;
}

.prose-block h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.prose-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 28px 0 12px;
}

.prose-block p {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.65;
}

.prose-block ul {
  margin: 12px 0 16px;
}

.prose-block ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--gray-600);
}

.prose-block ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue-600);
  font-weight: 700;
}

/* Bottom SEO content – structured layouts */
.section--gray {
  background: var(--gray-50);
}

.factor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.factor-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.factor-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.factor-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.factor-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

.location-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.location-type-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.location-type-card--highlight {
  border-color: var(--pkg-green-border);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.1);
}

.location-type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.location-type-badge--blue {
  background: var(--blue-50);
  color: var(--blue-600);
}

.location-type-badge--green {
  background: var(--pkg-green-light);
  color: var(--pkg-green-dark);
}

.location-type-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 14px;
}

.location-type-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 12px;
}

.location-type-card .btn {
  margin-top: 8px;
}

.warning-panel {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.warning-panel p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
  margin: 0;
}

.failure-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.failure-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.failure-step-num {
  width: 36px;
  height: 36px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
}

.failure-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.failure-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

.closing-note {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.info-panels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.info-panel-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.info-panel h2 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.info-panel p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 12px;
}

.info-panel-note {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-top: 8px;
  margin-bottom: 0;
}

.timeline-factors {
  margin: 16px 0;
}

.timeline-factors li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray-600);
}

.timeline-factors li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-600);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.choose-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.choose-card--highlight {
  border-color: var(--blue-600);
  background: var(--blue-50);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
}

.choose-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.35;
}

.choose-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

.choose-footer {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.choose-footer p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.choose-footer strong {
  color: var(--navy-900);
}

/* Page-scoped overrides */
.page-packages .process-section {
  background: var(--white);
}

.page-packages .section-compare {
  background: var(--white);
}

.page-packages .section-why {
  background: var(--blue-50);
}

.page-packages .faq-section {
  background: var(--white);
}

/* Pricing card buttons – mockup style */
.btn-package {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 14px 20px;
}

.pricing-card--popular {
  align-self: center;
}

.pricing-card--popular .pricing-price {
  color: var(--pkg-green-dark);
}

/* Comparison table */
.compare-table thead th.col-growth .th-badge {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.95;
  margin-bottom: 4px;
}

.compare-table tbody tr:nth-child(even) td {
  background: var(--gray-50);
}

.compare-table tbody tr:nth-child(even) td.col-growth {
  background: #ecfdf5;
}

.compare-table tbody td.col-growth {
  border-left: 2px solid var(--pkg-green-border);
  border-right: 2px solid var(--pkg-green-border);
}

.compare-table thead th.col-growth {
  border-left: 2px solid rgba(255,255,255,0.3);
  border-right: 2px solid rgba(255,255,255,0.3);
}

/* SEO deep content – below fold, keeps copy for SEO without breaking layout */
.seo-deep-content {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.seo-deep-content .section-header h2 {
  font-size: clamp(22px, 2.5vw, 28px);
}

/* Process 5 steps */
.process-steps--5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
  .process-steps--5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card--popular {
    transform: none;
    align-self: stretch;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-breakdown {
    grid-template-columns: 1fr;
  }

  .factor-grid {
    grid-template-columns: 1fr 1fr;
  }

  .factor-grid .factor-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: none;
  }

  .location-types-grid,
  .info-panels-grid,
  .failure-steps {
    grid-template-columns: 1fr;
  }

  .choose-grid {
    grid-template-columns: 1fr 1fr;
  }

  .package-detail-grid {
    grid-template-columns: 1fr;
  }

  .package-detail-header {
    flex-direction: column;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-features {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-steps--5 {
    grid-template-columns: 1fr 1fr;
  }

  .factor-grid,
  .choose-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .process-steps--5 {
    grid-template-columns: 1fr;
  }
}
