/* ==============================================
   KHO HẢI SẢN - STATIC PAGES CSS
   Dùng chung cho tất cả trang tĩnh
   ============================================== */

/* ========================
   BASE LAYOUT
   ======================== */
.static-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px;
}

.static-hero {
  background: linear-gradient(135deg, var(--navy), #1565C0);
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 28px;
}

.static-hero h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.static-hero p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.static-hero .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* ========================
   POLICY LAYOUT (TOC + ARTICLE)
   ======================== */
.policy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 20px;
}

.policy-toc {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.policy-toc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding: 0 12px;
}

.policy-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--soft);
}

.policy-toc a {
  display: block;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  border-left: 3px solid transparent;
  transition: all .2s;
  text-decoration: none;
}

.policy-toc a:hover,
.policy-toc a.active {
  color: var(--blue);
  border-left-color: var(--blue);
  background: rgba(12,117,184,0.06);
}

.policy-article {
  min-width: 0;
}

.policy-article h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 36px 0 12px;
  padding-top: 8px;
  border-bottom: 2px solid var(--soft);
  padding-bottom: 10px;
}

.policy-article h2:first-child {
  margin-top: 0;
}

.policy-article p,
.policy-article li {
  line-height: 1.8;
  color: #374151;
  font-size: 15px;
}

.policy-article p {
  margin-bottom: 12px;
}

.policy-article ul,
.policy-article ol {
  padding-left: 24px;
  margin: 12px 0;
  list-style: disc;
}

.policy-article ol {
  list-style: decimal;
}

.policy-article ul li,
.policy-article ol li {
  margin-bottom: 6px;
}

.policy-article strong {
  color: var(--navy);
}

.policy-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  padding: 12px 16px;
  background: var(--soft);
  border-radius: 8px;
}

/* ========================
   CONTACT PAGE
   ======================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 20px;
}

.contact-info-card {
  background: var(--soft);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  transition: box-shadow .2s;
}

.contact-info-card:hover {
  box-shadow: 0 4px 16px rgba(6,35,63,.08);
}

.contact-info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-card-body h4 {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-info-card-body p,
.contact-info-card-body a {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.contact-info-card-body a:hover {
  color: var(--blue);
}

.contact-topics {
  margin-top: 32px;
}

.contact-topics h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 14px;
}

.contact-topic-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text);
  gap: 12px;
}

.contact-topic-item span {
  font-weight: 500;
}

.contact-topic-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(12,117,184,0.08);
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  text-decoration: none;
}

.contact-topic-btn:hover {
  background: rgba(12,117,184,0.16);
  color: var(--blue);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.contact-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}

.contact-social-btn:hover {
  opacity: 0.85;
}

.contact-social-btn--fb {
  background: #1877F2;
  color: white;
}

.contact-social-btn--zalo {
  background: #0068FF;
  color: white;
}

.contact-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  height: fit-content;
}

.contact-form-wrap h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group label .required {
  color: #DC2626;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font, sans-serif);
  font-size: 15px;
  color: var(--text);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12,117,184,0.12);
}

.form-control::placeholder {
  color: #9CA3AF;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2360758a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font, sans-serif);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .1s;
}

.btn-submit:hover {
  background: #0a5ea0;
}

.btn-submit:active {
  transform: scale(0.98);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

.contact-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.contact-success h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-success p {
  color: var(--muted);
  font-size: 14px;
}

/* ========================
   ABOUT PAGE
   ======================== */
.about-hero {
  background: linear-gradient(135deg, var(--navy), #1565C0);
  color: white;
  padding: 72px 20px;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 56px;
}

.about-hero h1 {
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.about-hero p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.about-section-title {
  font-size: 1.6rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.3px;
}

.about-section-title span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 8px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.about-value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--soft);
  border-radius: 20px;
  transition: transform .2s, box-shadow .2s;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(6,35,63,.1);
}

.about-value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about-value-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.about-value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.about-steps-wrap {
  margin: 56px 0;
}

.about-steps-title {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.about-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 20px;
  font-size: 20px;
  color: var(--blue);
  font-weight: 700;
}

.about-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.about-step h4 {
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
}

.about-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--navy);
  color: white;
  padding: 48px 40px;
  border-radius: 24px;
  text-align: center;
  margin: 56px 0;
}

.about-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #38BDF8;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.4;
}

.about-story {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 48px 0;
}

.about-story p {
  font-size: 16px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 16px;
}

.about-cta {
  background: linear-gradient(135deg, #06233f, #0c75b8);
  border-radius: 28px;
  padding: 52px 40px;
  text-align: center;
  color: white;
  margin-top: 56px;
}

.about-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.about-cta p {
  opacity: 0.85;
  margin-bottom: 28px;
  font-size: 1rem;
}

.about-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ========================
   RETURN / SHIPPING WARNING BANNER
   ======================== */
.policy-warning {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.policy-warning-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1.3;
}

.policy-warning strong {
  color: #991B1B;
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.policy-warning p {
  color: #7F1D1D;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.policy-info {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.policy-info-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.policy-info p {
  color: #1E40AF;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ========================
   SELLER POLICY
   ======================== */
.seller-hero {
  background: linear-gradient(135deg, var(--navy), #1565C0);
  color: white;
  padding: 64px 20px 40px;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 48px;
}

.seller-hero h1 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.3;
}

.seller-hero p {
  opacity: 0.88;
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.seller-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0 0;
  position: relative;
}

.seller-step {
  text-align: center;
  position: relative;
}

.seller-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 14px;
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
}

.seller-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.seller-step p {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.4;
}

/* ========================
   PRICING PAGE
   ======================== */
.pricing-page {
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 20px;
}

.pricing-hero {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-hero-badge {
  display: inline-block;
  background: rgba(12,117,184,0.1);
  color: var(--blue);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.pricing-hero h1 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.pricing-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
  align-items: start;
}

.pricing-card {
  border: 2px solid #E2E8F0;
  border-radius: 24px;
  padding: 36px 28px;
  background: white;
  transition: transform .2s, box-shadow .2s;
}

.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(6,35,63,.1);
}

.pricing-card--featured {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(12,117,184,.15);
  transform: translateY(-8px);
  position: relative;
}

.pricing-card--featured::before {
  content: "Phổ biến nhất";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 16px 0;
  line-height: 1.1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.pricing-price-alt {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.pricing-features li {
  padding: 9px 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  line-height: 1.4;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-features li.no::before {
  content: "✕";
  color: #CBD5E1;
}

.pricing-features li.no {
  color: #CBD5E1;
}

/* Comparison table */
.comparison-section {
  margin: 56px 0;
  overflow-x: auto;
}

.comparison-section h2 {
  font-size: 1.5rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 14px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(6,35,63,.07);
}

.comparison-table th {
  background: var(--soft);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table th.featured-col {
  background: #EBF4FF;
  color: var(--blue);
}

.comparison-table td {
  padding: 12px 18px;
  border-bottom: 1px solid #F1F5F9;
  text-align: center;
}

.comparison-table td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
  background: #FAFCFF;
}

.check {
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
}

.cross {
  color: #CBD5E1;
  font-size: 16px;
}

/* Trust bar */
.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-trust-item span:first-child {
  font-size: 20px;
}

/* FAQ */
.faq-section {
  margin: 56px 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section h2 {
  font-size: 1.5rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
}

.faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  background: white;
}

.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  user-select: none;
  transition: background .15s;
  gap: 12px;
}

.faq-question:hover {
  background: var(--soft);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.3s ease;
  font-style: normal;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px;
  color: #374151;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 16px;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

/* Pricing CTA */
.pricing-cta {
  background: linear-gradient(135deg, #06233f, #0c75b8);
  border-radius: 28px;
  padding: 52px 40px;
  text-align: center;
  color: white;
  margin: 56px 0;
}

.pricing-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.pricing-cta p {
  opacity: 0.85;
  margin-bottom: 28px;
  font-size: 1rem;
  color: #d6f5ff;
}

.pricing-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ========================
   SHARED BUTTON HELPERS
   ======================== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity .2s, transform .1s;
  border: none;
  cursor: pointer;
  font-family: var(--font, sans-serif);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-primary:hover {
  background: #0a5ea0;
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: white;
}

.btn-white {
  background: white;
  color: var(--navy);
}

.btn-white:hover {
  background: #f0f9ff;
  color: var(--navy);
}

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
}

/* ========================
   BREADCRUMB AREA
   ======================== */
.static-breadcrumb {
  margin-bottom: 32px;
}

/* ========================
   OPERATING RULES / DISCLAIMER - shared table of highlighted content
   ======================== */
.rule-highlight {
  background: var(--soft);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
}

.rule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.rule-table th {
  background: var(--soft);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  color: var(--navy);
}

.rule-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #F1F5F9;
  color: #374151;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
    margin-bottom: 24px;
  }

  .policy-toc ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    background: transparent;
  }

  .policy-toc a {
    border-left: none;
    border-radius: 8px;
    background: var(--soft);
    font-size: 12.5px;
    padding: 7px 12px;
    border-bottom: 2px solid transparent;
  }

  .policy-toc a:hover,
  .policy-toc a.active {
    border-left: none;
    border-bottom-color: var(--blue);
    background: rgba(12,117,184,0.06);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-step:not(:last-child)::after {
    content: '↓';
    position: static;
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 18px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 24px;
  }

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

  .seller-step:not(:last-child)::after {
    display: none;
  }

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

  .pricing-card--featured {
    transform: none;
  }

  .pricing-trust {
    gap: 16px;
  }

  .about-cta {
    padding: 40px 24px;
  }

  .pricing-cta {
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  .static-hero h1,
  .about-hero h1,
  .pricing-hero h1 {
    font-size: 1.5rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 24px 16px;
  }

  .about-stat-num {
    font-size: 1.8rem;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .policy-layout {
    padding: 28px 16px;
  }

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

  .about-cta-btns,
  .pricing-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
