/* ============================================================
   Home page styles — photo-led
   ============================================================ */

/* ---- HERO (full-viewport photo) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-bg { animation: kenburns 22s ease-in-out infinite alternate; }
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(118deg, rgba(10,10,10,0.90) 0%, rgba(10,10,10,0.66) 42%, rgba(242,115,31,0.46) 100%),
    linear-gradient(0deg, rgba(10,10,10,0.55), transparent 38%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: var(--nav-h); width: 100%; }
.hero-copy { max-width: 720px; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: var(--orange); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 8px 0 22px;
}
.hero-title .accent { color: var(--orange); }
.hero .lead { color: rgba(255,255,255,0.88); font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 54ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-trust {
  list-style: none; margin: 48px 0 0; padding: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  display: flex; flex-wrap: wrap; gap: 14px 48px;
}
.hero-trust li { display: flex; flex-direction: column; gap: 3px; }
.hero-trust strong {
  font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; line-height: 1; color: #fff;
}
.hero-trust strong em { font-style: normal; color: #fff; }
.hero-trust span { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; letter-spacing: 0.02em; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-scroll svg { width: 20px; height: 20px; animation: bobv 1.8s ease-in-out infinite; }
@keyframes bobv { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (max-height: 720px) { .hero-scroll { display: none; } }

/* ---- Section heads ---- */
.sec-head { max-width: 660px; margin: 0 0 52px; }
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
.sec-head .lead { margin-top: 14px; }
.sec-foot { text-align: center; margin-top: 48px; }

/* ---- About (Who We Are) — 3D interactive ---- */
.about-sec { position: relative; overflow: hidden; }
.about-sec .ab-blob { width: 380px; height: 380px; top: 40px; right: -120px; background: radial-gradient(circle, rgba(255,145,76,.42), transparent 70%); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.about-copy h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
.about-points { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--text); }
.about-points li svg { width: 22px; height: 22px; color: #fff; background: var(--grad-orange); border-radius: 50%; padding: 4px; flex: none; box-shadow: 0 4px 12px rgba(242,115,31,.32); }

.about-visual { perspective: 1200px; }
.about-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible;
  aspect-ratio: 4 / 3;
  transform-style: preserve-3d;
  transition: transform .25s ease;
  will-change: transform;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
}
.est-badge {
  position: absolute; left: 22px; bottom: 22px;
  background: var(--grad-orange); color: #fff;
  border-radius: var(--r-md);
  padding: 14px 20px; box-shadow: var(--shadow-orange);
  transform: translateZ(50px);
}
.est-badge strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; line-height: 1; }
.est-badge span { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: .92; }
.about-float-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-lift);
  animation: floatY 5.5s ease-in-out infinite;
}
.about-float-card .fc-ico { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(255,145,76,.18), rgba(242,115,31,.12)); color: var(--orange-deep); flex: none; }
.about-float-card .fc-ico svg { width: 20px; height: 20px; }
.about-float-card strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; line-height: 1; color: var(--ink); }
.about-float-card span { font-size: 0.74rem; color: var(--text-faint); }
.about-float-card.fc-1 { top: -22px; right: 18px; transform: translateZ(70px); }
.about-float-card.fc-2 { bottom: 38px; right: -26px; transform: translateZ(90px); animation-delay: -2.5s; }
@keyframes floatY { 0%,100% { transform: translateZ(70px) translateY(0); } 50% { transform: translateZ(70px) translateY(-12px); } }
.about-float-card.fc-2 { animation-name: floatY2; }
@keyframes floatY2 { 0%,100% { transform: translateZ(90px) translateY(0); } 50% { transform: translateZ(90px) translateY(-12px); } }
.about-mini { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.about-mini div { display: flex; flex-direction: column; gap: 2px; }
.about-mini strong { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ink); }
.about-mini span { font-size: 0.84rem; color: var(--text-faint); }

/* ---- How to Order (dark, animated) ---- */
.how { position: relative; overflow: hidden; background: linear-gradient(160deg, #1A1614 0%, #000000 100%); color: #fff; }
.how .how-bg {
  position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none;
  background: radial-gradient(60% 80% at 15% 10%, rgba(242,115,31,.45), transparent 60%),
              radial-gradient(50% 70% at 85% 90%, rgba(255,145,76,.30), transparent 62%);
  background-size: 200% 200%;
  animation: howShift 14s ease-in-out infinite;
}
@keyframes howShift { 0%,100% { background-position: 0% 0%; } 50% { background-position: 100% 100%; } }
.how .wrap { position: relative; z-index: 1; }
.how .sec-head h2 { color: #fff; }
.how .sec-head .lead { color: rgba(255,255,255,0.72); }
.how .eyebrow { color: var(--orange); }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  position: relative; margin-top: 8px;
}
.how-grid::before { display: none; }

/* ---- Glowing sparkles (destellos) for sections ---- */
.spark {
  position: absolute; z-index: 1; width: 7px; height: 7px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, #fff 0%, rgba(255,255,255,0) 68%);
  filter: drop-shadow(0 0 7px rgba(255,210,170,.95));
  opacity: .8; animation: twinkle 3.4s ease-in-out infinite;
}
.spark.o { background: radial-gradient(circle, #FFD2A8 0%, rgba(255,145,76,0) 68%); filter: drop-shadow(0 0 9px rgba(255,145,76,.95)); }
.spark.s2 { width: 5px; height: 5px; animation-duration: 2.6s; animation-delay: -1s; }
.spark.s3 { width: 10px; height: 10px; animation-duration: 4.4s; animation-delay: -2s; }
.spark.lite { background: radial-gradient(circle, #F2731F 0%, rgba(242,115,31,0) 70%); filter: drop-shadow(0 0 6px rgba(242,115,31,.5)); opacity: .68; }
@keyframes twinkle { 0%,100% { opacity: .12; transform: scale(.5); } 50% { opacity: 1; transform: scale(1.3); } }
@keyframes dashMove { from { background-position: 0 0; } to { background-position: 36px 0; } }
.how-step {
  position: relative; z-index: 1; text-align: center; padding: 34px 24px 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(6px);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), background .3s ease, border-color .3s ease;
}
.how-step:hover { transform: translateY(-8px); background: rgba(255,255,255,0.08); border-color: rgba(255,145,76,0.5); }
.how-num {
  width: 76px; height: 76px; margin: 0 auto 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-orange);
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
  box-shadow: 0 12px 34px rgba(242,115,31,.5);
  border: 5px solid rgba(255,255,255,0.08);
  transition: transform .3s ease;
}
.how-step:hover .how-num { transform: scale(1.08) rotate(-4deg); }
.how-step h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.how-step p { color: rgba(255,255,255,0.66); font-size: 0.98rem; }

/* ---- Why cards (numbered) — moving bg + 3D ---- */
.why { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--cream) 0%, #FFFFFF 100%); }
.why .wb1 { width: 360px; height: 360px; top: -110px; left: -100px; background: radial-gradient(circle, rgba(255,145,76,.4), transparent 70%); }
.why .wb2 { width: 300px; height: 300px; bottom: -120px; right: -90px; background: radial-gradient(circle, rgba(242,115,31,.34), transparent 70%); animation-delay: -7s; }
.why .wrap { position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { position: relative; padding: 42px 34px 38px; overflow: hidden; }
.why-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-orange); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .35s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-num {
  position: absolute; top: 26px; right: 30px;
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  color: var(--cream); line-height: 1; letter-spacing: -0.02em;
  -webkit-text-stroke: 1px var(--line-strong);
  transition: color .3s ease, -webkit-text-stroke .3s ease;
}
.why-card:hover .why-num { color: rgba(255,145,76,.16); }
.why-ico {
  width: 64px; height: 64px; border-radius: 17px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255,145,76,.16), rgba(242,115,31,.10));
  color: var(--orange-deep);
  margin-bottom: 24px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s ease, color .3s ease;
}
.why-card:hover .why-ico { transform: translateY(-4px) rotate(-6deg) scale(1.06); background: var(--grad-orange); color: #fff; box-shadow: 0 12px 26px rgba(242,115,31,.4); }
.why-ico svg { width: 32px; height: 32px; }
.why-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.why-card p { color: var(--text-soft); }

/* ---- Categories bento ---- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.bento-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
  transform-style: preserve-3d; will-change: transform;
}
.bento-card:hover { box-shadow: var(--shadow-lift); border-color: var(--line-strong); }
.bento-media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--cream);
}
.bento-media.grad-orange { background: var(--grad-orange); }
.bento-media.grad-dark { background: linear-gradient(160deg, #22201D 0%, #0A0A0A 100%); }
.bm-fill {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.bento-card:hover .bm-fill { transform: scale(1.07); }
.bento-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 74px; height: 74px; color: rgba(255,255,255,0.5);
}
.bento-watermark svg { width: 100%; height: 100%; }
.bento-body {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px 18px;
}
.bento-body h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--ink); line-height: 1.12; }
.bento-count { display: block; margin-top: 5px; font-size: 0.78rem; font-weight: 600; color: var(--text-faint); }
.bento-go {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--cream); color: var(--orange-deep);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.bento-go svg { width: 17px; height: 17px; }
.bento-card:hover .bento-go { background: var(--grad-orange); color: #fff; transform: rotate(-8deg) scale(1.08); }

/* ---- FAQ ---- */
.faq-sec { background: var(--cream); }
.faq-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.faq-intro h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 16px; }
.faq-intro .lead { margin-bottom: 26px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-ico {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream); color: var(--orange-deep);
  transition: transform .25s ease, background .2s ease;
}
.faq-item summary .q-ico svg { width: 16px; height: 16px; }
.faq-item[open] summary .q-ico { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--text-soft); font-size: 0.96rem; line-height: 1.65; }
.faq-item[open] .faq-a { animation: faqReveal .34s cubic-bezier(.2,.7,.2,1); }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.faq-item summary { transition: background .2s ease; }
.faq-item:hover summary { background: rgba(255,145,76,0.05); }
.faq-item[open] summary { background: rgba(255,145,76,0.06); }
.faq-item .faq-a .pending { color: var(--orange-deep); font-weight: 600; }

/* ---- Photo CTA band ---- */
.cta-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 76px 64px;
  text-align: center;
  color: #fff;
  isolation: isolate;
}
.cta-photo .cta-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.cta-photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(118deg, rgba(10,10,10,0.82), rgba(242,115,31,0.62));
}
.cta-photo h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.cta-photo p { color: rgba(255,255,255,0.92); font-size: 1.1rem; margin: 16px auto 30px; max-width: 52ch; }

/* ---- Responsive ---- */
@media (max-width: 1040px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 940px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { order: -1; }
  .about-float-card { display: none; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .hero-trust strong { font-size: 1.8rem; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .cta-photo { padding: 52px 26px; }
  .hero-trust { gap: 16px 32px; }
}

/* ============================================================
   NEW: Who We Serve · By the Numbers · Featured strip
   ============================================================ */

/* ---- Who We Serve ---- */
.serve { position: relative; overflow: hidden; background: linear-gradient(180deg, #FFFFFF 0%, var(--cream) 100%); }
.serve .blob.b1 { width: 320px; height: 320px; top: -80px; left: -90px; background: radial-gradient(circle, rgba(255,145,76,.5), transparent 70%); }
.serve .blob.b2 { width: 260px; height: 260px; bottom: -90px; right: -70px; background: radial-gradient(circle, rgba(242,115,31,.4), transparent 70%); animation-delay: -6s; }
.serve .wrap { position: relative; z-index: 1; }
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.serve-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 28px 28px; box-shadow: var(--shadow-card);
  transition: box-shadow .3s ease, color .3s ease, transform .25s ease;
  transform-style: preserve-3d; will-change: transform;
  isolation: isolate;
}
.serve-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--grad-orange); opacity: 0; transition: opacity .3s ease;
}
.serve-card:hover { box-shadow: var(--shadow-orange); color: #fff; }
.serve-card:hover::before { opacity: 1; }
.serve-ico {
  width: 58px; height: 58px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255,145,76,.18), rgba(242,115,31,.12));
  color: var(--orange-deep); transition: background .3s ease, color .3s ease, transform .3s ease;
}
.serve-card:hover .serve-ico { background: rgba(255,255,255,0.22); color: #fff; transform: translateZ(30px) scale(1.05); }
.serve-ico svg { width: 28px; height: 28px; }
.serve-card h3 { font-size: 1.25rem; margin-bottom: 8px; transition: color .3s ease; }
.serve-card:hover h3 { color: #fff; }
.serve-card p { color: var(--text-soft); font-size: 0.94rem; transition: color .3s ease; }
.serve-card:hover p { color: rgba(255,255,255,0.92); }
.serve-go {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-size: 0.82rem; font-weight: 600; color: var(--orange-deep);
  opacity: 0; transform: translateX(-6px); transition: opacity .3s ease, transform .3s ease, color .3s ease;
}
.serve-card:hover .serve-go { opacity: 1; transform: none; color: #fff; }
.serve-go svg { width: 15px; height: 15px; }

/* ---- By the Numbers (dark, animated glow) ---- */
.numbers { position: relative; overflow: hidden; color: #fff; padding: 84px 0; background: linear-gradient(160deg, #1A1614 0%, #000000 100%); }
.numbers .num-bg {
  position: absolute; inset: 0; z-index: 0; opacity: .65; pointer-events: none;
  background: radial-gradient(50% 80% at 12% 18%, rgba(242,115,31,.5), transparent 60%),
              radial-gradient(46% 72% at 88% 86%, rgba(255,145,76,.34), transparent 62%);
  background-size: 200% 200%;
  animation: howShift 16s ease-in-out infinite;
}
.numbers::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 140% at 80% 0%, rgba(255,255,255,0.16), transparent 55%);
  pointer-events: none;
}
.numbers .wrap { position: relative; z-index: 2; }
.num-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
.num { position: relative; }
.num + .num::before {
  content: ""; position: absolute; left: -14px; top: 10%; height: 80%; width: 1px;
  background: rgba(255,255,255,0.26);
}
.num strong {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; color: #fff;
}
.num strong em { font-style: normal; }
.num span { display: block; margin-top: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.86); font-weight: 500; }

/* ---- Featured strip (auto-scroll) ---- */
.featured { overflow: hidden; }
.feature-track-wrap {
  position: relative; margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.feature-track {
  display: flex; gap: 18px; width: max-content;
  animation: featScroll 38s linear infinite;
}
.feature-track-wrap:hover .feature-track { animation-play-state: paused; }
@keyframes featScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.feat-card {
  flex: none; width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-card); display: flex; flex-direction: column; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.feat-media { aspect-ratio: 1 / 1; background-color: #fff; background-size: cover; background-position: center; border-bottom: 1px solid var(--line); overflow: hidden; }
.feat-media-fill { width: 100%; height: 100%; background-size: contain; background-repeat: no-repeat; background-position: center; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.feat-card:hover .feat-media-fill { transform: scale(1.06); }
.feat-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; }
.feat-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.feat-cat { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-deep); background: rgba(255,145,76,.13); padding: 5px 10px; border-radius: var(--r-pill); }
.feat-size { font-size: 0.72rem; font-weight: 600; color: var(--text-faint); border: 1px solid var(--line); padding: 4px 10px; border-radius: var(--r-pill); }
.feat-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.feat-card .feat-mail { font-size: 0.8rem; font-weight: 600; color: var(--orange-deep); display: inline-flex; align-items: center; gap: 6px; }
.feat-card .feat-mail svg { width: 14px; height: 14px; }

@media (max-width: 940px) {
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .num-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .num:nth-child(3)::before, .num + .num::before { display: none; }
}
@media (max-width: 560px) {
  .serve-grid { grid-template-columns: 1fr; }
  .hero { min-height: 86vh; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3rem); }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 10px; margin-top: 36px; padding-top: 22px; }
  .hero-trust strong { font-size: 1.45rem; }
  .hero-trust span { font-size: 0.72rem; }
  .num-grid { grid-template-columns: repeat(3, 1fr); gap: 16px 12px; }
  .num strong { font-size: 2rem; }
  .num span { font-size: 0.74rem; margin-top: 6px; }
  .why-card { padding: 32px 24px 28px; }
  .serve-card { padding: 28px 22px 24px; }
  .how-step { padding: 28px 20px 24px; }
  .mq-item { font-size: 1.2rem; padding: 0 18px; }
  .sec-head { margin-bottom: 36px; }
  .sec-foot { margin-top: 34px; }
  .about-points li { font-size: 0.94rem; }
  .cta-photo { padding: 46px 22px; }
}
