@charset "UTF-8";

/* ============================================
   Pricing Page Styles
   Design Tokens: 기존 사이트 톤 유지
   - Primary: #132938 (dark navy)
   - Accent: #18B5D9 (cyan blue)
   - Green CTA: #5ECB70
   - Text: #333
   - Font: base, base-b, base-eb
   ============================================ */

/* Global box-sizing for pricing page */
#main *,
#main *::before,
#main *::after {
  box-sizing: border-box;
}

/* Hero Section */
#pricing-hero {
  position: relative;
  padding-top: 60px; /* header height */
  background-image: url(../img/c_visual_bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
#pricing-hero .hero-inner {
  position: relative;
  width: 1100px;
  margin: 0 auto;
  padding: 80px 0 70px;
}
#pricing-hero h1 {
  font-family: "base-eb";
  font-size: 2.8em;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
#pricing-hero .hero-sub {
  margin-top: 20px;
  font-size: 1.3em;
  line-height: 1.6;
  opacity: 0.85;
  font-family: "base";
}
#pricing-hero .hero-badge {
  display: inline-block;
  margin-top: 25px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-size: 1.05em;
  letter-spacing: 0.5px;
}
#pricing-hero .hero-badge i {
  color: #5ECB70;
  margin-right: 6px;
}

/* ============================================
   Service Overview Section
   ============================================ */
#service-overview {
  background: #fff;
}
#service-overview .section-inner {
  padding: 80px 0 70px;
}
.overview-title {
  text-align: center;
  margin-bottom: 50px;
}
.overview-title h2 {
  font-family: "base-eb";
  font-size: 2.5em;
  color: #1a1a1a;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.overview-title p {
  margin-top: 16px;
  color: #666;
  font-size: 1.15em;
  line-height: 1.7;
}

/* Overview Cards */
.overview-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.overview-card {
  flex: 1;
  max-width: 350px;
  background: #f8f9fb;
  border-radius: 16px;
  padding: 36px 28px 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.overview-icon {
  margin-bottom: 16px;
}
.overview-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.overview-card-name {
  font-family: "base-eb";
  font-size: 1.5em;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.overview-card-name.assess { color: #4a6cf7; }
.overview-card-name.analytics { color: #18B5D9; }
.overview-card-name.action { color: #f5a623; }
.overview-card-sub {
  display: block;
  font-family: "base-b";
  font-size: 1.08em;
  color: #333;
  margin-bottom: 12px;
}
.overview-card-desc {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}
.overview-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.overview-card ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.98em;
  color: #444;
  line-height: 1.8;
}
.overview-card ul li::before {
  content: '\f00c';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #5ECB70;
  font-size: 0.75em;
  top: 4px;
}

/* Plans Section */
#pricing-plans {
  background: #f5f7fa;
  padding: 0;
}
#pricing-plans .section-inner {
  padding: 70px 0 80px;
}
#pricing-plans .plans-title {
  text-align: center;
  margin-bottom: 50px;
  padding-right: calc(270px + 50px); /* offset to center over G-Series 3 cards */
  position: relative;
  padding-bottom: 10px;
}
#pricing-plans .plans-title h2 {
  font-family: "base-eb";
  font-size: 2.1em;
  color: #1a2c5c;
}
#pricing-plans .plans-title .plans-label {
  margin-top: 8px;
  color: #18B5D9;
  font-family: "base-b";
  font-size: 1.05em;
  letter-spacing: 1px;
}
#pricing-plans .plans-title p {
  margin-top: 12px;
  color: #666;
  font-size: 1.15em;
  line-height: 1.5;
}

/* G-Series bracket arms ┌  ┐ */
#pricing-plans .plans-title::before,
#pricing-plans .plans-title::after {
  content: '';
  position: absolute;
  top: 46px;  /* "Service Module" 라인 높이 */
  width: 120px;
  bottom: -40px;
  pointer-events: none;
}
/* Left arm ┌ — vertical drops at Guide card center */
#pricing-plans .plans-title::before {
  left: 11%;
  border-top: 2px solid #18B5D9;
  border-left: 2px solid #18B5D9;
  border-radius: 6px 0 0 0;
}
/* Right arm ┐ — vertical drops at Giant card center */
#pricing-plans .plans-title::after {
  right: 40%;
  border-top: 2px solid #18B5D9;
  border-right: 2px solid #18B5D9;
  border-radius: 0 6px 0 0;
}

/* Card Grid */
.plan-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.plan-card {
  flex: 1;
  max-width: 270px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 32px 22px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Popular Card Highlight */
.plan-card.popular {
  border: 2px solid #18B5D9;
  box-shadow: 0 8px 30px rgba(24, 181, 217, 0.15);
}
.plan-card .popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #18B5D9, #1a9ab8);
  color: #fff;
  font-family: "base-b";
  font-size: 0.88em;
  padding: 5px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Card Header */
.plan-card .card-step {
  font-size: 0.88em;
  color: #18B5D9;
  font-family: "base-b";
  letter-spacing: 1px;
  text-transform: uppercase;
}
.plan-card .card-name {
  font-family: "base-eb";
  font-size: 1.7em;
  color: #1a2c5c;
  margin-top: 6px;
}
.plan-card .card-tagline {
  margin-top: 6px;
  font-family: "base";
  font-size: 0.88em;
  color: #18B5D9;
  line-height: 1.4;
}
.plan-card .card-price {
  margin-top: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef1f5;
}
.plan-card .card-price .amount {
  font-family: "base-eb";
  font-size: 1.8em;
  color: #132938;
}
.plan-card .card-price .unit {
  font-size: 0.95em;
  color: #888;
  margin-left: 2px;
}

/* Card Subtitle / Description */
.plan-card .card-subtitle {
  margin-top: 14px;
  font-family: "base-b";
  font-size: 1.02em;
  color: #2a5080;
  line-height: 1.45;
}
.plan-card .card-desc {
  margin-top: 8px;
  font-size: 0.98em;
  color: #666;
  line-height: 1.5;
}

/* Card Sections: Contents / Customer */
.plan-card .card-section {
  margin-top: 18px;
}
.plan-card .card-section-title {
  font-family: "base-b";
  font-size: 0.85em;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.plan-card .card-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-card .card-section li {
  position: relative;
  padding-left: 18px;
  font-size: 0.98em;
  color: #444;
  line-height: 1.7;
}
.plan-card .card-section li::before {
  content: '\f00c';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #5ECB70;
  font-size: 0.75em;
  top: 4px;
}
.plan-card .card-section.customer li::before {
  content: '\f007';
  color: #18B5D9;
}

/* CTA Button */
.plan-card .card-cta {
  margin-top: auto;
  padding-top: 20px;
}
.plan-card .card-cta a {
  display: block;
  text-align: center;
  padding: 14px 0;
  border-radius: 8px;
  font-family: "base-b";
  font-size: 1.05em;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.plan-card .card-cta a.btn-outline {
  border: 1.5px solid #1a2c5c;
  color: #1a2c5c;
  background: transparent;
}
.plan-card .card-cta a.btn-outline:hover {
  background: #1a2c5c;
  color: #fff;
}
.plan-card .card-cta a.btn-primary {
  background: linear-gradient(135deg, #18B5D9, #1a9ab8);
  color: #fff;
  border: none;
}
.plan-card .card-cta a.btn-primary:hover {
  background: linear-gradient(135deg, #1a9ab8, #157a96);
  box-shadow: 0 4px 15px rgba(24, 181, 217, 0.3);
}
.plan-card .card-cta a.btn-green {
  background: #5ECB70;
  color: #fff;
  border: none;
}
.plan-card .card-cta a.btn-green:hover {
  background: #4fb862;
  box-shadow: 0 4px 15px rgba(94, 203, 112, 0.3);
}

/* ============================================
   Plan Divider (between G-Series and Custom)
   ============================================ */
.plan-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  padding: 40px 0;
}
.plan-divider .divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #cfd8dc, transparent);
}
.plan-divider .divider-label {
  font-family: "base-b";
  font-size: 1em;
  color: #90a4ae;
  padding: 10px 0;
}

/* ============================================
   Project & Custom (Visual Distinction)
   ============================================ */
.plan-card.custom {
  background: #fff;
  border: 2px solid #f5a623;
}
.plan-card.custom .card-step {
  color: #f5a623 !important;
}
.plan-card.custom .card-tagline {
  color: #c88a1a;
}
.plan-card.custom .card-name {
  color: #1a2c5c;
}
.plan-card.custom .card-subtitle {
  color: #2a5080;
}
.plan-card.custom .btn-outline {
  border-color: #f5a623 !important;
  color: #d4901a !important;
}
.plan-card.custom .btn-outline:hover {
  background: #fef8ed !important;
}

/* ============================================
   Comparison Table
   ============================================ */
#pricing-compare {
  background: #fff;
}
#pricing-compare .section-inner {
  padding: 70px 0 80px;
}
.compare-title {
  text-align: center;
  margin-bottom: 40px;
}
.compare-title h2 {
  font-family: "base-eb";
  font-size: 2.1em;
  color: #1a2c5c;
}
.compare-title p {
  margin-top: 10px;
  color: #666;
  font-size: 1.15em;
}

/* Table Wrapper (mobile scroll) */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.compare-table-wrap table,
.compare-table-wrap th,
.compare-table-wrap td {
  border: 0;
}

/* Table */
.compare-table {
  width: 100%;
  min-width: 750px;
  border-collapse: collapse;
  border:0;
}
.compare-table thead th {
  background: #132938;
  color: #fff;
  font-family: "base-b";
  font-size: 1.05em;
  padding: 16px 18px;
  text-align: center;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 3;
}
.compare-table thead th:last-child {
  border-right: none;
}
.compare-table thead th.col-category {
  width: 90px;
  text-align: center;
}
.compare-table thead th.col-feature {
  text-align: center;
  min-width: 200px;
}
.compare-table thead th.col-popular {
  background: #18B5D9;
}
.compare-table thead tr th:last-child {
  background: #aaa;
}

/* Table Body */
.compare-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid #f0f2f5;
  text-align: center;
  vertical-align: middle;
  color: #444;
}
.compare-table tbody .category-row .cat-label+td,
.compare-table tbody :not(.category-row, .pricing-row) td:first-child {
  text-align: left;
  color: #333;
}
.compare-table tbody td.col-popular {
  background: rgba(24, 181, 217, 0.04);
}
.compare-table tbody td.custom-col {
  color: #aaa;
}

/* Category Labels */
.compare-table .cat-label {
  vertical-align: middle;
  text-align: center;
  background: #fafbfc;
  border-right: 1px solid #f0f2f5;
}
.cat-badge {
  display: inline-block;
  font-family: "base-b";
  font-size: 0.9em;
  padding: 4px 12px;
  border-radius: 15px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.cat-scale { background: #e8edf5; color: #2a5080; }
.cat-site { background: #e6f7f0; color: #1a8a5c; }
.cat-assess { background: #e8f4fd; color: #1a6ca8; }
.cat-analysis { background: #f0e8fd; color: #6a3ab0; }
.cat-action { background: #fdf2e8; color: #b06a2a; }

/* Category Row */
.compare-table .category-row {
  border-top: 2px solid #e2e8f0;
}

/* Check Icon */
.compare-table .check-icon {
  color: #5ECB70;
  font-size: 1.1em;
}

/* Pricing Row */
.compare-table .pricing-row td {
  background: #f5f7fa;
  border-top: 2px solid #e2e8f0;
  padding: 16px;
  font-family: "base-b";
  color: #1a2c5c;
  font-size: 1em;
}
.compare-table .pricing-row td.col-popular {
  background: rgba(24, 181, 217, 0.08);
  color: #18B5D9;
}

/* Mobile sticky first columns + thead */
@media screen and (max-width: 767px) {
  /* Category label: sticky at left:0 (only exists in .category-row, spans via rowspan) */
  .compare-table .cat-label {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #fafbfc;
  }
  /* Feature name in category-row: td:nth-child(2) because cat-label is td:nth-child(1) */
  .compare-table .category-row td:nth-child(2) {
    position: sticky;
    left: 70px;
    z-index: 1;
    background: #fff;
  }
  /* Feature name in non-category rows: td:first-child because cat-label rowspan removes it from DOM */
  .compare-table tbody tr:not(.category-row):not(.pricing-row) td:first-child {
    position: sticky;
    left: 70px;
    z-index: 1;
    background: #fff;
  }
  /* Pricing row */
  .compare-table .pricing-row td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #f5f7fa;
  }
  /* Adjust category column width for tighter mobile layout */
  .compare-table thead th.col-category {
    position: sticky;
    left: 0;
    z-index: 4;
    width: 70px;
    min-width: 70px;
  }
  .compare-table thead th.col-feature {
    position: sticky;
    left: 70px;
    z-index: 4;
    width: 160px;
    min-width: 160px;
    white-space: normal;
    word-break: keep-all;
  }
  /* tbody feature cells also constrained */
  .compare-table tbody .category-row td:nth-child(2),
  .compare-table tbody tr:not(.category-row):not(.pricing-row) td:first-child {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
    word-break: keep-all;
  }
  .compare-table .cat-label {
    width: 70px;
    min-width: 70px;
  }
}

/* ============================================
   Customer Case Studies
   ============================================ */
#pricing-cases {
  background: #f5f7fa;
}
#pricing-cases .section-inner {
  padding: 70px 0 80px;
}
.cases-title {
  text-align: center;
  margin-bottom: 50px;
}
.cases-title h2 {
  font-family: "base-eb";
  font-size: 2.1em;
  color: #1a2c5c;
}
.cases-title p {
  margin-top: 10px;
  color: #666;
  font-size: 1.15em;
}

/* Cases Grid */
.cases-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.case-card {
  flex: 1;
  max-width: 360px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 30px 26px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.case-badge {
  display: inline-block;
  font-family: "base-b";
  font-size: 0.88em;
  padding: 5px 16px;
  border-radius: 20px;
  background: #e8edf5;
  color: #2a5080;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.case-badge.popular {
  background: linear-gradient(135deg, #18B5D9, #1a9ab8);
  color: #fff;
}

/* Phase Items */
.case-phase {
  display: flex;
  flex-direction: column;
}
.phase-item {
  padding: 14px 16px;
  border-radius: 10px;
  background: #fafbfc;
}
.phase-item.before {
  border-left: 3px solid #e74c3c;
}
.phase-item.after {
  border-left: 3px solid #18B5D9;
}
.phase-item.result {
  border-left: 3px solid #5ECB70;
}
.phase-label {
  display: block;
  font-family: "base-b";
  font-size: 0.85em;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.phase-item.before .phase-label { color: #e74c3c; }
.phase-item.after .phase-label { color: #18B5D9; }
.phase-item.result .phase-label { color: #5ECB70; }
.phase-label i {
  margin-right: 4px;
}
.phase-item p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.phase-arrow {
  text-align: center;
  padding: 6px 0;
  color: #ccc;
  font-size: 0.9em;
}

/* Cases Logos */
.cases-logos {
  margin-top: 50px;
  text-align: center;
}
.cases-logos ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 16px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cases-logos ul:last-child {
  margin-bottom: 0;
}
.cases-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 70px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 20px;
}
.cases-logos li img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.cases-logos li:hover img {
  opacity: 1;
}

/* ============================================
   Technical Differentiators
   ============================================ */
#pricing-tech {
  background: #fff;
}
#pricing-tech .section-inner {
  padding: 70px 0 80px;
}
.tech-title {
  text-align: center;
  margin-bottom: 50px;
}
.tech-title h2 {
  font-family: "base-eb";
  font-size: 2.1em;
  color: #1a2c5c;
}
.tech-title p {
  margin-top: 10px;
  color: #666;
  font-size: 1.15em;
}

/* Tech Grid */
.tech-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}
.tech-card {
  flex: 1;
  max-width: 350px;
  text-align: center;
  padding: 36px 28px;
  border-radius: 14px;
  background: #f8f9fb;
  transition: transform 0.25s, box-shadow 0.25s;
}
.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.tech-icon {
  font-size: 2.4em;
  color: #18B5D9;
  margin-bottom: 16px;
}
.tech-card h3 {
  font-family: "base-eb";
  font-size: 1.2em;
  color: #1a2c5c;
  margin-bottom: 10px;
}
.tech-card p {
  font-size: 0.98em;
  color: #555;
  line-height: 1.6;
}

/* Tech Highlight */
.tech-highlight {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 32px;
  background: linear-gradient(135deg, #132938 0%, #1a3a5c 100%);
  border-radius: 14px;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.tech-highlight > i {
  font-size: 1.6em;
  color: #f5a623;
  flex-shrink: 0;
  margin-top: 2px;
}
.tech-highlight p {
  font-family: "base-eb";
  font-size: 1.2em;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

/* ============================================
   Final CTA Section
   ============================================ */
#pricing-final-cta {
  background: #f5f7fa;
  text-align: center;
}
#pricing-final-cta .section-inner {
  padding: 60px 0 70px;
}
#pricing-final-cta h2 {
  font-family: "base-eb";
  font-size: 1.8em;
  color: #1a2c5c;
}
#pricing-final-cta p {
  margin-top: 12px;
  color: #666;
  font-size: 1.1em;
}
.final-cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.final-cta-buttons .cta-primary {
  display: inline-block;
  padding: 14px 36px;
  background: #5ECB70;
  color: #fff;
  font-family: "base-b";
  font-size: 1.05em;
  border-radius: 8px;
  transition: all 0.2s;
}
.final-cta-buttons .cta-primary:hover {
  background: #4fb862;
  box-shadow: 0 6px 20px rgba(94, 203, 112, 0.35);
}
.final-cta-buttons .cta-primary i {
  margin-left: 6px;
}
.final-cta-buttons .cta-secondary {
  display: inline-block;
  padding: 14px 36px;
  border: 1.5px solid #1a2c5c;
  color: #1a2c5c;
  font-family: "base-b";
  font-size: 1.05em;
  border-radius: 8px;
  transition: all 0.2s;
}
.final-cta-buttons .cta-secondary:hover {
  background: #1a2c5c;
  color: #fff;
}

/* Flexible Pricing Banner */
#pricing-banner {
  background: linear-gradient(135deg, #132938 0%, #1a3a5c 100%);
  color: #fff;
  text-align: center;
}
#pricing-banner .section-inner {
  padding: 60px 0;
}
#pricing-banner .banner-icon {
  font-size: 2.5em;
  color: #18B5D9;
  margin-bottom: 15px;
}
#pricing-banner h3 {
  font-family: "base-eb";
  font-size: 1.8em;
  line-height: 1.4;
}
#pricing-banner p {
  margin-top: 15px;
  font-size: 1.15em;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#pricing-banner .banner-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 44px;
  background: #5ECB70;
  color: #fff;
  font-family: "base-b";
  font-size: 1.15em;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
#pricing-banner .banner-cta:hover {
  background: #4fb862;
  box-shadow: 0 6px 20px rgba(94, 203, 112, 0.35);
}
#pricing-banner .banner-cta i {
  margin-left: 8px;
}

/* ============================================
   Responsive - Tablet
   ============================================ */
@media screen and (max-width: 1100px) {
  #pricing-hero .hero-inner {
    width: 90%;
  }
  #service-overview .section-inner {
    width: 90%;
  }
  .overview-cards {
    flex-wrap: wrap;
    max-width: 740px;
    margin: 0 auto;
  }
  .overview-card {
    flex: 0 0 calc(50% - 12px);
    max-width: none;
  }
  .overview-card:last-child {
    flex: 0 0 100%;
    max-width: 350px;
  }
  .plan-cards {
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
  }
  #pricing-plans .plans-title::before,
  #pricing-plans .plans-title::after {
    display: none;
  }
  .plan-card {
    max-width: none;
    flex: 0 0 calc(50% - 10px);
  }
  .cases-grid {
    flex-wrap: wrap;
    max-width: 740px;
    margin: 0 auto;
  }
  .case-card {
    flex: 0 0 calc(50% - 12px);
    max-width: none;
  }
  .case-card:last-child {
    flex: 0 0 100%;
    max-width: 360px;
  }
  .tech-grid {
    flex-wrap: wrap;
    max-width: 740px;
    margin: 0 auto 40px;
  }
  .tech-card {
    flex: 0 0 calc(50% - 12px);
    max-width: none;
  }
  .tech-card:last-child {
    flex: 0 0 100%;
    max-width: 350px;
  }
  .tech-highlight {
    width: 90%;
    margin: 0 auto;
  }
}

/* ============================================
   Responsive - Mobile
   ============================================ */
@media screen and (max-width: 767px) {
  /* Reset font-size for pricing content (common.css sets body to 10px on mobile) */
  #main {
    font-size: 14px;
  }

  /* Hero */
  #pricing-hero {
    padding-top: 50px;
  }
  #pricing-hero .hero-inner {
    width: 90%;
    padding: 40px 0;
  }
  #pricing-hero h1 {
    font-size: 1.8em;
    line-height: 1.35;
  }
  #pricing-hero .hero-sub {
    font-size: 0.95em;
    margin-top: 14px;
    line-height: 1.5;
  }
  #pricing-hero .hero-sub br {
    display: none;
  }
  #pricing-hero .hero-badge {
    font-size: 0.85em;
    padding: 6px 16px;
    margin-top: 18px;
  }

  /* Service Overview */
  #service-overview .section-inner {
    padding: 40px 0;
    width: 90%;
  }
  .overview-title {
    margin-bottom: 30px;
  }
  .overview-title h2 {
    font-size: 1.5em;
    line-height: 1.35;
  }
  .overview-title h2 br {
    display: none;
  }
  .overview-title p {
    font-size: 0.9em;
    line-height: 1.5;
  }
  .overview-title p br {
    display: none;
  }
  .overview-cards {
    flex-direction: column;
    max-width: none;
    width: 100%;
    gap: 16px;
  }
  .overview-card {
    flex: none;
    max-width: none;
    width: 100%;
    padding: 28px 22px 24px;
  }
  .overview-card:last-child {
    max-width: none;
  }
  .overview-card-name {
    font-size: 1.3em;
  }
  .overview-card-sub {
    font-size: 1em;
  }
  .overview-card-desc {
    font-size: 0.92em;
  }
  .overview-card ul li {
    font-size: 0.9em;
  }

  /* Plans */
  #pricing-plans .section-inner {
    padding: 40px 0;
    width: 90%;
  }
  #pricing-plans .plans-title {
    margin-bottom: 30px;
    padding-right: 0;
  }
  #pricing-plans .plans-title h2 {
    font-size: 1.5em;
  }
  #pricing-plans .plans-title p {
    font-size: 0.9em;
  }
  .plan-cards {
    flex-direction: column;
    max-width: none;
    width: 100%;
    margin: 0;
    gap: 20px;
  }
  .plan-divider {
    flex-direction: row;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .plan-divider .divider-line {
    flex: 1;
    height: 1px;
    width: auto;
    background: linear-gradient(to right, transparent, #cfd8dc, transparent);
  }
  .plan-divider .divider-label {
    padding: 0 12px;
  }
  .plan-card {
    flex: none;
    max-width: none;
    width: 100%;
    padding: 28px 22px 24px;
  }
  .plan-card .card-name {
    font-size: 1.5em;
  }
  .plan-card .card-price .amount {
    font-size: 1.5em;
  }
  .plan-card .card-subtitle {
    font-size: 0.95em;
  }
  .plan-card .card-desc {
    font-size: 0.9em;
  }
  .plan-card .card-section li {
    font-size: 0.9em;
  }
  .plan-card .card-cta a {
    font-size: 1em;
    padding: 12px 0;
  }


  /* Comparison Table */
  #pricing-compare .section-inner {
    padding: 40px 0;
    width: 95%;
  }
  .compare-title {
    margin-bottom: 25px;
  }
  .compare-title h2 {
    font-size: 1.5em;
  }
  .compare-title p {
    font-size: 0.9em;
  }
  .compare-table-wrap {
    border-radius: 8px;
    margin: 0 -2.5%;
    width: 105%;
  }
  .compare-table {
    table-layout: fixed;
  }
  .compare-table thead th {
    font-size: 0.85em;
    padding: 10px 8px;
  }
  .compare-table tbody td {
    padding: 10px 8px;
    font-size: 0.85em;
  }
  .cat-badge {
    font-size: 0.75em;
    padding: 3px 8px;
  }

  /* Cases */
  #pricing-cases .section-inner {
    padding: 40px 0;
    width: 90%;
  }
  .cases-title {
    margin-bottom: 30px;
  }
  .cases-title h2 {
    font-size: 1.5em;
  }
  .cases-title p {
    font-size: 0.9em;
  }
  .cases-grid {
    flex-direction: column;
    max-width: none;
    width: 100%;
    gap: 20px;
  }
  .case-card {
    flex: none;
    max-width: none;
    width: 100%;
    padding: 24px 20px;
  }
  .case-card:last-child {
    max-width: none;
  }
  .case-badge {
    font-size: 0.85em;
    margin-bottom: 16px;
  }
  .phase-item {
    padding: 12px 14px;
  }
  .phase-item p {
    font-size: 0.88em;
  }

  /* Tech */
  #pricing-tech .section-inner {
    padding: 40px 0;
    width: 90%;
  }
  .tech-title {
    margin-bottom: 30px;
  }
  .tech-title h2 {
    font-size: 1.5em;
  }
  .tech-title p {
    font-size: 0.9em;
  }
  .tech-grid {
    flex-direction: column;
    max-width: none;
    width: 100%;
    margin-bottom: 24px;
    gap: 16px;
  }
  .tech-card {
    flex: none;
    max-width: none;
    width: 100%;
    padding: 28px 22px;
  }
  .tech-card:last-child {
    max-width: none;
  }
  .tech-icon {
    font-size: 2em;
    margin-bottom: 12px;
  }
  .tech-card h3 {
    font-size: 1.1em;
  }
  .tech-card p {
    font-size: 0.9em;
  }
  .tech-highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px;
    gap: 12px;
  }
  .tech-highlight > i {
    font-size: 1.4em;
  }
  .tech-highlight p {
    font-size: 1em;
  }

  /* Cases Logos */
  .cases-logos {
    margin-top: 30px;
  }
  .cases-logos ul {
    gap: 12px;
  }
  .cases-logos li {
    width: calc(50% - 6px);
    height: 60px;
    padding: 10px 16px;
  }

  /* Banner */
  #pricing-banner .section-inner {
    padding: 40px 0;
    width: 90%;
  }
  #pricing-banner h3 {
    font-size: 1.3em;
  }
  #pricing-banner p {
    font-size: 0.9em;
    width: 100%;
  }
  #pricing-banner p br {
    display: none;
  }
  #pricing-banner .banner-cta {
    padding: 12px 30px;
    font-size: 1em;
  }
}
