:root {
  --ink: #101113;
  --ink-soft: #1a1c20;
  --steel: #aeb3b8;
  --paper: #f4f3ef;
  --white: #ffffff;
  --orange: #f26522;
  --orange-deep: #cb4310;
  --line: rgba(16, 17, 19, .13);
  --muted: #62666b;
  --shadow: 0 24px 70px rgba(16, 17, 19, .13);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-sm { padding: 76px 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--orange-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--orange); }
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6.4vw, 6.3rem); max-width: 850px; }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 700px; }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 48px; }
.section-head > div:first-child { max-width: 760px; }
.section-head .lead { max-width: 460px; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(16,17,19,.94); border-color: rgba(255,255,255,.09); box-shadow: 0 12px 40px rgba(0,0,0,.2); backdrop-filter: blur(14px); }
.nav { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; min-width: 184px; }
.brand img { width: 178px; height: 58px; object-fit: contain; object-position: left center; filter: drop-shadow(0 5px 15px rgba(0,0,0,.22)); }
.nav-links { display: flex; align-items: center; gap: 30px; color: rgba(255,255,255,.78); font-size: .94rem; font-weight: 650; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.nav-cta { min-height: 46px; background: var(--orange); color: var(--white); }
.nav-cta:hover, .btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 14px 38px rgba(242,101,34,.27); }
.btn-primary:hover { background: #ff7130; }
.btn-ghost { border-color: rgba(255,255,255,.28); color: var(--white); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-line { border-color: var(--line); background: transparent; }
.menu-toggle { display: none; background: none; border: 0; color: white; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: currentColor; }

.hero {
  position: relative;
  min-height: 800px;
  padding: 154px 0 84px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 35%, rgba(242,101,34,.17), transparent 28%),
    linear-gradient(128deg, #0d0e10 0%, #17191d 58%, #0d0e10 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .88fr; gap: 60px; align-items: center; }
.hero .kicker { color: #ff8c55; }
.hero h1 span { color: var(--orange); }
.hero-copy .lead { color: rgba(255,255,255,.7); margin-top: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-note { margin-top: 28px; color: rgba(255,255,255,.5); font-size: .92rem; }
.product-stage {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 34px;
  background: linear-gradient(145deg, #f7f7f4, #d9dadd);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 40px 100px rgba(0,0,0,.3);
  overflow: hidden;
}
.product-stage::before { content: "FABRICADO EN GUATEMALA"; position: absolute; right: -38px; top: 46%; transform: rotate(90deg); font-size: .67rem; letter-spacing: .24em; color: rgba(16,17,19,.38); }
.product-stage::after { content: ""; position: absolute; left: 7%; right: 7%; bottom: 9%; height: 2px; background: linear-gradient(90deg, transparent, rgba(16,17,19,.22), transparent); }
.stage-img { position: absolute; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 28px 30px rgba(0,0,0,.24)); }
.stage-img.main { width: 78%; right: 3%; top: 10%; }
.stage-img.secondary { width: 41%; left: -1%; bottom: 5%; }
.stage-badge { position: absolute; left: 24px; top: 24px; z-index: 2; padding: 10px 14px; border-radius: 999px; color: var(--white); background: rgba(0,0,0,.44); border: 1px solid rgba(255,255,255,.13); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.proof { background: var(--white); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 34px 28px; border-right: 1px solid var(--line); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-number { display: block; font-size: clamp(1.85rem, 3vw, 3rem); font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.proof-label { display: block; margin-top: 8px; color: var(--muted); font-size: .9rem; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.audience-card { position: relative; min-height: 330px; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.audience-card .number { color: var(--orange); font-size: .75rem; font-weight: 900; letter-spacing: .15em; }
.audience-card h3 { margin-top: 80px; font-size: 1.7rem; }
.audience-card p { margin-top: 16px; color: var(--muted); }
.audience-card::after { content: ""; position: absolute; width: 110px; height: 110px; border: 1px solid rgba(242,101,34,.24); border-radius: 50%; right: -35px; top: -35px; }

.division-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.division-card { position: relative; min-height: 460px; padding: 42px; border-radius: 28px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); }
.division-card.food { color: white; background: linear-gradient(145deg,#111317,#292d31); }
.division-card.industry { background: linear-gradient(145deg,#fff,#e6e7e5); }
.division-card::before { content: ""; position: absolute; width: 260px; height: 260px; right: -70px; top: -70px; border: 1px solid currentColor; border-radius: 50%; opacity: .12; }
.division-code { font-size: .74rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
.division-card h3 { margin-top: 20px; max-width: 520px; font-size: clamp(2rem,3.2vw,3.4rem); }
.division-card p { margin-top: 18px; max-width: 570px; color: inherit; opacity: .7; }
.division-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.division-list span { padding: 7px 11px; border: 1px solid currentColor; border-radius: 999px; opacity: .67; font-size: .76rem; font-weight: 700; }
.division-card .product-silhouette { position: absolute; right: -3%; bottom: 4%; width: 44%; mix-blend-mode: screen; opacity: .35; }
.division-card .division-bottom { position: relative; z-index: 2; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { min-height: 250px; padding: 28px; background: white; border: 1px solid var(--line); border-radius: 20px; }
.service-card small { color: var(--orange-deep); font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin-top: 44px; }
.service-card p { margin-top: 12px; color: var(--muted); }

.catalog-preview { background: var(--ink); color: var(--white); }
.catalog-preview .lead { color: rgba(255,255,255,.62); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { background: var(--white); color: var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.product-media { position: relative; aspect-ratio: 4 / 3; background: linear-gradient(145deg, #f7f7f5, #e7e7e3); display: grid; place-items: center; overflow: hidden; }
.product-media img { width: 88%; height: 88%; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.045); }
.product-tag { position: absolute; left: 18px; top: 18px; padding: 7px 11px; border-radius: 999px; background: rgba(16,17,19,.86); color: white; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.product-body { padding: 26px; }
.product-body p { margin-top: 12px; color: var(--muted); font-size: .95rem; }
.product-link { display: inline-flex; margin-top: 20px; font-weight: 850; color: var(--orange-deep); }

.process-wrap { display: grid; grid-template-columns: .78fr 1.22fr; gap: 75px; align-items: start; }
.process-intro { position: sticky; top: 130px; }
.process-list { border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 62px 1fr; gap: 18px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-step span { color: var(--orange); font-weight: 900; }
.process-step p { margin-top: 8px; color: var(--muted); }

.steel-band { position: relative; overflow: hidden; padding: 90px 0; color: white; background: linear-gradient(115deg, #111317, #2b2e33 55%, #121316); }
.steel-band::after { content: ""; position: absolute; inset: -50% -20%; background: linear-gradient(112deg, transparent 42%, rgba(255,255,255,.08) 48%, transparent 54%); transform: translateX(-40%); animation: sheen 7s ease-in-out infinite; }
@keyframes sheen { 50% { transform: translateX(40%); } }
.steel-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; }
.steel-list { display: grid; gap: 14px; }
.steel-list div { padding: 18px 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.04); }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 54px; border-radius: 30px; background: var(--orange); color: white; }
.cta-panel p { margin-top: 14px; color: rgba(255,255,255,.76); max-width: 690px; }
.cta-panel .btn { background: white; color: var(--ink); }

.page-hero { padding: 168px 0 92px; color: white; background: radial-gradient(circle at 82% 32%, rgba(242,101,34,.18), transparent 25%), linear-gradient(130deg,#0e0f11,#1b1d21); }
.page-hero h1 { max-width: 950px; font-size: clamp(3rem, 5.7vw, 5.4rem); }
.page-hero .lead { color: rgba(255,255,255,.68); margin-top: 24px; }
.breadcrumbs { margin-bottom: 28px; color: rgba(255,255,255,.45); font-size: .86rem; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 35px; }
.filter-btn { border: 1px solid var(--line); background: transparent; padding: 10px 16px; border-radius: 999px; font-weight: 750; color: var(--muted); cursor: pointer; }
.filter-btn.active { background: var(--ink); color: white; border-color: var(--ink); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.catalog-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: opacity .2s, transform .2s; }
.catalog-card.hidden { display: none; }
.catalog-card .product-media { aspect-ratio: 1.08; }
.catalog-card details { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 16px; }
.catalog-card summary { cursor: pointer; font-weight: 800; }
.spec-list { padding-left: 18px; margin: 13px 0 0; color: var(--muted); font-size: .9rem; }
.card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.card-actions .btn { min-height: 44px; padding: 0 16px; font-size: .88rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.statement-card { min-height: 430px; padding: 42px; color: white; border-radius: 30px; background: linear-gradient(145deg,#181a1e,#30343a); display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow); }
.statement-card strong { color: var(--orange); font-size: 5rem; line-height: 1; }
.statement-card p { color: rgba(255,255,255,.7); max-width: 420px; }
.text-stack > * + * { margin-top: 24px; }
.text-stack p { color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value-card { padding: 28px; background: white; border: 1px solid var(--line); border-radius: 18px; }
.value-card p { color: var(--muted); margin-top: 10px; }

.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 60px; }
.contact-cards { display: grid; gap: 14px; margin-top: 36px; }
.contact-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.contact-card small { display: block; color: var(--muted); margin-bottom: 5px; }
.contact-card strong { font-size: 1.2rem; }
.contact-section { background:#f2f1ed; }
.contact-layout { display:grid; grid-template-columns:minmax(0,1.45fr) minmax(320px,.55fr); gap:22px; align-items:start; }
.contact-form-panel { padding:clamp(30px,5vw,64px); border-radius:26px; background:#fff; box-shadow:0 24px 70px rgba(16,17,19,.07); }
.contact-form-panel h2 { max-width:660px; }
.form-intro { max-width:720px; margin-top:18px; color:var(--muted); font-size:1rem; }
.commercial-form { margin-top:40px; }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:23px 18px; }
.field { display:grid; gap:9px; }
.field-full { grid-column:1 / -1; }
.field > span { color:#313337; font-size:.78rem; font-weight:850; letter-spacing:.015em; }
.field b,.form-actions b { color:var(--orange); }
.field input,.field select,.field textarea { width:100%; border:1px solid #d1d2cf; border-radius:12px; color:var(--ink); background:#f8f8f6; outline:none; transition:border-color .2s ease,box-shadow .2s ease,background .2s ease; }
.field input,.field select { min-height:54px; padding:0 15px; }
.field textarea { min-height:145px; padding:15px; resize:vertical; line-height:1.5; }
.field input::placeholder,.field textarea::placeholder { color:#999b98; }
.field input:focus,.field select:focus,.field textarea:focus { border-color:var(--orange); background:#fff; box-shadow:0 0 0 4px rgba(242,101,34,.12); }
.form-honey { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; opacity:0 !important; }
.form-actions { display:flex; align-items:center; gap:22px; margin-top:26px; }
.form-actions p { color:var(--muted); font-size:.76rem; }
.form-submit { min-width:210px; border:0; cursor:pointer; }
.form-submit:disabled { cursor:wait; opacity:.65; transform:none; }
.form-status { display:none; margin-top:20px; padding:15px 17px; border-radius:12px; font-size:.9rem; font-weight:750; }
.form-status.success { display:block; color:#155c38; background:#e5f7ed; border:1px solid #b6e3c9; }
.form-status.error { display:block; color:#842d1d; background:#fff0ec; border:1px solid #efc1b7; }
.contact-aside { display:grid; gap:16px; }
.contact-direct { padding:34px; border-radius:26px; color:#fff; background:#111316; }
.contact-direct h3 { margin-bottom:27px; font-size:1.75rem; }
.contact-direct > a,.contact-direct > div { display:block; padding:19px 0; border-top:1px solid rgba(255,255,255,.12); }
.contact-direct span { display:block; margin-bottom:6px; color:rgba(255,255,255,.5); font-size:.74rem; }
.contact-direct strong { display:block; overflow-wrap:anywhere; font-size:1rem; }
.contact-direct a:hover strong { color:#ff8043; }
.quote-tips { padding:28px 30px; border-radius:22px; color:#17191b; background:var(--orange); }
.quote-tips strong { display:block; font-size:1.02rem; }
.quote-tips p { margin-top:10px; font-size:.86rem; line-height:1.55; }
.quote-guide { padding: 38px; border-radius: 24px; background: var(--ink); color: white; }
.quote-guide ol { margin: 28px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.quote-guide li { counter-increment: steps; position: relative; padding: 18px 0 18px 52px; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.72); }
.quote-guide li::before { content: counter(steps, decimal-leading-zero); position: absolute; left: 0; color: var(--orange); font-weight: 900; }

.site-footer { padding: 70px 0 28px; background: #0d0e10; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 60px; }
.footer-brand img { width: 215px; }
.footer-brand p { margin-top: 18px; color: rgba(255,255,255,.55); max-width: 430px; }
.footer-col h3 { font-size: .86rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); }
.footer-links { display: grid; gap: 10px; margin-top: 18px; color: rgba(255,255,255,.72); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: .86rem; }
.whatsapp { position: fixed; z-index: 45; right: 20px; bottom: 20px; display: inline-flex; align-items: center; gap: 10px; padding: 14px 18px; color: white; background: #18a765; border-radius: 999px; font-weight: 850; box-shadow: 0 16px 42px rgba(0,0,0,.24); }
.whatsapp svg { width: 20px; height: 20px; fill: currentColor; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } [data-reveal] { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
  .nav-links { position: fixed; inset: 92px 18px auto; display: none; padding: 24px; border-radius: 20px; background: #15171a; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-grid, .steel-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .product-stage { min-height: 440px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .audience-grid, .product-grid, .catalog-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .division-grid { grid-template-columns: 1fr; }
  .process-wrap { grid-template-columns: 1fr; gap: 40px; }
  .process-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns:1fr; }
  .contact-aside { grid-template-columns:1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .nav { height: 78px; }
  .brand { min-width:150px; }
  .brand img { width: 156px; height:54px; }
  .nav-links { top: 78px; }
  .hero { padding: 128px 0 64px; }
  .hero-grid { gap: 44px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4.3rem); }
  .hero-actions .btn { width: 100%; }
  .product-stage { min-height: 340px; }
  .stage-img.main { width: 85%; top: 15%; }
  .stage-img.secondary { width: 44%; }
  .proof-item { padding: 26px 16px; }
  .proof-item:first-child { padding-left: 0; }
  .section-head { align-items: start; flex-direction: column; }
  .audience-grid, .product-grid, .catalog-grid, .values-grid, .service-grid { grid-template-columns: 1fr; }
  .division-card { min-height: 420px; padding: 30px; }
  .audience-card { min-height: 270px; }
  .audience-card h3 { margin-top: 54px; }
  .cta-panel { grid-template-columns: 1fr; padding: 34px 26px; gap: 28px; }
  .cta-panel .btn { width: 100%; }
  .page-hero { padding: 135px 0 70px; }
  .statement-card { min-height: 360px; padding: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp span { display: none; }
  .whatsapp { width: 56px; height: 56px; padding: 0; justify-content: center; }
  .contact-form-panel { margin:0 -2px; padding:30px 20px; border-radius:20px; }
  .form-grid { grid-template-columns:1fr; gap:19px; }
  .field-full { grid-column:auto; }
  .form-actions { align-items:stretch; flex-direction:column; gap:13px; }
  .form-submit { width:100%; }
  .contact-aside { grid-template-columns:1fr; }
  .contact-direct { padding:28px 24px; border-radius:20px; }
}

/* Home identity v2 — fire, steel and factory */
.home-v2 { background: #f2f1ed; }
.home-v2 .site-header:not(.scrolled) { background: linear-gradient(180deg,rgba(7,8,9,.82),transparent); }
.hero-fire { min-height: 650px; padding: 132px 0 68px; background: #0c0d0f; isolation: isolate; }
.hero-fire::before { z-index: -1; opacity: .26; background-size: 54px 54px; mask-image: linear-gradient(to right,black 0 38%,transparent 80%); }
.hero-photo { position: absolute; z-index: -3; inset: 0 0 0 42%; background: url('cocina-profesional-indunova.webp') center/cover no-repeat; }
.hero-fire::after { content:""; position:absolute; z-index:-2; inset:0; background: linear-gradient(90deg,#090a0c 0%,rgba(9,10,12,.96) 35%,rgba(9,10,12,.58) 64%,rgba(9,10,12,.24) 100%), linear-gradient(0deg,rgba(9,10,12,.54),transparent 45%); }
.hero-ember { position:absolute; z-index:-1; width:620px; height:620px; left:-250px; bottom:-360px; border-radius:50%; background:radial-gradient(circle,#ff7330 0%,rgba(242,101,34,.46) 24%,transparent 68%); filter:blur(16px); animation:emberPulse 5s ease-in-out infinite; }
@keyframes emberPulse { 50% { transform:scale(1.1); opacity:.72; } }
.hero-fire-grid { position:relative; z-index:2; display:grid; grid-template-columns:minmax(0,1fr) 290px; gap:58px; align-items:center; }
.hero-fire .hero-copy { max-width:700px; }
.eyebrow-fire { display:flex; align-items:center; gap:12px; margin:0 0 22px; color:#ff9a68; font-size:.79rem; font-weight:900; letter-spacing:.18em; text-transform:uppercase; }
.eyebrow-fire span { width:34px; height:34px; border-radius:50% 50% 50% 12%; transform:rotate(45deg); background:linear-gradient(135deg,#ffb06f,#f26522 58%,#a92408); box-shadow:0 0 32px rgba(242,101,34,.62); }
.hero-fire h1 { max-width:650px; font-size:clamp(3.25rem,5.2vw,4.9rem); }
.hero-fire h1 em { color:#ff7433; font-style:normal; }
.hero-fire .lead { max-width:670px; color:rgba(255,255,255,.72); }
.hero-trust { display:flex; flex-wrap:wrap; gap:18px; margin-top:32px; color:rgba(255,255,255,.62); font-size:.83rem; font-weight:750; }
.hero-trust span { display:flex; align-items:center; gap:9px; }
.hero-trust span::before { content:""; width:6px; height:6px; border-radius:50%; background:var(--orange); box-shadow:0 0 12px var(--orange); }
.hero-brandmark { position:relative; justify-self:end; width:280px; min-height:280px; display:grid; place-items:center; isolation:isolate; }
.hero-brandmark::before { content:""; position:absolute; z-index:-1; width:280px; height:280px; border-radius:50%; background:radial-gradient(circle,rgba(242,101,34,.32) 0%,rgba(242,101,34,.12) 38%,transparent 70%); filter:blur(2px); }
.hero-brandmark::after { content:""; position:absolute; z-index:-1; width:190px; height:190px; border:1px solid rgba(255,255,255,.16); border-radius:50%; box-shadow:0 0 0 32px rgba(255,255,255,.025); }
.hero-brandmark img { width:235px; height:auto; filter:drop-shadow(0 18px 36px rgba(0,0,0,.55)); }

.proof-deck { position:relative; z-index:3; padding:22px 0; overflow:hidden; color:#fff; background:#0f1113; border-bottom:3px solid var(--orange); }
.proof-deck::before { content:""; position:absolute; width:460px; height:460px; left:-250px; top:-260px; border-radius:50%; background:radial-gradient(circle,rgba(242,101,34,.2),transparent 70%); }
.proof-deck-grid { position:relative; display:grid; grid-template-columns:1.35fr .62fr .72fr 1.25fr; gap:12px; }
.proof-deck article { min-height:148px; border-radius:20px; }
.proof-intro { position:relative; padding:25px 26px; display:grid; grid-template-columns:52px 1fr; gap:18px; align-items:end; overflow:hidden; background:linear-gradient(135deg,#1d2024,#15171a); border:1px solid rgba(255,255,255,.08); }
.proof-intro::after { content:""; position:absolute; width:150px; height:150px; right:-72px; top:-72px; border:1px solid rgba(242,101,34,.25); border-radius:50%; }
.proof-label { position:absolute; left:26px; top:21px; color:#ff8247; font-size:.67rem; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }
.proof-intro svg { width:45px; height:45px; fill:none; stroke:#ff7130; stroke-width:1.55; stroke-linecap:round; stroke-linejoin:round; }
.proof-intro strong { display:block; font-size:1.25rem; }
.proof-intro small { display:block; margin-top:4px; color:rgba(255,255,255,.53); font-size:.76rem; }
.proof-stat { padding:22px; display:flex; flex-direction:column; justify-content:center; background:#17191c; border:1px solid rgba(255,255,255,.08); }
.proof-stat > strong { display:flex; align-items:flex-start; color:#ff7130; font-size:clamp(3.1rem,4.3vw,4.5rem); line-height:.8; letter-spacing:-.075em; }
.proof-stat sup { margin:0 0 0 5px; color:#fff; font-size:.38em; line-height:1; }
.proof-stat p { margin-top:22px; color:rgba(255,255,255,.7); font-size:.8rem; font-weight:800; }
.proof-delivery { position:relative; padding:24px 26px; display:flex; flex-direction:column; justify-content:flex-end; overflow:hidden; color:#101113; background:linear-gradient(130deg,#ff7a36,#f26522 58%,#d94b10); box-shadow:0 16px 38px rgba(242,101,34,.17); }
.proof-delivery > span { font-size:.68rem; font-weight:900; letter-spacing:.13em; text-transform:uppercase; opacity:.68; }
.proof-delivery > strong { max-width:260px; margin-top:6px; font-size:1.38rem; line-height:1.08; letter-spacing:-.03em; }
.delivery-route { position:absolute; left:25px; right:25px; top:25px; height:30px; border-bottom:1px dashed rgba(16,17,19,.35); }
.delivery-route i { position:absolute; left:0; bottom:-4px; width:8px; height:8px; border-radius:50%; background:#101113; box-shadow:0 0 0 5px rgba(16,17,19,.12); }
.delivery-route svg { position:absolute; right:0; bottom:-9px; width:34px; height:34px; fill:none; stroke:#101113; stroke-width:1.65; stroke-linecap:round; stroke-linejoin:round; animation:deliveryPulse 2.6s ease-in-out infinite; }
@keyframes deliveryPulse { 50% { transform:translateX(-8px); } }

.impact-strip { position:relative; z-index:3; margin-top:-1px; color:white; background:#111316; border-top:1px solid rgba(255,255,255,.1); border-bottom:3px solid var(--orange); }
.impact-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.impact-item { min-height:142px; padding:28px 24px; display:flex; align-items:center; gap:17px; border-right:1px solid rgba(255,255,255,.1); }
.impact-item:last-child { border-right:0; }
.impact-icon { flex:0 0 auto; width:42px; height:42px; display:grid; place-items:center; border:1px solid rgba(242,101,34,.42); border-radius:13px; color:#ff8247; background:rgba(242,101,34,.08); }
.impact-icon svg,.process-track svg { width:22px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.impact-item strong { display:block; font-size:clamp(1.75rem,2.6vw,2.6rem); line-height:1; letter-spacing:-.045em; }
.impact-item p { margin-top:8px; color:rgba(255,255,255,.53); font-size:.86rem; }

.divisions-v2 { background:#f2f1ed; }
.division-rows { display:grid; gap:14px; }
.division-row { position:relative; min-height:220px; display:grid; grid-template-columns:70px minmax(0,1fr) auto 58px; gap:28px; align-items:center; padding:34px 34px 34px 28px; overflow:hidden; border-radius:22px; transition:transform .25s ease,box-shadow .25s ease; }
.division-row:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.division-row::before { content:""; position:absolute; inset:0 auto 0 0; width:5px; background:var(--orange); }
.division-row-food { color:white; background:linear-gradient(115deg,#111317,#22262a); }
.division-row-industry { color:var(--ink); background:white; border:1px solid var(--line); }
.division-no { align-self:start; color:var(--orange); font-size:1rem; font-weight:950; }
.division-row-copy h3 { margin-top:9px; font-size:clamp(2rem,3.4vw,3.5rem); }
.division-row-copy p { max-width:720px; margin-top:15px; color:inherit; opacity:.64; }
.division-badges { display:grid; gap:8px; min-width:120px; }
.division-badges span { padding:7px 10px; border:1px solid currentColor; border-radius:999px; opacity:.55; font-size:.72rem; font-weight:800; text-align:center; }
.division-arrow { width:48px; height:48px; display:grid; place-items:center; border-radius:50%; color:white; background:var(--orange); font-size:1.35rem; transition:transform .25s ease; }
.division-row:hover .division-arrow { transform:rotate(45deg); }

.gastronomy-showcase { display:grid; grid-template-columns:minmax(0,1.08fr) minmax(420px,.92fr); min-height:720px; background:#0f1113; color:white; }
.showcase-image { position:relative; min-height:620px; overflow:hidden; }
.showcase-image::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,transparent 55%,#0f1113),linear-gradient(0deg,rgba(0,0,0,.35),transparent 50%); }
.showcase-image img { width:100%; height:100%; object-fit:cover; }
.showcase-image span { position:absolute; z-index:2; left:28px; bottom:24px; padding:7px 10px; border-radius:999px; color:rgba(255,255,255,.58); background:rgba(0,0,0,.52); font-size:.67rem; letter-spacing:.1em; text-transform:uppercase; }
.showcase-copy { padding:92px clamp(34px,6vw,92px) 86px 38px; align-self:center; }
.showcase-copy .lead { margin-top:24px; color:rgba(255,255,255,.62); }
.feature-lines { margin:34px 0; border-top:1px solid rgba(255,255,255,.13); }
.feature-lines > div { display:grid; grid-template-columns:38px 1fr; gap:15px; padding:18px 0; border-bottom:1px solid rgba(255,255,255,.13); }
.feature-lines span { color:var(--orange); font-size:.74rem; font-weight:900; }
.feature-lines p { color:rgba(255,255,255,.58); font-size:.9rem; }
.feature-lines strong { display:block; margin-bottom:3px; color:white; font-size:1rem; }
.showcase-copy .btn-dark { background:white; color:var(--ink); }

.process-v2 { background:white; }
.process-track { position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:24px; overflow:hidden; }
.process-track article { position:relative; min-height:300px; padding:30px; background:white; }
.process-track article::after { content:""; position:absolute; left:0; right:100%; bottom:0; height:4px; background:var(--orange); transition:right .35s ease; }
.process-track article:hover::after { right:0; }
.process-track article > span { color:var(--orange); font-size:.73rem; font-weight:950; letter-spacing:.12em; }
.process-track svg { width:36px; height:36px; margin-top:58px; color:#2b2e32; }
.process-track h3 { margin-top:20px; font-size:1.45rem; }
.process-track p { margin-top:10px; color:var(--muted); font-size:.92rem; }
.cta-fire { position:relative; overflow:hidden; background:linear-gradient(118deg,#f26522,#d7430f 62%,#8d2209); }
.cta-fire::after { content:""; position:absolute; width:330px; height:330px; right:-80px; top:-180px; border:1px solid rgba(255,255,255,.22); border-radius:50%; }
.cta-fire > * { position:relative; z-index:2; }
.cta-overline { margin-bottom:10px; font-size:.72rem; font-weight:900; letter-spacing:.15em; text-transform:uppercase; }

@media (max-width:1080px) {
  .hero-fire-grid { grid-template-columns:1fr 220px; gap:38px; }
  .hero-brandmark { width:215px; min-height:215px; }
  .hero-brandmark::before { width:215px; height:215px; }
  .hero-brandmark::after { width:150px; height:150px; }
  .hero-brandmark img { width:185px; }
  .impact-grid { grid-template-columns:repeat(2,1fr); }
  .impact-item:nth-child(2) { border-right:0; }
  .impact-item:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.1); }
  .division-row { grid-template-columns:52px minmax(0,1fr) 52px; }
  .division-badges { display:none; }
  .gastronomy-showcase { grid-template-columns:1fr; }
  .showcase-image { min-height:500px; }
  .showcase-image::after { background:linear-gradient(0deg,#0f1113 0%,transparent 35%); }
  .showcase-copy { padding:42px 40px 76px; }
  .process-track { grid-template-columns:repeat(2,1fr); }
  .proof-deck-grid { grid-template-columns:1.2fr .65fr .65fr; }
  .proof-delivery { grid-column:1 / -1; min-height:124px; }
}

@media (max-width:620px) {
  .hero-fire { min-height:auto; padding:124px 0 58px; }
  .hero-photo { inset:0; opacity:.42; background-position:60% center; }
  .hero-fire::after { background:linear-gradient(90deg,rgba(7,8,9,.96),rgba(7,8,9,.64)),linear-gradient(0deg,#090a0c 0%,transparent 50%); }
  .hero-fire-grid { display:block; }
  .hero-fire h1 { max-width:360px; font-size:clamp(2.7rem,12vw,3.65rem); }
  .hero-brandmark { display:none; }
  .hero-trust { gap:11px 16px; }
  .hero-trust span { font-size:.76rem; }
  .impact-item { min-height:125px; padding:22px 12px; gap:11px; }
  .impact-icon { width:34px; height:34px; border-radius:10px; }
  .impact-icon svg { width:18px; }
  .impact-item strong { font-size:1.7rem; }
  .impact-item p { font-size:.78rem; line-height:1.3; }
  .division-row { min-height:0; grid-template-columns:1fr 44px; gap:22px; padding:28px 24px 30px; }
  .division-no { grid-column:1 / -1; }
  .division-row-copy h3 { font-size:2.1rem; }
  .division-arrow { grid-column:2; grid-row:2; align-self:start; width:42px; height:42px; }
  .showcase-image { min-height:390px; }
  .showcase-copy { padding:24px 22px 64px; }
  .process-track { grid-template-columns:1fr; }
  .process-track article { min-height:235px; }
  .process-track svg { margin-top:34px; }
  .proof-deck { padding:14px 0; }
  .proof-deck-grid { grid-template-columns:1fr 1fr; gap:9px; }
  .proof-deck article { min-height:126px; border-radius:16px; }
  .proof-intro { grid-column:1 / -1; min-height:116px !important; padding:23px 22px; grid-template-columns:45px 1fr; }
  .proof-label { left:22px; top:16px; }
  .proof-intro svg { width:38px; height:38px; }
  .proof-stat { padding:20px; }
  .proof-stat > strong { font-size:3.4rem; }
  .proof-stat p { margin-top:18px; font-size:.75rem; }
  .proof-delivery { grid-column:1 / -1; min-height:140px !important; padding:22px; }
  .proof-delivery > strong { max-width:280px; font-size:1.45rem; }
  .delivery-route { left:22px; right:22px; top:22px; }
}

/* Dedicated corporate contact page */
.contact-page { background:#ecebe6; }
.contact-hero { min-height:430px; padding:142px 0 72px; background:linear-gradient(112deg,#0b0c0e 0%,#15181b 68%,#25282c 100%); }
.contact-hero::after { content:""; position:absolute; width:460px; height:460px; right:-80px; top:30px; border:1px solid rgba(242,101,34,.18); border-radius:50%; box-shadow:0 0 0 80px rgba(242,101,34,.025); }
.contact-hero .container { position:relative; z-index:2; }
.contact-hero h1 { max-width:720px; font-size:clamp(3rem,5.3vw,5rem); }
.contact-hero .lead { max-width:640px; margin-top:22px; color:rgba(255,255,255,.66); }
.contact-page .contact-section { padding-top:72px; }
.contact-page .contact-form-panel { border:1px solid rgba(16,17,19,.07); box-shadow:0 28px 80px rgba(16,17,19,.09); }
.contact-page .contact-form-panel h2 { font-size:clamp(2.2rem,3.4vw,3.5rem); }
.contact-page .contact-direct { background:linear-gradient(145deg,#101215,#202328); box-shadow:0 24px 60px rgba(16,17,19,.14); }

@media (max-width:620px) {
  .contact-hero { min-height:auto; padding:118px 0 58px; }
  .contact-hero h1 { font-size:clamp(2.65rem,12vw,3.65rem); }
  .contact-page .contact-section { padding-top:42px; }
}

/* Respaldo Indunova — high-impact proof panel */
.proof-feature { position:relative; overflow:hidden; color:#111316; background:#f26522; }
.proof-feature::before { content:""; position:absolute; width:520px; height:520px; right:-90px; top:50%; transform:translateY(-50%); background:url('logo-indunova.png') center/contain no-repeat; opacity:.075; filter:grayscale(1) brightness(.2); }
.proof-feature-grid { position:relative; z-index:1; min-height:330px; display:grid; grid-template-columns:1.25fr .62fr .72fr; grid-template-rows:1fr auto; column-gap:clamp(30px,5vw,80px); align-items:center; padding-top:58px; }
.proof-feature-title { max-width:530px; }
.proof-feature-title > p { margin-bottom:15px; font-size:.75rem; font-weight:950; letter-spacing:.16em; text-transform:uppercase; }
.proof-feature-title h2 { font-size:clamp(2.15rem,3.8vw,4rem); line-height:.98; letter-spacing:-.045em; }
.proof-number { position:relative; align-self:stretch; display:flex; flex-direction:column; justify-content:center; padding-left:clamp(24px,3vw,48px); border-left:1px solid rgba(17,19,22,.25); }
.proof-number strong { display:flex; align-items:flex-start; color:#111316; font-size:clamp(5rem,8.5vw,8.6rem); line-height:.75; letter-spacing:-.085em; font-variant-numeric:tabular-nums; }
.proof-number strong > span { color:inherit; font:inherit; line-height:inherit; letter-spacing:inherit; }
.proof-number sup { margin:4px 0 0 9px; color:#fff; font-size:.32em; line-height:1; letter-spacing:0; }
.proof-number p { max-width:210px; margin-top:24px; font-size:.92rem; font-weight:800; line-height:1.35; }
.proof-feature-footer { grid-column:1 / -1; min-height:66px; display:flex; align-items:center; gap:34px; margin-top:45px; border-top:1px solid rgba(17,19,22,.28); font-size:.75rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.proof-feature-footer span { display:flex; align-items:center; gap:10px; }
.proof-feature-footer span::before { content:""; width:6px; height:6px; border-radius:50%; background:#111316; }

@media (max-width:900px) {
  .proof-feature-grid { grid-template-columns:1fr 1fr; grid-template-rows:auto auto auto; gap:0; padding-top:50px; }
  .proof-feature-title { grid-column:1 / -1; max-width:680px; margin-bottom:48px; }
  .proof-number { min-height:190px; padding:28px 20px 30px 0; border-top:1px solid rgba(17,19,22,.25); border-left:0; }
  .proof-number + .proof-number { padding-left:30px; border-left:1px solid rgba(17,19,22,.25); }
  .proof-number strong { font-size:clamp(4.8rem,15vw,7.5rem); }
  .proof-feature-footer { margin-top:0; }
}

@media (max-width:620px) {
  .proof-feature::before { width:340px; height:340px; right:-135px; top:115px; transform:none; }
  .proof-feature-grid { width:100%; padding:48px 22px 0; }
  .proof-feature-title { margin-bottom:40px; }
  .proof-feature-title h2 { max-width:360px; font-size:2.55rem; }
  .proof-number { min-height:190px; padding:28px 16px 30px 0; }
  .proof-number + .proof-number { padding-left:22px; }
  .proof-number strong { font-size:clamp(4.2rem,22vw,6.4rem); }
  .proof-number p { margin-top:20px; font-size:.8rem; }
  .proof-feature-footer { min-height:104px; flex-wrap:wrap; align-content:center; gap:10px 20px; margin-top:0; }
  .proof-feature-footer span { font-size:.65rem; }
}

/* Editorial refinements */
.impact-ledger { min-height:138px; display:grid; grid-template-columns:1.15fr .65fr .65fr 1fr; align-items:center; }
.impact-intro { max-width:240px; color:rgba(255,255,255,.7); font-size:1.05rem; line-height:1.35; }
.impact-fact,.impact-origin { min-height:70px; padding-left:28px; display:flex; flex-direction:column; justify-content:center; border-left:1px solid rgba(255,255,255,.13); }
.impact-fact strong { font-size:2.65rem; line-height:1; letter-spacing:-.05em; }
.impact-fact span,.impact-origin span { margin-top:8px; color:rgba(255,255,255,.48); font-size:.82rem; }
.impact-origin strong { font-size:1.25rem; }

.services-editorial { background:#f2f1ed; }
.editorial-intro { display:grid; grid-template-columns:1fr 1fr; gap:28px 70px; align-items:end; margin-bottom:70px; }
.editorial-intro .kicker { grid-column:1 / -1; margin-bottom:0; }
.editorial-intro h2 { max-width:750px; }
.editorial-intro .lead { justify-self:end; }
.service-pair { display:grid; grid-template-columns:1fr 1fr; border-top:1px solid #bfc0bd; border-bottom:1px solid #bfc0bd; }
.service-story { position:relative; min-height:350px; padding:54px 64px 52px 0; }
.service-story + .service-story { padding-left:64px; border-left:1px solid #bfc0bd; }
.service-line { display:block; width:52px; height:4px; background:var(--orange); }
.service-story h3 { max-width:500px; margin-top:52px; font-size:clamp(2rem,3.2vw,3.2rem); }
.service-story p { max-width:520px; margin-top:22px; color:var(--muted); font-size:1.02rem; }
.story-link { display:inline-flex; align-items:center; gap:14px; margin-top:34px; color:var(--orange-deep); font-weight:850; }
.story-link b { font-size:1.25rem; transition:transform .2s ease; }
.service-story:hover .story-link b { transform:translateX(6px); }

.use-in-action { padding:104px 0 0; background:#111316; color:white; overflow:hidden; }
.action-heading { display:grid; grid-template-columns:1.15fr .85fr; gap:28px 70px; align-items:end; padding-bottom:50px; }
.action-heading .kicker { grid-column:1 / -1; margin-bottom:0; }
.action-heading .lead { justify-self:end; color:rgba(255,255,255,.6); }
.action-gallery { width:min(calc(100% - 40px),1380px); margin:0 auto; display:grid; grid-template-columns:1.2fr .8fr; gap:12px; align-items:end; }
.action-photo { position:relative; margin:0; overflow:hidden; background:#202226; }
.action-photo-main { height:640px; border-radius:24px 0 0 0; }
.action-photo-side { height:520px; border-radius:0 24px 0 0; }
.action-photo img { width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.7,.2,1); }
.action-photo:hover img { transform:scale(1.025); }
.action-photo::after { content:""; position:absolute; inset:45% 0 0; background:linear-gradient(transparent,rgba(0,0,0,.86)); }
.action-photo figcaption { position:absolute; z-index:2; left:32px; right:32px; bottom:30px; }
.action-photo figcaption strong { display:block; font-size:1.5rem; }
.action-photo figcaption span { display:block; margin-top:6px; color:rgba(255,255,255,.66); font-size:.92rem; }

@media (max-width:1080px) {
  .impact-ledger { grid-template-columns:1fr 1fr 1fr; }
  .impact-intro { display:none; }
  .impact-fact:first-of-type { padding-left:0; border-left:0; }
  .editorial-intro,.action-heading { grid-template-columns:1fr; }
  .editorial-intro .lead,.action-heading .lead { justify-self:start; }
  .service-story { padding-right:38px; }
  .service-story + .service-story { padding-left:38px; }
  .action-photo-main { height:540px; }
  .action-photo-side { height:440px; }
}

@media (max-width:620px) {
  .impact-ledger { min-height:0; grid-template-columns:1fr 1fr; }
  .impact-fact,.impact-origin { min-height:112px; padding:22px 12px; }
  .impact-fact:first-of-type { border-right:1px solid rgba(255,255,255,.13); }
  .impact-origin { grid-column:1 / -1; align-items:center; text-align:center; border-top:1px solid rgba(255,255,255,.13); border-left:0; }
  .impact-fact strong { font-size:2.25rem; }
  .services-editorial { padding-top:82px; }
  .editorial-intro { margin-bottom:48px; }
  .service-pair { grid-template-columns:1fr; }
  .service-story,.service-story + .service-story { min-height:0; padding:38px 0 42px; border-left:0; }
  .service-story + .service-story { border-top:1px solid #bfc0bd; }
  .service-story h3 { margin-top:34px; font-size:2.25rem; }
  .use-in-action { padding-top:78px; }
  .action-heading { padding-bottom:36px; }
  .action-gallery { width:100%; grid-template-columns:1fr; gap:2px; }
  .action-photo-main,.action-photo-side { height:420px; border-radius:0; }
  .action-photo figcaption { left:22px; right:22px; bottom:22px; }
}

/* Contact conversion and search-focused product pages */
.home-contact { background:linear-gradient(135deg,#ecebe6,#f7f6f2); }
.home-contact .contact-form-panel { border:1px solid rgba(16,17,19,.08); }
.seo-intro { max-width:760px; margin-top:22px; color:rgba(255,255,255,.66); }
.seo-intro a { color:#ff8b51; font-weight:800; text-decoration:underline; text-underline-offset:4px; }
.product-shortcuts { display:flex; flex-wrap:wrap; gap:9px; margin-top:-24px; position:relative; z-index:2; }
.product-shortcuts a { padding:10px 14px; border:1px solid var(--line); border-radius:999px; background:white; font-size:.8rem; font-weight:800; box-shadow:0 8px 24px rgba(16,17,19,.06); }
.product-shortcuts a:hover { color:var(--orange-deep); border-color:rgba(242,101,34,.45); }
.seo-hero .hero-actions { margin-top:32px; }
.seo-hero .btn-line { color:white; border-color:rgba(255,255,255,.3); }
.product-feature-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.seo-copy { margin-top:24px; line-height:1.75; }
.trust-list { display:grid; gap:13px; margin-top:30px; }
.trust-list span { display:flex; align-items:center; gap:11px; font-weight:750; }
.trust-list span::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--orange); box-shadow:0 0 0 5px rgba(242,101,34,.1); }
.detail-media { margin:0; overflow:hidden; border-radius:26px; background:#17191c; box-shadow:var(--shadow); }
.detail-media img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.detail-media figcaption { padding:14px 18px; color:rgba(255,255,255,.62); background:#17191c; font-size:.82rem; }
.models-section { background:white; }
.model-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.model-card { overflow:hidden; border:1px solid var(--line); border-radius:22px; background:#f5f4f0; transition:transform .2s ease,box-shadow .2s ease; }
.model-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.model-card img { width:100%; height:250px; object-fit:contain; padding:24px; background:#e8e8e5; }
.model-card > div { padding:26px; }
.model-card span { color:var(--orange-deep); font-size:.72rem; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.model-card h3 { margin-top:10px; font-size:1.6rem; }
.model-card p { min-height:78px; margin-top:13px; color:var(--muted); font-size:.92rem; }
.model-card b { display:inline-block; margin-top:18px; color:var(--orange-deep); }
.faq-layout { display:grid; grid-template-columns:.7fr 1.3fr; gap:70px; }
.faq-list { border-top:1px solid var(--line); }
.faq-list details { padding:22px 0; border-bottom:1px solid var(--line); }
.faq-list summary { cursor:pointer; font-size:1.08rem; font-weight:850; }
.faq-list p { margin-top:13px; color:var(--muted); }
.product-detail { padding:145px 0 96px; background:linear-gradient(145deg,#111316,#25282c); color:white; }
.product-detail .breadcrumbs { color:rgba(255,255,255,.5); }
.product-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; margin-top:36px; }
.product-detail-image { margin:0; padding:36px; border-radius:28px; background:linear-gradient(145deg,#f4f4f0,#cfd1d2); }
.product-detail-image img { width:100%; aspect-ratio:4/3; object-fit:contain; mix-blend-mode:multiply; }
.product-detail-copy h1 { font-size:clamp(3rem,5vw,5.5rem); }
.product-detail-copy .lead { margin-top:24px; color:rgba(255,255,255,.67); }
.detail-specs { margin:34px 0 0; padding:0; list-style:none; border-top:1px solid rgba(255,255,255,.15); }
.detail-specs li { display:grid; grid-template-columns:.85fr 1.15fr; gap:18px; padding:15px 0; border-bottom:1px solid rgba(255,255,255,.15); }
.detail-specs strong { font-size:.82rem; }
.detail-specs span { color:rgba(255,255,255,.63); font-size:.88rem; }
.detail-actions { display:flex; flex-wrap:wrap; gap:11px; margin-top:30px; }
.product-detail .btn-line { color:white; border-color:rgba(255,255,255,.28); }
.product-note { margin-top:20px; color:rgba(255,255,255,.45); font-size:.74rem; line-height:1.5; }
.product-use { background:white; }
.use-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:40px; }
.use-cards article { min-height:190px; padding:28px; border:1px solid var(--line); border-radius:20px; background:#f5f4f0; }
.use-cards p { margin-top:14px; color:var(--muted); }

@media (max-width:900px) {
  .product-feature-grid,.product-detail-grid,.faq-layout { grid-template-columns:1fr; }
  .model-grid { grid-template-columns:repeat(2,1fr); }
  .product-detail-grid { gap:40px; }
}

@media (max-width:620px) {
  .product-shortcuts { margin-top:-12px; }
  .model-grid,.use-cards { grid-template-columns:1fr; }
  .model-card p { min-height:0; }
  .product-detail { padding:118px 0 70px; }
  .product-detail-image { padding:20px; border-radius:20px; }
  .detail-specs li { grid-template-columns:1fr; gap:4px; }
  .detail-actions .btn { width:100%; }
}
