/* ===========================
   JP AVÍCOLA — Estilo Avigroup
   Orange #F5831A | Navy #162B82
   =========================== */

:root {
  --orange:    #F5831A;
  --orange-dk: #D96E0E;
  --orange-lt: #FFF4E6;
  --navy:      #162B82;
  --navy-dk:   #0E1E60;
  --navy-lt:   #EEF1FB;
  --dark:      #1A1A2E;
  --gray:      #6B7280;
  --gray-lt:   #F4F6F8;
  --white:     #FFFFFF;
  --radius:    10px;
  --shadow:    0 2px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===========================  BUTTONS  */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 13px 28px; border-radius: 6px;
  font-weight: 700; font-size: 15px; font-family: inherit;
  border: none; cursor: pointer; transition: all .2s;
}
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(245,131,26,.35); }

.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 13px 28px; border-radius: 6px;
  font-weight: 700; font-size: 15px; font-family: inherit;
  border: none; cursor: pointer; transition: all .2s;
}
.btn-navy:hover { background: var(--navy-dk); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 12px 28px; border-radius: 6px;
  font-weight: 700; font-size: 15px; font-family: inherit;
  border: 2px solid rgba(255,255,255,.6); cursor: pointer; transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 10px 18px; border-radius: 6px;
  font-weight: 700; font-size: 14px; font-family: inherit;
  border: none; cursor: pointer; transition: all .2s; width: 100%;
  justify-content: center; margin-top: auto;
}
.btn-wa:hover { background: #1EBD5C; }

/* ===========================  NAV  */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 104px;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 96px; width: auto; object-fit: contain;
  mix-blend-mode: multiply;
}
.logo-fallback { display: none; align-items: center; gap: 10px; }
.logo-jp {
  background: var(--orange); color: var(--white);
  width: 44px; height: 44px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px;
}
.logo-text { font-weight: 800; font-size: 18px; color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--dark); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.btn-nav {
  background: var(--orange); color: var(--white) !important;
  padding: 10px 22px; border-radius: 6px; font-weight: 700 !important;
}
.btn-nav:hover { background: var(--orange-dk) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none; position: fixed; top: 104px; left: 0; right: 0; z-index: 999;
  background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,.1);
  padding: 8px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 16px; font-weight: 600; color: var(--dark); border-bottom: 1px solid #F0F0F0; }
.mobile-menu a:hover { color: var(--orange); }

/* ===========================  HERO SLIDER — Avigroup style  */
#hero {
  margin-top: 104px;
  position: relative; height: 82vh; min-height: 460px;
  overflow: hidden;
}
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .9s ease;
}
.slide.active { opacity: 1; z-index: 1; }

/* Solid brand background (no photo — like avigroup) */
.slide-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, #1a3a9e 100%);
}
/* Optional: subtle watermark pattern */
.slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,131,26,.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Two-column layout: text left, product image right */
.slide-layout {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0; padding: 0 40px;
  height: 100%;
}
.slide-text { color: var(--white); padding-right: 40px; }

.slide-tag {
  display: inline-block;
  background: var(--orange); color: var(--white);
  padding: 8px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 24px;
}
.slide-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900; line-height: 1.1; margin-bottom: 16px;
  color: var(--white);
}
.slide-price-box {
  display: inline-block;
  background: var(--white);
  padding: 10px 24px; border-radius: 6px;
  margin-bottom: 12px;
}
.slide-price-box strong {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900; color: var(--orange);
}
.slide-price-box span { font-size: 16px; color: var(--gray); margin-left: 4px; }
.slide-sub { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 32px; margin-top: 8px; }
.slide-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.slide-img-wrap {
  display: flex; align-items: center; justify-content: center;
  height: 100%; overflow: visible;
}
.slide-product-img {
  max-height: 88%; width: auto; object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.45));
  transform: translateY(0);
  transition: transform .6s ease;
}
.slide.active .slide-product-img { transform: translateY(-4px); }

/* Slider dots */
.slider-dots {
  position: absolute; bottom: 24px; left: 40px;
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; transition: all .3s; border: none;
}
.dot.active { background: var(--orange); transform: scale(1.3); }

/* Slider arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,.15);
  border: none; color: var(--white); font-size: 28px;
  width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; backdrop-filter: blur(4px); transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--orange); }
.arrow-prev { left: 16px; }
.arrow-next { right: 16px; }

/* ===========================  STATS BAR  */
.stats-bar {
  background: var(--navy); color: var(--white);
  padding: 0;
}
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 24px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.05); }
.stat-num { display: block; font-size: 28px; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-label { display: block; font-size: 13px; color: rgba(255,255,255,.7); margin-top: 6px; font-weight: 500; }

/* ===========================  RIBBON  */
.ribbon { background: var(--orange); color: var(--white); padding: 14px 0; overflow: hidden; }
.ribbon-track {
  display: flex; gap: 24px; align-items: center;
  white-space: nowrap; animation: scroll-ribbon 35s linear infinite;
  width: max-content;
}
.ribbon-track span { font-size: 13px; font-weight: 700; letter-spacing: .5px; }
.ribbon-track .dot-r { color: rgba(255,255,255,.5); font-size: 16px; }
@keyframes scroll-ribbon { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===========================  SECTION COMMON  */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; background: var(--orange-lt); color: var(--orange);
  padding: 6px 18px; border-radius: 4px; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900; line-height: 1.2; margin-bottom: 14px; color: var(--dark);
}
.section-title .hl { color: var(--orange); }
.section-sub { font-size: 16px; color: var(--gray); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ===========================  PRODUCTS  */
#productos { padding: 80px 0; background: var(--gray-lt); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid #EFEFEF;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.product-img {
  height: 190px; position: relative; overflow: hidden;
  background: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 54px;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .4s;
}
.product-card:hover .product-img img { transform: scale(1.08) translateY(-4px); }

.price-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--navy); color: var(--white);
  padding: 5px 12px; border-radius: 4px;
  font-size: 13px; font-weight: 800;
}

.product-info {
  padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px;
}
.product-info h3 { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.product-info p { font-size: 12px; color: var(--gray); line-height: 1.5; flex: 1; }

.product-tag {
  display: inline-block; padding: 3px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700; align-self: flex-start;
  background: var(--orange-lt); color: var(--orange); margin-bottom: 4px;
}
.product-tag.premium { background: var(--navy-lt); color: var(--navy); }
.product-tag.especial { background: #FFF8E1; color: #E65100; }
.product-tag.granel { background: #E8F5E9; color: #2E7D32; }

/* ===========================  PRICE TABLE  */
.price-table-wrap {
  margin-top: 56px;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  border: 1px solid #E5E7EB;
}
.price-title {
  background: var(--navy); color: var(--white);
  padding: 18px 28px; font-size: 17px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.price-table { padding: 0 8px 8px; }
.price-header {
  display: grid; grid-template-columns: 48px 1fr 130px;
  padding: 12px 20px;
  font-size: 11px; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: .5px;
  border-bottom: 2px solid #F3F4F6;
}
.price-row {
  display: grid; grid-template-columns: 48px 1fr 130px;
  padding: 13px 20px; align-items: center;
  border-bottom: 1px solid #F9FAFB; transition: background .15s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--orange-lt); }
.price-row span:first-child { font-size: 13px; color: #9CA3AF; font-weight: 600; }
.price-row span:nth-child(2) { font-size: 14px; font-weight: 600; }
.price-row .price { font-size: 15px; font-weight: 800; color: var(--navy); }
.price-note { padding: 14px 20px; font-size: 12px; color: var(--gray); font-style: italic; }

/* ===========================  NOSOTROS  */
#nosotros { padding: 80px 0; background: var(--white); }
.nosotros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.nosotros-img { position: relative; }
.nosotros-photo { width: 100%; height: 460px; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-lg); }
.nosotros-placeholder {
  height: 460px; background: linear-gradient(135deg, var(--orange-lt), #FFE4CC);
  border-radius: 12px; border: 2px dashed var(--orange);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--gray); gap: 12px;
}
.nosotros-placeholder .pi { font-size: 56px; }
.nosotros-placeholder p { font-size: 14px; line-height: 1.5; }
.nosotros-badge {
  position: absolute; bottom: -20px; left: 24px;
  background: var(--orange); color: var(--white);
  padding: 18px 24px; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(245,131,26,.4); text-align: center;
}
.badge-num { display: block; font-size: 32px; font-weight: 900; line-height: 1; }
.badge-txt { display: block; font-size: 12px; font-weight: 600; margin-top: 4px; line-height: 1.4; }

.nosotros-content { display: flex; flex-direction: column; gap: 16px; }
.nosotros-desc { font-size: 16px; color: var(--gray); line-height: 1.8; }
.features { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; background: var(--gray-lt); border-radius: var(--radius);
  border-left: 4px solid var(--orange); transition: transform .2s;
}
.feature:hover { transform: translateX(4px); }
.feature-icon { font-size: 24px; flex-shrink: 0; }
.feature-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.feature-text p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ===========================  CLIENTES  */
#clientes { padding: 80px 0; background: var(--navy); }
#clientes .section-tag { background: rgba(245,131,26,.2); color: #FFB45C; }
#clientes .section-title { color: var(--white); }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.client-card {
  background: rgba(255,255,255,.05); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s, border-color .3s, background .3s;
}
.client-card:hover { transform: translateY(-5px); border-color: var(--orange); background: rgba(245,131,26,.08); }
.client-icon { font-size: 44px; margin-bottom: 14px; display: block; }
.client-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.client-card p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ===========================  CTA BAND  */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange) 0%, #D96010 100%);
  color: var(--white); text-align: center;
}
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 4vw, 44px); font-weight: 900; margin-bottom: 14px; }
.cta-content p { font-size: 17px; opacity: .9; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--white); color: var(--orange); }
.cta-band .btn-primary:hover { background: var(--orange-lt); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.15); }

/* ===========================  CONTACTO  */
#contacto { padding: 80px 0; background: var(--gray-lt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 24px; flex-shrink: 0; }
.contact-item h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray); margin-bottom: 4px; }
.contact-item a { font-size: 16px; font-weight: 600; color: var(--orange); }
.contact-item a:hover { text-decoration: underline; }
.contact-item p { font-size: 15px; color: var(--dark); line-height: 1.5; }
.wa-btn { margin-top: 4px; }
.map-wrap { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.map-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: underline; }
.map-link:hover { color: var(--orange); }

.contact-form { background: var(--white); border-radius: 12px; padding: 36px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--gray); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .3px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid #E5E7EB; border-radius: var(--radius);
  font-family: inherit; font-size: 14px; color: var(--dark);
  background: var(--white); outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; }
.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 14px; border-radius: var(--radius);
  font-weight: 700; font-size: 16px; font-family: inherit;
  border: none; cursor: pointer; transition: all .2s; margin-top: 4px;
}
.btn-submit:hover { background: #1EBD5C; transform: translateY(-1px); }
.form-note { text-align: center; font-size: 12px; color: var(--gray); margin-top: 10px; }

/* ===========================  FOOTER  */
footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 56px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { margin-top: 14px; font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-brand .logo-text { color: var(--white); }
.footer-logo-img { height: 56px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer-links h4, .footer-contact h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.footer-links li, .footer-contact p { font-size: 14px; line-height: 2; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact a:hover { color: var(--orange); }
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 10px;
  background: #25D366; color: var(--white);
  padding: 9px 18px; border-radius: 6px; font-size: 14px; font-weight: 700; transition: opacity .2s;
}
.footer-wa:hover { opacity: .9; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; text-align: center; font-size: 13px; }

/* ===========================  ANIMATIONS  */
.reveal-up, .reveal-left, .reveal-right, .reveal-card {
  opacity: 0; transition: opacity .65s ease, transform .65s ease;
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-card  { transform: translateY(24px) scale(.97); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-card.visible { opacity: 1; transform: none; }

.product-card:nth-child(2) { transition-delay: .05s; }
.product-card:nth-child(3) { transition-delay: .10s; }
.product-card:nth-child(4) { transition-delay: .15s; }
.product-card:nth-child(5) { transition-delay: .05s; }
.product-card:nth-child(6) { transition-delay: .10s; }
.client-card:nth-child(2) { transition-delay: .1s; }
.client-card:nth-child(3) { transition-delay: .2s; }
.client-card:nth-child(4) { transition-delay: .3s; }
.feature:nth-child(2) { transition-delay: .1s; }
.feature:nth-child(3) { transition-delay: .2s; }
.feature:nth-child(4) { transition-delay: .3s; }

/* ===========================  RESPONSIVE  */
@media (max-width: 960px) {
  .nosotros-grid { grid-template-columns: 1fr; gap: 60px; }
  .nosotros-badge { left: 16px; bottom: -16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  #hero { height: auto; min-height: 80vh; }
  .slide-layout { grid-template-columns: 1fr; padding: 20px; text-align: center; }
  .slide-img-wrap { display: none; }
  .slide-text { padding-right: 0; }
  .slide-ctas { justify-content: center; }
  .slider-dots { left: 50%; transform: translateX(-50%); }
}
@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================  FAQ SECTION  */
.faq-section { padding: 88px 0; background: var(--gray-lt); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 960px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid #E5E7EB; overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item summary {
  padding: 20px 24px; font-size: 15px; font-weight: 700;
  color: var(--dark); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--orange); flex-shrink: 0; transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: var(--orange); }
.faq-item[open] summary { color: var(--orange); border-bottom: 1px solid #F3F4F6; }
.faq-item p {
  padding: 16px 24px 20px; font-size: 14px; color: var(--gray); line-height: 1.7;
}
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }

/* ===========================  TRUST SECTION  */
.trust-section {
  padding: 88px 0;
  background: var(--white);
  border-top: 1px solid #F0F0F0;
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.trust-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  border: 1px solid #EFEFEF;
  transition: transform .3s, box-shadow .3s;
}
.trust-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(22,43,130,.15); }
.trust-logo-wrap {
  height: 200px;
  background: #FAFAFA;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  border-bottom: 1px solid #F0F0F0;
}
.trust-logo-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .4s;
}
.trust-card:hover .trust-logo-wrap img { transform: scale(1.05); }
.trust-info {
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.trust-info h3 { font-size: 17px; font-weight: 800; color: var(--dark); }
.trust-info p { font-size: 13px; color: var(--gray); line-height: 1.5; }
.trust-badge {
  display: inline-block;
  background: var(--orange-lt); color: var(--orange);
  padding: 4px 12px; border-radius: 4px;
  font-size: 12px; font-weight: 700; margin-top: 4px; align-self: flex-start;
}
.trust-stats {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  border-radius: 14px;
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-around;
  gap: 20px;
}
.trust-stat-item { text-align: center; }
.trust-num { display: block; font-size: 34px; font-weight: 900; color: var(--orange); line-height: 1; }
.trust-label { display: block; font-size: 13px; color: rgba(255,255,255,.7); margin-top: 8px; font-weight: 500; }
.trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,.15); }

@media (max-width: 768px) {
  .trust-logos { grid-template-columns: 1fr; }
  .trust-stats { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .trust-divider { width: 60px; height: 1px; }
}
