/* ============================================
   Services Page Styles
   ============================================ */

/* Hero — uses shared .subpage-hero from pages.css */

/* Trust Bar */
.services-trust-bar {
  background: #F0F7FF;
  border-top: 1px solid rgba(11, 46, 89, 0.08);
  border-bottom: 1px solid rgba(11, 46, 89, 0.08);
  padding: 24px 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item .trust-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.trust-item .trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-item p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}

/* ========== Recommended Plans ========== */
.recommended-section {
  background: linear-gradient(180deg, #F0F7FF 0%, var(--white) 100%);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recommended-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  border: 1px solid rgba(11, 46, 89, 0.08);
  box-shadow: 0 4px 24px rgba(11, 46, 89, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.recommended-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11, 46, 89, 0.14);
  border-color: var(--gold);
}

.recommended-badge {
  position: absolute;
  top: -1px;
  left: 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  letter-spacing: 0.02em;
}

.recommended-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, #164e8a 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}

.recommended-icon svg {
  width: 28px;
  height: 28px;
}

.recommended-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.recommended-card > p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.recommended-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.recommended-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-800);
  line-height: 1.4;
}

.recommended-card ul li svg {
  width: 16px;
  height: 16px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.recommended-card .btn {
  align-self: flex-start;
}

/* ========== Category Navigation ========== */
.category-nav-section {
  background: var(--gray-50);
  padding: 48px 0 !important;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.category-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 12px 22px;
  text-decoration: none;
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.category-tab:hover {
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(11,46,89,0.18) !important;
  transform: translateY(-4px);
}

.category-tab.active {
  color: var(--gray-600);
  background: var(--white);
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
}

.category-tab-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(11,46,89,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.2s ease;
}

.category-tab-icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.1;
}

.category-tab span {
  white-space: normal;
  word-break: keep-all;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

/* Products Layout — Sidebar + Cards */
.products-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  background: var(--gray-50);
}

.products-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 24px 20px;
}

.products-sidebar h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

.sidebar-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--gray-600);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sidebar-filter svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sidebar-filter:hover {
  color: var(--navy);
  background: var(--gray-50);
}

.sidebar-filter.active {
  color: var(--white);
  background: var(--navy);
  font-weight: 600;
}

.products-content {
  min-width: 0;
}

/* Life Insurance Product Cards */
.life-insurance-section .section-title,
.nonlife-section .section-title {
  text-align: left;
}

.life-insurance-section .section-title p,
.nonlife-section .section-title p {
  margin: 0;
}

.section-title-with-count {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section-count {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--gray-600);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.section-count-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1;
  background: var(--gray-100);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.life-insurance-section {
  background: var(--white);
}

.life-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  overflow: visible;
}

.life-product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: visible;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  position: relative;
}

.life-product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transform: translateY(-4px);
  z-index: 2;
}

.life-product-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.life-product-img {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.life-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.life-product-card:hover .life-product-img img {
  transform: scale(1.06);
}

.life-product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.life-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.life-product-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--tag-color, #2980b9);
  background: color-mix(in srgb, var(--tag-color, #2980b9) 10%, transparent);
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 0;
}

.life-product-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
}

.life-product-body p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0;
}

.life-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 20px 18px;
  margin-top: auto;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.life-product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2980b9;
  text-decoration: none;
  transition: color 0.2s ease;
}

.life-product-link svg {
  width: 14px;
  height: 14px;
}

.life-product-card:hover .life-product-link {
  color: var(--navy);
}

.life-product-views {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}

.life-product-top .stat-pair {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.life-product-top .stat-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--gray-600);
  font-weight: 500;
  white-space: nowrap;
}

.life-product-top .stat-item svg {
  width: 13px;
  height: 13px;
  color: var(--navy);
  opacity: 0.7;
}

.life-product-top .view-num,
.life-product-top .share-num {
  color: var(--navy);
  font-weight: 700;
}

.plan-hero-meta-right .stat-pair {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.plan-hero-meta-right .stat-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 500;
}

.plan-hero-meta-right .stat-item svg {
  color: var(--navy);
  opacity: 0.75;
}

.plan-hero-meta-right .view-num,
.plan-hero-meta-right .share-num {
  color: var(--navy);
  font-weight: 700;
}

.life-product-views svg {
  flex-shrink: 0;
  color: var(--navy);
  opacity: 0.7;
}

.life-product-views .view-num {
  color: var(--navy);
  font-weight: 700;
}

.card-share {
  position: relative;
  flex-shrink: 0;
}

.card-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.card-share-btn:hover,
.card-share-btn[aria-expanded="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.card-share-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  min-width: 140px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-share-menu[hidden] {
  display: none !important;
}

.card-share-item {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}

.card-share-item:hover {
  background: var(--gray-50);
}

/* Non-Life Insurance — reuses .life-product-card styles */
.nonlife-section {
  background: var(--white);
}

/* Process */
.services-process {
  background: var(--gray-50);
}

.services-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.svc-process-step {
  text-align: center;
  padding: 32px 24px 28px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.svc-process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(11,46,89,0.12);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(200,155,60,0.3);
}

.svc-process-step .step-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(11,46,89,0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--navy);
}

.svc-process-step .step-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.svc-process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-process-step p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Why Choose Us */
.why-choose-section {
  background: var(--white);
}

.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.wc-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.why-choose-left h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 28px;
}

.wc-highlight {
  color: var(--gold);
}

.wc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wc-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-600);
}

.wc-bullets li svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.wc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.wc-cta-btn:hover {
  background: var(--navy-dark);
  transform: translateX(4px);
}

.wc-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
}

.wc-cta-arrow svg {
  width: 16px;
  height: 16px;
}

.why-choose-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.wc-card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(11,46,89,0.08);
}

.wc-card--active {
  background: var(--white);
  border-color: var(--gray-200);
}

.wc-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}

.wc-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-600);
}

.wc-card-meta svg {
  width: 14px;
  height: 14px;
  color: var(--gray-400);
}

.wc-card-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.wc-card-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--gray-600);
}

.wc-card--active .wc-card-arrow {
  background: var(--gray-100);
}

.wc-card:hover .wc-card-arrow {
  background: var(--gold);
}

.wc-card:hover .wc-card-arrow svg {
  color: var(--white);
}

/* Quote Form Section */
.quote-form-section {
  background: var(--white);
}

.quote-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.quote-form-left {
  padding-right: 16px;
}

.quote-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,46,89,0.06);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.quote-form-badge svg {
  width: 16px;
  height: 16px;
}

.quote-form-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 20px;
}

.quote-form-heading span {
  color: var(--gold);
}

.quote-form-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.quote-form-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qf-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
}

.qf-feature svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  overflow: hidden;
}

.quote-form-card-header {
  background: var(--navy);
  padding: 28px 32px 20px;
  text-align: center;
}

.quote-form-card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.quote-form-card-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.quote-form {
  padding: 28px 32px 32px;
}

.quote-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.quote-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.quote-plan-option {
  cursor: pointer;
}

.quote-plan-option input {
  display: none;
}

.quote-plan-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.2s ease;
  text-align: center;
}

.quote-plan-option span svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.quote-plan-option input:checked + span {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.quote-plan-option:hover span {
  border-color: var(--navy);
  color: var(--navy);
}

.quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-form .form-group {
  margin-bottom: 14px;
}

.quote-form .form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,46,89,0.08);
  background: var(--white);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: var(--gray-400);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 8px;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
}

/* Services CTA */
.services-cta-bar {
  background: var(--navy);
  padding: 48px 0;
  overflow: hidden;
}

.services-cta-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.services-cta-agent img {
  width: 5rem;
  height: 5rem;
  border-radius: 14px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.services-cta-text {
  flex: 1;
  min-width: 240px;
}

.services-cta-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}

.services-cta-text p {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
}

.services-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.services-cta-buttons .btn-phone {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.services-cta-buttons .btn-phone:hover {
  background: var(--gray-100);
}

/* Responsive */
@media (max-width: 1024px) {
  .products-layout {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }

  .trust-items {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .recommended-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .quote-form-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quote-form-heading {
    font-size: 2rem;
  }

  .quote-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-form-row {
    grid-template-columns: 1fr;
  }

  .category-tabs {
    grid-template-columns: repeat(4, 1fr);
  }

  .life-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-cta-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .services-cta-agent img {
    width: 4.5rem;
    height: 4.5rem;
  }

  .services-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .products-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .products-sidebar {
    position: static;
  }

  .sidebar-filter-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .sidebar-filter {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .category-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .category-tab {
    padding: 16px 8px;
    gap: 10px;
  }

  .category-tab-icon svg {
    width: 30px;
    height: 30px;
  }

  .category-tab span {
    font-size: 0.7rem;
  }

  .services-process-steps {
    grid-template-columns: 1fr;
  }

  .why-choose-left h2 {
    font-size: 1.5rem;
  }

  .wc-card {
    padding: 16px 18px;
  }

  .life-cards-grid {
    grid-template-columns: 1fr;
  }
}
