.comm-pricing-v2 {
  background: #fdfdfd;
  padding-bottom: 5rem;
  font-family: 'Inter', sans-serif;
}

.max-1400 {
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 0 2rem;
}

main#main-content {
  max-width: 100% !important;
}

/* Hero */
.comm-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(to bottom, #f0f7ff, #ffffff);
}

.hero-text-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.premium-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #e0f2fe;
  color: #0369a1;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.comm-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.gradient-blue {
  background: linear-gradient(135deg, #2563eb, #0d9488);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
}

/* Info Bar */
.info-bar-wrapper {
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.info-bar {
  background: white;
  border-radius: 16px;
  box-shadow: none;
  display: flex;
  padding: 1.25rem 2.5rem;
  gap: 2rem;
  border: 1px solid #f1f5f9;
}

.info-item {
  flex: 1;
  display: flex;
  align-items: center; gap: 1.25rem;
}

.info-item i, .info-item svg {
  width: 24px;
  height: 24px;
  color: #2563eb;
}

.info-content strong {
  display: block;
  color: #1e293b;
  font-size: 1rem;
}

.info-content span {
  color: #64748b;
  font-size: 0.85rem;
}

.info-divider {
  width: 1px;
  background: #f1f5f9;
}

/* Service Selector - Compact */
.service-selector-section {
  padding: 2rem 0 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-shadow: none;
}

.service-card:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
}

.service-card.active {
  border-color: #2563eb;
  background: #f0f7ff;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #2563eb;
  transition: 0.3s;
}

.card-icon i, .card-icon svg {
  width: 22px;
  height: 22px;
}

.service-card.active .card-icon {
  background: #2563eb;
  color: white;
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0;
  color: #1e293b;
}

/* Pricing Content */
.pricing-content-hub {
  padding: 2rem 0 4rem;
}

.pricing-panel {
  display: none;
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 32px;
  padding: 4rem;
  box-shadow: none;
}

.pricing-panel.active {
  display: block;
  animation: resPricingFadeIn 0.5s ease;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f1f5f9;
}

.header-main h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.tab-toggle {
  display: flex;
  background: #f1f5f9;
  padding: 0.4rem;
  border-radius: 14px;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #64748b;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: white;
  color: #2563eb;
  box-shadow: none;
}

/* Table Design */
.comm-table-wrapper {
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}

.comm-table-wrapper::-webkit-scrollbar {
  width: 6px;
}

.comm-table-wrapper::-webkit-scrollbar-thumb {
  background-color: #e2e8f0;
  border-radius: 10px;
}

.comm-table {
  width: 100%;
  border-collapse: collapse;
}

.comm-table th {
  position: sticky;
  top: 0;
  background: #f1f5f9;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  color: #1e293b;
  z-index: 5;
}

.comm-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}

.comm-table tr:hover td {
  background: #f8fafc;
}

.price-val {
  font-weight: 800;
  color: #2563eb;
  font-size: 1.1rem;
}

/* About Service */
.tab-content { display: none; }
.tab-content.active { display: block; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-card {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 24px;
}

.about-card i, .about-card svg {
  color: #2563eb;
  margin-bottom: 1.5rem;
  width: 32px;
  height: 32px;
}

.about-card h4 {
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.about-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Quote Preview */
.quote-preview-section {
  padding: 3rem 0;
}

.quote-preview-card {
  background: #1e293b;
  color: white;
  border-radius: 32px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.quote-preview-card h3 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.quote-preview-card p {
  font-size: 1.15rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Pricing Approach - REDESIGNED */
.approach-section {
  padding: 8rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.approach-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.approach-section .solutions-section-header {
  display: block;
  text-align: left;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 4rem;
}

.approach-section h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.approach-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #2563eb;
  border-radius: 2px;
}

.approach-section .text-muted {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 1.5rem 0 0 0;
  text-align: left;
  line-height: 1.6;
  color: #64748b;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

.approach-pillar {
  background: #f8fafc;
  border-radius: 32px;
  padding: 3.5rem 2.5rem;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.approach-pillar:hover {
  border-color: #2563eb;
  background: white;
}

.approach-header {
  margin-bottom: 2rem;
  text-align: center;
}

.approach-pillar-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  margin: 0 auto 1.5rem;
  border: 1px solid #f1f5f9;
}

.approach-pillar h4 {
  font-weight: 900;
  font-size: 1.4rem;
  color: #1e293b;
  line-height: 1.3;
}

.approach-pillar p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.approach-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.approach-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  border-top: 1px solid rgba(0,0,0,0.03);
}

.approach-checklist li i {
  color: #10b981;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

/* Panel CTA */
.panel-cta {
  margin-top: 3rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #f1f5f9;
}

.order-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: none;
  width: auto;
  max-width: none;
  text-transform: none;
  letter-spacing: 0;
}

.order-btn:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

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

/* Responsive */
@media (max-width: 1200px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-pillar { padding: 2.5rem; }
}

@media (max-width: 992px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .info-bar { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .info-divider { display: none; }
  .pricing-panel { padding: 2.5rem 1.5rem; }
  .panel-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .service-grid { grid-template-columns: 1fr; }
  .max-1400 { padding: 0 1rem; }
  .hero-text-center h1 { font-size: 2.25rem; }
  .quote-preview-card { padding: 2rem 1.5rem; }
  .order-btn { width: 100%; }
}
