@charset "UTF-8";
.content-grid {
  max-width: 1200px;
  margin: var(--space-3xl) auto var(--space-2xl);
  background: var(--system-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.content-grid__header {
  padding: var(--space-2xl) var(--space-xl);
  background: linear-gradient(135deg, var(--brand-primary-bg) 0%, var(--system-bg-white) 100%);
  border-bottom: 3px solid var(--brand-primary);
}
.content-grid__header .content-grid__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--system-text-dark);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-md);
}
.content-grid__header .content-grid__subtitle {
  font-size: var(--text-lg);
  color: var(--system-text);
  line-height: var(--leading-relaxed);
  max-width: 800px;
}
.content-grid__trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--system-bg-light);
  border-bottom: 1px solid var(--system-border);
}
.content-grid__trust-bar .trust-point {
  text-align: center;
  padding: var(--space-lg);
  background: var(--system-bg-white);
  border-radius: var(--radius-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.content-grid__trust-bar .trust-point:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.content-grid__trust-bar .trust-point__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--system-text-muted);
  margin-bottom: var(--space-xs);
}
.content-grid__trust-bar .trust-point__value {
  display: block;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--brand-primary);
}
.content-grid__education {
  padding: var(--space-2xl) var(--space-xl);
}
.content-grid__education .education-section {
  margin-bottom: var(--space-2xl);
}
.content-grid__education .education-section:last-child {
  margin-bottom: 0;
}
.content-grid__education .education-section__title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--system-text-dark);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--system-border);
}
.content-grid__cta {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--system-bg-light);
  text-align: center;
  border-top: 1px solid var(--system-border);
}
.content-grid__cta-text {
  font-size: var(--text-lg);
  color: var(--system-text-dark);
  margin-bottom: var(--space-lg);
}

.faq-list {
  list-style: none;
}
.faq-list__item {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--system-border);
}
.faq-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.faq-list__question {
  font-weight: 600;
  color: var(--system-text-dark);
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}
.faq-list__answer {
  color: var(--system-text);
  line-height: var(--leading-relaxed);
  padding-left: var(--space-lg);
  position: relative;
}
.faq-list__answer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background: var(--brand-primary);
  border-radius: 50%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.feature-grid .feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.feature-grid .feature-item__marker {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--brand-primary-bg);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-xs);
}
.feature-grid .feature-item__content {
  flex: 1;
}
.feature-grid .feature-item__title {
  font-weight: 600;
  color: var(--system-text-dark);
  margin-bottom: var(--space-xs);
}
.feature-grid .feature-item__description {
  color: var(--system-text);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.spec-table {
  width: 100%;
  margin: var(--space-lg) 0;
}
.spec-table__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: var(--space-md);
  border-bottom: 1px solid var(--system-border);
}
.spec-table__row:nth-child(even) {
  background: var(--system-bg-light);
}
.spec-table__label {
  font-weight: 600;
  color: var(--system-text-dark);
}
.spec-table__value {
  color: var(--system-text);
}

.testimonial {
  background: var(--brand-primary-bg);
  border-left: 4px solid var(--brand-primary);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  border-radius: var(--radius-sm);
}
.testimonial__text {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--system-text-dark);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}
.testimonial__author {
  font-weight: 600;
  color: var(--system-text);
}
.testimonial__role {
  font-size: var(--text-sm);
  color: var(--system-text-muted);
}

.button-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}
.button-group .button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
}
.button-group .button--primary {
  background: var(--brand-primary);
  color: var(--system-bg-white);
  border-color: var(--brand-primary);
}
.button-group .button--primary:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.button-group .button--secondary {
  background: var(--system-bg-white);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.button-group .button--secondary:hover {
  background: var(--brand-primary-bg);
}

.u-text-muted {
  color: var(--system-text-muted) !important;
}

.u-text-small {
  font-size: var(--text-sm) !important;
}

.u-text-large {
  font-size: var(--text-lg) !important;
}

.u-margin-top {
  margin-top: var(--space-lg) !important;
}

.u-margin-bottom {
  margin-bottom: var(--space-lg) !important;
}

.u-text-center {
  text-align: center !important;
}

@media (max-width: 768px) {
  .u-hidden-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .content-grid {
    margin: var(--space-xl) var(--space-md);
    border-radius: 0;
  }
  .content-grid__header {
    padding: var(--space-xl) var(--space-lg);
  }
  .content-grid__title {
    font-size: var(--text-xl);
  }
  .content-grid__subtitle {
    font-size: var(--text-base);
  }
  .content-grid__trust-bar {
    grid-template-columns: 1fr;
    padding: var(--space-lg);
  }
  .content-grid__education {
    padding: var(--space-xl) var(--space-lg);
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .spec-table__row {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }
  .spec-table__label {
    margin-bottom: var(--space-xs);
  }
  .button-group {
    flex-direction: column;
  }
  .button-group .button {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .content-grid__header {
    padding: var(--space-lg) var(--space-md);
  }
  .content-grid__education {
    padding: var(--space-lg) var(--space-md);
  }
  .faq-list__answer {
    padding-left: var(--space-md);
  }
}
.brand-extra-content {
  clear: both;
  width: 100%;
  margin: 60px 0 40px;
}
.brand-extra-content .brand-description {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8ecef;
}
.brand-extra-content .brand-description h2 {
  color: #003d7a;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #0073e6;
}
@media (max-width: 768px) {
  .brand-extra-content .brand-description h2 {
    font-size: 24px;
  }
}
.brand-extra-content .brand-description h3 {
  color: #003d7a;
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
}
.brand-extra-content .brand-description p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.brand-extra-content .brand-description p:last-child {
  margin-bottom: 0;
}
.brand-extra-content .brand-description ul,
.brand-extra-content .brand-description ol {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}
.brand-extra-content .brand-description ul li,
.brand-extra-content .brand-description ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #4a4a4a;
  line-height: 1.6;
}
.brand-extra-content .brand-description ul li:before,
.brand-extra-content .brand-description ol li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0073e6;
  font-weight: bold;
  font-size: 18px;
}
.brand-extra-content .brand-description .info-box {
  background: #f0f7ff;
  border-left: 4px solid #0073e6;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 4px;
}
.brand-extra-content .brand-description .info-box p {
  margin: 0;
  color: #003d7a;
}
.brand-extra-content .brand-description .btn-coolblue {
  display: inline-block;
  background: #0073e6;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin: 16px 8px 0 0;
  transition: all 0.3s ease;
}
.brand-extra-content .brand-description .btn-coolblue:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}
.brand-extra-content .brand-description .btn-coolblue.btn-secondary {
  background: #fff;
  color: #0073e6;
  border: 2px solid #0073e6;
}
.brand-extra-content .brand-description .btn-coolblue.btn-secondary:hover {
  background: #f0f7ff;
}
.brand-extra-content .brand-description .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.brand-extra-content .brand-description .feature-grid .feature-item {
  background: #fafbfc;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}
.brand-extra-content .brand-description .feature-grid .feature-item .feature-icon {
  font-size: 32px;
  color: #0073e6;
  margin-bottom: 12px;
}
.brand-extra-content .brand-description .feature-grid .feature-item h4 {
  color: #003d7a;
  font-size: 18px;
  margin: 0 0 8px;
}
.brand-extra-content .brand-description .feature-grid .feature-item p {
  font-size: 14px;
  margin: 0;
}
@media (max-width: 768px) {
  .brand-extra-content {
    margin: 40px 0 30px;
  }
  .brand-extra-content .brand-description {
    padding: 24px 16px;
  }
}

.product-brand-sparrows .brand-extra-content .brand-description {
  border-top: 3px solid #9d0b0e;
}
.product-brand-sparrows .brand-extra-content .brand-description h2 {
  border-bottom-color: #9d0b0e;
}

.product-brand-multipick .brand-extra-content .brand-description {
  border-top: 3px solid #cb0206;
}
.product-brand-multipick .brand-extra-content .brand-description h2 {
  border-bottom-color: #cb0206;
}

.product-brand-southord .brand-extra-content .brand-description {
  border-top: 3px solid #73787b;
}
.product-brand-southord .brand-extra-content .brand-description h2 {
  border-bottom-color: #73787b;
}
