@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root{
  --ceitam-red:#d92f32;
  --ceitam-red-dark:#a70f17;
  --ceitam-red-deep:#62070c;
  --ink:#111214;
  --ink-2:#202226;
  --text:#1a1d21;
  --muted:#60656e;
  --line:#e4e6e9;
  --soft:#f6f7f8;
  --white:#fff;
  --tlv-blue:#0074b8;
  --tlv-blue-deep:#003d66;
  --radius:18px;
  --radius-sm:12px;
  --shadow:0 18px 46px rgba(13,17,23,.10);
  --shadow-soft:0 10px 26px rgba(13,17,23,.07);
  --container:1200px;
  --header-h:60px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 18px)}
body{font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;background:#fff;color:var(--text);line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden}
a{color:inherit}
img{display:block;max-width:100%}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
.container{width:min(var(--container),calc(100% - 40px));margin-inline:auto}
.section{padding:96px 0}
.section.compact{padding:76px 0}
.section-soft{background:var(--soft)}
.section-dark{background:#0e0f11;color:#fff}
.section-head{max-width:760px;margin:0 auto 44px;text-align:center}
.section-head.align-left{margin-left:0;text-align:left}
.eyebrow{display:inline-flex;align-items:center;gap:10px;margin-bottom:14px;font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;font-weight:800;color:var(--ceitam-red)}
.section-head .eyebrow::before,.section-head .eyebrow::after{content:"";width:24px;height:2px;background:currentColor;opacity:.9}
.section-head h2,.page-heading,.display-title{font-family:Oswald,Inter,sans-serif;letter-spacing:-.015em;line-height:1.05}
.section-head h2{font-size:clamp(2rem,4vw,3.1rem);color:var(--ink)}
.section-head p{margin-top:15px;color:var(--muted);font-size:clamp(.96rem,1.5vw,1.08rem);line-height:1.65}
.section-dark .section-head h2,.section-dark .section-head p{color:#fff}
.section-dark .section-head p{color:rgba(255,255,255,.7)}

/* HEADER */
.site-header{position:fixed;z-index:1000;inset:0 0 auto 0;background:rgba(255,255,255,.96);border-bottom:1px solid rgba(17,18,20,.09);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);transition:box-shadow .25s ease,background .25s ease}
.site-header.is-scrolled{box-shadow:0 12px 30px rgba(13,17,23,.08);background:rgba(255,255,255,.985)}
.nav{height:var(--header-h);display:flex;align-items:center;justify-content:space-between;gap:22px}
.brand-link{display:inline-flex;align-items:center;min-width:180px;text-decoration:none}
.brand-logo{height:48px;width:auto;object-fit:contain}
.nav-list{display:flex;align-items:center;gap:28px;list-style:none}
.nav-link{position:relative;text-decoration:none;color:#22252a;font-size:.86rem;font-weight:700;padding:18px 0}
.nav-link::after{content:"";position:absolute;left:0;right:100%;bottom:12px;height:2px;background:var(--ceitam-red);transition:right .22s ease}
.nav-link:hover,.nav-link[aria-current="page"]{color:var(--ceitam-red)}
.nav-link:hover::after,.nav-link[aria-current="page"]::after{right:0}
.nav-cta{display:inline-flex;align-items:center;justify-content:center;min-height:36px;padding:8px 16px;border-radius:999px;background:var(--ceitam-red);color:#fff;text-decoration:none;font-size:.82rem;font-weight:800;box-shadow:0 8px 20px rgba(217,47,50,.2);transition:transform .2s ease,background .2s ease}
.nav-cta:hover{transform:translateY(-1px);background:var(--ceitam-red-dark)}
.menu-toggle{display:none;width:42px;height:42px;border:1px solid var(--line);border-radius:12px;background:#fff;color:var(--ink);align-items:center;justify-content:center}
.menu-toggle span,.menu-toggle::before,.menu-toggle::after{content:"";display:block;width:18px;height:2px;background:currentColor;border-radius:999px;transition:.22s ease}
.menu-toggle span{margin:4px 0}
.menu-toggle.active span{opacity:0}
.menu-toggle.active::before{transform:translateY(6px) rotate(45deg)}
.menu-toggle.active::after{transform:translateY(-6px) rotate(-45deg)}

/* BUTTONS */
.btn-row{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;padding:11px 22px;border-radius:999px;text-decoration:none;border:1px solid transparent;font-size:.86rem;font-weight:800;transition:transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease,border-color .2s ease}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--ceitam-red);color:#fff;box-shadow:0 10px 24px rgba(217,47,50,.24)}
.btn-primary:hover{background:var(--ceitam-red-dark)}
.btn-light{background:#fff;color:var(--ink);box-shadow:0 10px 28px rgba(0,0,0,.13)}
.btn-light:hover{box-shadow:0 14px 34px rgba(0,0,0,.18)}
.btn-outline-light{border-color:rgba(255,255,255,.72);color:#fff;background:rgba(255,255,255,.03)}
.btn-outline-light:hover{background:#fff;color:var(--ink)}
.btn-outline{border-color:var(--ceitam-red);color:var(--ceitam-red);background:#fff}
.btn-outline:hover{background:var(--ceitam-red);color:#fff}
.btn-dark{background:#111214;color:#fff}
.btn-tlv{background:var(--tlv-blue);color:#fff;box-shadow:0 12px 28px rgba(0,116,184,.22)}
.btn-tlv:hover{background:#00659f}
.text-link{display:inline-flex;align-items:center;gap:8px;color:var(--ceitam-red);font-weight:800;text-decoration:none;font-size:.84rem}
.text-link:hover{text-decoration:underline;text-underline-offset:4px}

/* HOME HERO */
.home-hero{position:relative;min-height:590px;padding:calc(var(--header-h) + 68px) 0 74px;display:flex;align-items:center;isolation:isolate;color:#fff;background:#18191b}
.home-hero::before{content:"";position:absolute;inset:0;z-index:-2;background:url('https://images.pexels.com/photos/236722/pexels-photo-236722.jpeg') center 50%/cover no-repeat,url('../images/hero/hero-industrial.webp') center 44%/cover no-repeat}
.home-hero::after{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(800px 420px at 78% 46%,rgba(217,47,50,.13),transparent 62%),linear-gradient(93deg,rgba(6,8,10,.90) 0%,rgba(24,9,10,.78) 44%,rgba(110,15,22,.44) 76%,rgba(22,18,19,.18) 100%)}
.hero-copy{max-width:820px}
.hero-kicker{display:inline-block;margin-bottom:18px;color:rgba(255,255,255,.96);font-size:.86rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.home-hero h1{font-family:Oswald,Inter,sans-serif;font-size:clamp(2.45rem,5vw,4.1rem);line-height:1.08;letter-spacing:-.018em;text-transform:uppercase;max-width:820px}
.home-hero h1 span{color:#ff4b4e}
.home-hero p{max-width:760px;margin:24px 0 30px;color:rgba(255,255,255,.82);font-size:clamp(.9rem,1.18vw,.99rem);line-height:1.8}

/* COUNTER */
.experience-band{position:relative;background:#111214;color:#fff;padding:46px 0;overflow:hidden}
.experience-band::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(217,47,50,.12),transparent 34%,rgba(217,47,50,.07));pointer-events:none}
.experience-inner{position:relative;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:32px}
.counter-number{font-family:Oswald,Inter,sans-serif;font-size:clamp(4rem,8vw,6.8rem);line-height:.8;color:var(--ceitam-red);font-weight:700;font-variant-numeric:tabular-nums}
.counter-copy strong{display:block;font-family:Oswald,Inter,sans-serif;font-size:1.15rem;letter-spacing:.12em;text-transform:uppercase}
.counter-copy span{display:block;margin-top:6px;color:rgba(255,255,255,.62);font-size:.84rem}
.counter-line{width:min(260px,24vw);height:1px;background:linear-gradient(90deg,rgba(255,255,255,.3),transparent)}

/* BRANDS */
.brand-strip{display:grid;grid-template-columns:repeat(8,minmax(0,1fr));gap:12px;align-items:stretch}
.brand-item{min-height:92px;display:flex;align-items:center;justify-content:center;padding:20px 18px;border:1px solid var(--line);border-radius:14px;background:#fff;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.brand-item:hover{transform:translateY(-3px);border-color:#c7cbd0;box-shadow:var(--shadow-soft)}
.brand-item img{max-height:46px;max-width:116px;object-fit:contain}

/* TLV FEATURE */
.tlv-feature{position:relative;isolation:isolate;overflow:hidden;background:#02121d;color:#fff;padding:52px 0}
.tlv-feature::before{content:"";position:absolute;inset:0;z-index:-2;background-image:url('https://images.pexels.com/photos/236722/pexels-photo-236722.jpeg'),url('../images/hero/hero-industrial.webp');background-position:center;background-size:cover}
.tlv-feature::after{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(820px 500px at 78% 50%,rgba(0,116,184,.26),transparent 62%),linear-gradient(92deg,rgba(0,9,15,.95) 0%,rgba(0,30,50,.92) 48%,rgba(0,79,125,.70) 100%)}
.tlv-grid{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(340px,.97fr);gap:64px;align-items:center}
.tlv-logo{width:min(210px,48%);height:auto;margin-bottom:24px}
.tlv-feature h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(2.5rem,4.6vw,4.4rem);line-height:1.02;text-transform:uppercase;max-width:700px}
.tlv-feature h2 span{color:#67c7ff}
.tlv-feature p{max-width:620px;margin:20px 0 28px;color:rgba(255,255,255,.80);font-size:1rem;line-height:1.7}
.tlv-eyebrow{color:#67c7ff}
.tlv-points{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:28px}
.tlv-points span{border:1px solid rgba(255,255,255,.18);background:rgba(0,0,0,.16);border-radius:999px;padding:7px 11px;font-size:.71rem;font-weight:700;color:rgba(255,255,255,.86)}
.tlv-visual{position:relative;min-height:308px;display:flex;align-items:center;justify-content:center;overflow:visible}
.tlv-visual::before{content:"";position:absolute;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(103,199,255,.16),rgba(103,199,255,0) 66%);filter:blur(6px)}
.tlv-slide{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;opacity:0;transform:translateY(10px) scale(.985);transition:opacity .55s ease,transform .55s ease;pointer-events:none}
.tlv-slide.is-active{opacity:1;transform:translateY(0) scale(1);z-index:2}
.tlv-product{display:block;width:auto;max-width:100%;max-height:350px;height:auto;object-fit:contain;filter:drop-shadow(0 18px 32px rgba(0,0,0,.34))}
.tlv-product-pump{max-width:98%;max-height:334px}
.tlv-product-cospect{max-width:98%;max-height:352px}
.tlv-product-separator{max-width:88%;max-height:346px}
.tlv-product-condensate{max-width:98%;max-height:340px}

/* SERVICES */
.services-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.service-card{position:relative;min-height:330px;border-radius:22px;overflow:hidden;isolation:isolate;padding:28px;display:flex;align-items:flex-end;color:#fff;text-decoration:none;background-image:linear-gradient(180deg,rgba(4,6,10,.42) 0%,rgba(8,10,14,.70) 38%,rgba(7,8,11,.94) 100%),var(--service-image);background-position:center;background-size:cover;background-repeat:no-repeat;box-shadow:var(--shadow-soft);transition:transform .24s ease,box-shadow .24s ease,background-size .45s ease}
.service-card::before,.service-card::after{display:none}
.service-bg,.service-watermark{display:none}
.service-card:hover{transform:translateY(-5px);box-shadow:0 22px 44px rgba(12,15,20,.16);background-size:106%}
.service-content{position:relative;z-index:2;max-width:95%}
.service-kicker{display:block;color:#ff8587;font-size:.68rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;margin-bottom:8px}
.service-card h3{font-family:Oswald,Inter,sans-serif;font-size:1.55rem;line-height:1.08;margin-bottom:10px}
.service-card p{color:rgba(255,255,255,.76);font-size:.84rem;line-height:1.5;max-width:340px}
.service-cta{display:inline-flex;margin-top:17px;font-size:.76rem;font-weight:800;color:#fff;border-bottom:1px solid rgba(255,255,255,.45);padding-bottom:2px}

/* PRODUCTS */
.products-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}
.product-card{position:relative;border:1px solid var(--line);border-radius:18px;background:#fff;overflow:hidden;box-shadow:0 8px 22px rgba(13,17,23,.045);transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.product-card:hover{transform:translateY(-5px);border-color:#cfd2d7;box-shadow:var(--shadow)}
.product-visual{position:relative;height:255px;display:grid;place-items:center;padding:24px;background:radial-gradient(circle at 60% 35%,#fff 0%,#f8f8f8 54%,#eeeeef 100%);overflow:hidden}
.product-visual::after{content:"";position:absolute;inset:auto 0 0;height:1px;background:var(--line)}
.product-visual img{max-width:90%;max-height:222px;object-fit:contain;filter:drop-shadow(0 14px 18px rgba(0,0,0,.13));transition:transform .35s ease}
.product-card:hover .product-visual img{transform:scale(1.035)}
.product-logo-visual img{max-width:160px;filter:none}
.product-brand{position:absolute;top:13px;left:13px;padding:5px 9px;border-radius:999px;background:rgba(17,18,20,.86);color:#fff;font-size:.62rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase}
.product-body{padding:22px}
.product-body h3{font-size:1.02rem;line-height:1.25;color:var(--ink);margin-bottom:8px}
.product-body p{color:var(--muted);font-size:.82rem;min-height:50px}
.product-tags{display:flex;gap:7px;flex-wrap:wrap;margin:15px 0 17px}
.product-tags span{padding:5px 9px;border-radius:999px;background:#f1f2f4;color:#4f545b;font-size:.64rem;font-weight:700}
.product-actions{display:flex;gap:10px;flex-wrap:wrap}
.product-actions a{font-size:.74rem}
.products-page-grid{grid-template-columns:repeat(3,minmax(0,1fr))}

/* VALUES */
.values-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.value-card{padding:28px;border-top:2px solid var(--ceitam-red);background:#fff;border-radius:0 0 14px 14px;box-shadow:0 10px 24px rgba(13,17,23,.05);transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.value-num{font-family:Oswald,Inter,sans-serif;font-size:1.5rem;color:var(--ceitam-red);margin-bottom:10px}
.value-card h3{font-size:1.02rem;margin-bottom:7px;color:var(--ink)}
.value-card p{color:var(--muted);font-size:.82rem}
.value-card:hover{transform:translateY(-4px);box-shadow:0 18px 34px rgba(13,17,23,.09)}

/* CTA */
.cta-panel{position:relative;overflow:hidden;border-radius:24px;background:#111214;color:#fff;padding:42px 52px;display:grid;grid-template-columns:1fr auto;gap:36px;align-items:center;box-shadow:var(--shadow)}
.cta-panel::before{content:"";position:absolute;inset:0;background:radial-gradient(600px 260px at 88% 50%,rgba(217,47,50,.3),transparent 70%),linear-gradient(90deg,rgba(217,47,50,.10),transparent 42%);pointer-events:none}
.cta-copy{position:relative}
.cta-panel h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(2rem,3.6vw,3.25rem);line-height:1.03}
.cta-panel p{margin-top:12px;color:rgba(255,255,255,.68);max-width:620px}
.cta-panel .btn-row{position:relative;justify-content:flex-end}

/* PAGE HERO */
.page-hero{position:relative;isolation:isolate;padding:calc(var(--header-h) + 95px) 0 94px;min-height:440px;display:flex;align-items:end;color:#fff;background:#151619}
.page-hero::before{content:"";position:absolute;inset:0;z-index:-2;background:url('../images/hero/hero-industrial.webp') center/cover no-repeat}
.page-hero::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(8,8,9,.95),rgba(70,7,11,.80),rgba(23,13,14,.42))}
.page-hero .eyebrow{color:#ff7d80}
.page-heading{font-size:clamp(3rem,6vw,5.4rem);text-transform:uppercase;max-width:900px}
.page-hero p{margin-top:20px;max-width:720px;color:rgba(255,255,255,.76);font-size:1.05rem}

/* COMPANY */
.company-intro{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.85fr);gap:64px;align-items:center}
.company-copy h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(2.4rem,4.8vw,4.4rem);line-height:1.02}
.company-copy p{margin-top:18px;color:var(--muted)}
.company-visual{border-radius:22px;overflow:hidden;box-shadow:var(--shadow);background:#111}
.company-visual img{width:100%;aspect-ratio:4/3;object-fit:cover}
.stat-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:30px}
.stat{padding:18px 0;border-top:1px solid var(--line)}
.stat b{display:block;font-family:Oswald,Inter,sans-serif;font-size:2rem;color:var(--ceitam-red)}
.stat span{font-size:.72rem;color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.06em}
.mission-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.feature-panel{padding:34px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow-soft)}
.feature-panel .label{font-size:.68rem;color:var(--ceitam-red);font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.feature-panel h3{font-family:Oswald,Inter,sans-serif;font-size:1.8rem;margin:7px 0 14px}
.feature-panel p{color:var(--muted);font-size:.88rem}
.timeline{display:grid;gap:0;max-width:980px;margin-inline:auto}
.timeline-item{display:grid;grid-template-columns:100px 1fr;gap:30px;padding:30px 0;border-bottom:1px solid var(--line)}
.timeline-year{font-family:Oswald,Inter,sans-serif;font-size:2rem;color:var(--ceitam-red)}
.timeline-copy h3{font-size:1rem;margin-bottom:5px}
.timeline-copy p{color:var(--muted);font-size:.85rem}
.policy-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.policy-card{padding:28px;border:1px solid var(--line);border-radius:18px;background:#fff}
.policy-card h3{font-family:Oswald,Inter,sans-serif;font-size:1.4rem;margin-bottom:11px}
.policy-card p{color:var(--muted);font-size:.83rem}

/* SERVICES PAGE */
.filter-bar{display:flex;gap:8px;flex-wrap:wrap;align-items:center;justify-content:center;margin-bottom:38px}
.filter-btn{border:1px solid var(--line);background:#fff;color:#555b63;border-radius:999px;padding:8px 14px;font-size:.75rem;font-weight:800;transition:.18s ease}
.filter-btn:hover,.filter-btn.active{background:#111214;border-color:#111214;color:#fff}
.service-detail-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.service-detail{position:relative;overflow:hidden;min-height:370px;border-radius:20px;background:#151619;color:#fff;padding:32px;display:flex;align-items:flex-end;isolation:isolate}
.service-detail::before{content:"";position:absolute;inset:0;z-index:-3;background:url('../images/hero/hero-industrial.webp') center/cover no-repeat;filter:saturate(.75)}
.service-detail::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(39,7,9,.58) 45%,rgba(9,9,10,.96) 100%)}
.service-detail .service-watermark{right:0;top:0;width:68%;height:70%}
.service-detail h3{font-family:Oswald,Inter,sans-serif;font-size:1.8rem;line-height:1.06}
.service-detail p{margin-top:10px;color:rgba(255,255,255,.72);font-size:.84rem;max-width:520px}
.detail-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px 16px;margin:16px 0 20px;list-style:none;color:rgba(255,255,255,.82);font-size:.74rem}
.detail-list li::before{content:"—";margin-right:7px;color:#ff7477}
.trust-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.trust-card{padding:26px 20px;text-align:center;border:1px solid var(--line);border-radius:16px;background:#fff}
.trust-card b{display:block;font-family:Oswald,Inter,sans-serif;font-size:2rem;color:var(--ceitam-red)}
.trust-card span{display:block;margin-top:6px;color:var(--muted);font-size:.68rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em}

/* PRODUCTS PAGE */
.catalog-toolbar{display:grid;grid-template-columns:minmax(220px,1.2fr) repeat(2,minmax(160px,.55fr));gap:12px;margin-bottom:34px}
.control{width:100%;min-height:44px;border:1px solid var(--line);border-radius:12px;background:#fff;color:var(--text);padding:10px 13px;outline:none;font-size:.82rem}
.control:focus{border-color:#bfc3c9;box-shadow:0 0 0 3px rgba(217,47,50,.08)}
.product-card.is-hidden{display:none}
.no-results{display:none;grid-column:1/-1;text-align:center;padding:42px;border:1px dashed #d4d7dc;border-radius:18px;color:var(--muted)}
.no-results.visible{display:block}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);gap:28px;align-items:start}
.contact-card,.form-card,.map-card{border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:var(--shadow-soft)}
.contact-card{padding:30px}
.contact-card h2,.form-card h2{font-family:Oswald,Inter,sans-serif;font-size:2rem;line-height:1.05}
.contact-list{display:grid;gap:0;margin-top:22px}
.contact-row{padding:17px 0;border-bottom:1px solid var(--line)}
.contact-row:last-child{border-bottom:0}
.contact-row small{display:block;color:var(--muted);font-size:.68rem;text-transform:uppercase;letter-spacing:.08em;font-weight:800;margin-bottom:4px}
.contact-row a,.contact-row span{font-weight:700;text-decoration:none}
.contact-row a:hover{color:var(--ceitam-red)}
.form-card{padding:30px}
.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:22px}
.field{display:grid;gap:6px}
.field.full{grid-column:1/-1}
.field label{font-size:.72rem;font-weight:800;color:#4d525a}
.field input,.field select,.field textarea{width:100%;border:1px solid var(--line);border-radius:12px;padding:11px 12px;background:#fff;color:var(--text);outline:none;font-size:.82rem}
.field textarea{min-height:120px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{border-color:#bfc3c9;box-shadow:0 0 0 3px rgba(217,47,50,.08)}
.form-note{margin-top:13px;color:var(--muted);font-size:.7rem}
.map-card{overflow:hidden;margin-top:28px}
.map-card iframe{display:block;width:100%;height:390px;border:0}
.hours{display:grid;gap:10px;margin-top:20px}
.hours-row{display:flex;justify-content:space-between;gap:14px;padding-bottom:10px;border-bottom:1px solid var(--line);font-size:.82rem}
.hours-row span:last-child{font-weight:700}
.toast{position:fixed;z-index:1200;left:50%;bottom:24px;transform:translate(-50%,12px);padding:11px 16px;border-radius:999px;background:#111214;color:#fff;box-shadow:0 12px 28px rgba(0,0,0,.22);font-size:.76rem;font-weight:700;opacity:0;pointer-events:none;transition:.22s ease}
.toast.visible{opacity:1;transform:translate(-50%,0)}

/* FOOTER */
.site-footer{background:#0e0f11;color:#fff;padding:62px 0 24px}
.footer-grid{display:grid;grid-template-columns:1.35fr repeat(3,minmax(0,.65fr));gap:40px}
.footer-logo{height:54px;width:auto;margin-bottom:16px}
.footer-brand p{max-width:320px;color:rgba(255,255,255,.58);font-size:.78rem}
.footer-col h3{font-size:.75rem;text-transform:uppercase;letter-spacing:.1em;margin-bottom:15px;color:#fff}
.footer-col ul{list-style:none;display:grid;gap:9px}
.footer-col a,.footer-col li{color:rgba(255,255,255,.58);font-size:.76rem;text-decoration:none}
.footer-col a:hover{color:#fff}
.footer-bottom{display:flex;justify-content:space-between;gap:20px;align-items:center;margin-top:44px;padding-top:20px;border-top:1px solid rgba(255,255,255,.10);color:rgba(255,255,255,.45);font-size:.68rem}

/* ANIMATION */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .65s ease,transform .65s cubic-bezier(.22,.72,.18,1)}
.reveal.visible{opacity:1;transform:none}

@media(max-width:1080px){
  .brand-strip{grid-template-columns:repeat(4,minmax(0,1fr))}
  .services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .products-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .products-page-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .tlv-grid,.company-intro{grid-template-columns:1fr;gap:44px}
  .tlv-visual{min-height:330px}
  .company-visual{max-width:720px}
  .policy-grid{grid-template-columns:1fr 1fr}
  .trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-grid{grid-template-columns:1.2fr repeat(3,minmax(0,1fr));gap:24px}
}
@media(max-width:860px){
  :root{--header-h:62px}
  .container{width:min(var(--container),calc(100% - 28px))}
  .section{padding:76px 0}.section.compact{padding:62px 0}
  .brand-logo{height:38px}
  .menu-toggle{display:block}
  .nav-cta{display:none}
  .nav-list{position:fixed;top:var(--header-h);left:0;right:0;display:grid;gap:0;background:#fff;border-bottom:1px solid var(--line);padding:10px 20px 18px;transform:translateY(-120%);opacity:0;pointer-events:none;transition:.25s ease;box-shadow:0 16px 26px rgba(13,17,23,.08)}
  .nav-list.open{transform:none;opacity:1;pointer-events:auto}
  .nav-link{display:block;padding:12px 4px}.nav-link::after{display:none}
  .home-hero{min-height:560px;padding:calc(var(--header-h) + 64px) 0 64px}
  .home-hero h1{font-size:clamp(2.8rem,10.4vw,5rem);line-height:1.08}
  .experience-inner{grid-template-columns:auto 1fr}.counter-line{display:none}
  .cta-panel{grid-template-columns:1fr;padding:46px 34px}.cta-panel .btn-row{justify-content:flex-start}
  .mission-grid,.service-detail-grid,.contact-grid{grid-template-columns:1fr}
  .service-detail{min-height:350px}
  .values-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .catalog-toolbar{grid-template-columns:1fr 1fr}.catalog-toolbar .control:first-child{grid-column:1/-1}
  .footer-grid{grid-template-columns:1fr 1fr}.footer-brand{grid-column:1/-1}
}
@media(max-width:620px){
  .section{padding:64px 0}.section.compact{padding:54px 0}
  .section-head{margin-bottom:34px}
  .home-hero{min-height:560px;background-position:center}
  .home-hero::after{background:linear-gradient(90deg,rgba(7,7,8,.94),rgba(73,7,11,.76),rgba(52,8,11,.62))}
  .hero-copy{max-width:100%}.home-hero p{font-size:.9rem}
  .btn{width:100%}.btn-row{display:grid;grid-template-columns:1fr}
  .hero-micro{display:grid;gap:8px}
  .experience-inner{grid-template-columns:1fr;text-align:center;gap:14px}.counter-copy span{font-size:.76rem}
  .brand-strip{grid-template-columns:repeat(2,minmax(0,1fr))}.brand-item{min-height:80px}
  .tlv-feature{padding:58px 0}.tlv-grid{gap:26px}.tlv-visual{min-height:280px}.tlv-product{width:min(356px,92%)}
  .services-grid,.products-grid,.products-page-grid,.values-grid,.policy-grid,.trust-grid{grid-template-columns:1fr}
  .service-card{min-height:300px}.service-bg{transform:none}.service-watermark{width:88%;opacity:.45}
  .product-visual{height:230px}
  .cta-panel{padding:40px 24px;border-radius:18px}
  .page-hero{min-height:390px;padding:calc(var(--header-h) + 76px) 0 68px}
  .stat-row{grid-template-columns:1fr 1fr}.stat:last-child{grid-column:1/-1}
  .timeline-item{grid-template-columns:1fr;gap:4px;padding:24px 0}
  .detail-list{grid-template-columns:1fr}
  .catalog-toolbar{grid-template-columns:1fr}.catalog-toolbar .control:first-child{grid-column:auto}
  .form-grid{grid-template-columns:1fr}.field.full{grid-column:auto}
  .footer-grid{grid-template-columns:1fr}.footer-brand{grid-column:auto}.footer-bottom{align-items:flex-start;flex-direction:column}
}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation:none!important;transition:none!important}.reveal{opacity:1;transform:none}}


.clients-band{background:#0f1012;color:#fff;min-height:0;padding:20px 0 18px;border-top:1px solid rgba(255,255,255,.06);display:flex;align-items:center}
.clients-band .section-head{margin:0 auto}
.clients-band .eyebrow,.clients-band h2,.clients-band p{color:#fff}
.clients-band .eyebrow{color:#ff6e72}
.clients-band .section-head p{color:rgba(255,255,255,.72)}
.clients-logos-wrap{display:flex;justify-content:center;align-items:center;padding:0}
.clients-logos{max-width:min(980px,88%);width:100%;height:auto;display:block;margin:0 auto;opacity:1;filter:drop-shadow(0 0 10px rgba(255,255,255,.08))}
.footer-clients{margin-top:18px;padding-top:14px;border-top:1px solid rgba(255,255,255,.08);text-align:center}
.footer-clients-title{display:block;font-size:.78rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.86)}
.footer-clients img{display:block;width:min(1180px,96%);margin:10px auto 0;opacity:1;height:auto;filter:drop-shadow(0 0 10px rgba(255,255,255,.08))}
@media (max-width: 768px){
  .clients-band{padding:18px 0 14px}
  .footer-clients{margin-top:18px;padding-top:14px;border-top:1px solid rgba(255,255,255,.08);text-align:center}
}

.clients-stats{display:flex;justify-content:center;margin:2px 0 4px}
.clients-stat{display:inline-flex;align-items:center;gap:8px;padding:4px 10px;border:1px solid rgba(255,255,255,.08);border-radius:999px;background:rgba(255,255,255,.025)}
.clients-stat-number{font-family:Oswald,Inter,sans-serif;font-size:clamp(1rem,1.4vw,1.18rem);color:#fff;line-height:1}
.clients-stat-label{font-size:.72rem;color:rgba(255,255,255,.72)}
.clients-logos-wrap{text-align:center}
.clients-logos{display:block;width:min(780px,74%);margin:0 auto;height:auto;opacity:.96}

.clients-band>.container{width:min(var(--container),calc(100% - 44px));min-height:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;padding:12px 0 14px}

@media(max-width:620px){.clients-band{min-height:0;padding:18px 0 14px}.clients-band>.container{width:min(var(--container),calc(100% - 28px));gap:12px;padding:10px 0 12px}.cta-panel{padding:32px 24px}}


/* V12 targeted adjustments */
.clients-band .section-head,.clients-stats,.clients-logos-wrap{width:100%;}
.clients-logos-wrap{margin:0;display:flex;justify-content:center;align-items:center;padding:4px 0 4px;}
.clients-logos{display:block;width:min(780px,74%);margin:0 auto;height:auto;opacity:.96;}
@media(max-width:620px){.clients-band>.container{min-height:0;gap:12px;padding:10px 0 12px;}}

/* ===== V15: hero presentation, featured carousel & back-to-top ===== */
.home-hero{position:relative;height:590px;min-height:590px;padding:0;display:block;overflow:hidden;isolation:isolate;background:#111214}
.home-hero::before,.home-hero::after{display:none!important}
.hero-slide{position:absolute;inset:0;display:flex;align-items:center;opacity:0;pointer-events:none;transition:opacity .95s ease;isolation:isolate}
.hero-slide.is-active{opacity:1;pointer-events:auto;z-index:2}
.hero-slide::before{content:"";position:absolute;inset:0;z-index:-2;background-position:center;background-size:cover;background-repeat:no-repeat}
.hero-slide::after{content:"";position:absolute;inset:0;z-index:-1}
.hero-slide>.container{width:min(var(--container),calc(100% - 44px));padding-top:calc(var(--header-h) + 24px)}
.hero-slide-main::before{background-image:url('https://images.pexels.com/photos/236722/pexels-photo-236722.jpeg'),url('../images/hero/hero-industrial.webp');background-position:center 50%,center 44%}
.hero-slide-main::after{background:radial-gradient(800px 420px at 78% 46%,rgba(217,47,50,.13),transparent 62%),linear-gradient(93deg,rgba(6,8,10,.90) 0%,rgba(24,9,10,.78) 44%,rgba(110,15,22,.44) 76%,rgba(22,18,19,.18) 100%)}
.hero-slide-tlv::before{background-image:url('https://images.pexels.com/photos/236722/pexels-photo-236722.jpeg'),url('../images/hero/hero-industrial.webp');background-position:center 50%,center 46%;background-size:cover,cover;background-repeat:no-repeat,no-repeat}
.hero-slide-tlv::after{background:radial-gradient(820px 500px at 78% 50%,rgba(0,116,184,.26),transparent 62%),linear-gradient(92deg,rgba(0,9,15,.95) 0%,rgba(0,30,50,.92) 48%,rgba(0,79,125,.70) 100%)}
.hero-slide-maintenance::before{background-image:url('../images/hero/hero-maintenance-industrial.png');background-position:center 54%}
.hero-slide-maintenance::after{background:radial-gradient(760px 420px at 78% 50%,rgba(217,47,50,.17),transparent 64%),linear-gradient(92deg,rgba(10,7,8,.96) 0%,rgba(36,10,12,.88) 46%,rgba(110,16,22,.54) 78%,rgba(55,15,16,.30) 100%)}
.hero-slide .hero-copy{max-width:820px}
.hero-slide .hero-kicker{margin-bottom:18px}
.hero-slide h1{font-family:Oswald,Inter,sans-serif;font-size:clamp(2.45rem,5vw,4.1rem);line-height:1.08;letter-spacing:-.018em;text-transform:uppercase;max-width:850px}
.hero-slide h1 span{color:#ff4b4e}
.hero-slide-tlv .hero-copy{max-width:580px}
.hero-tlv-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.8fr);gap:44px;align-items:center}
.hero-tlv-visual{display:flex;flex-direction:column;align-items:flex-end;justify-content:center;gap:20px;min-height:360px}
.hero-tlv-brandline{display:flex;align-items:center;justify-content:flex-start;gap:12px;width:100%;margin:0 0 18px}
.hero-tlv-brand-ceitam{width:auto;height:64px;max-width:52%;object-fit:contain;filter:drop-shadow(0 8px 18px rgba(0,0,0,.20))}
.hero-tlv-brand-tlv{width:auto;height:58px;max-width:34%;object-fit:contain;filter:drop-shadow(0 8px 18px rgba(0,0,0,.20))}
.hero-tlv-plus{font-family:Oswald,Inter,sans-serif;font-size:1.35rem;line-height:1;color:#9edcff;font-weight:700;transform:translateY(-1px)}
.hero-tlv-cospect{display:block;width:min(560px,100%);max-height:410px;height:auto;object-fit:contain;filter:drop-shadow(0 18px 36px rgba(0,0,0,.34))}
.hero-slide-tlv h1 .tlv-blue{color:#67c7ff}

.hero-slide p{max-width:760px;margin:24px 0 30px;color:rgba(255,255,255,.86);font-size:clamp(.9rem,1.18vw,.99rem);line-height:1.8}
.hero-kicker-tlv{color:#74c8f5}
.hero-dots{position:absolute;z-index:5;left:50%;bottom:22px;transform:translateX(-50%);display:flex;align-items:center;gap:9px}
.hero-dot{width:8px;height:8px;padding:0;border:0;border-radius:999px;background:rgba(255,255,255,.42);cursor:pointer;transition:width .22s ease,background .22s ease,transform .22s ease}
.hero-dot:hover{transform:scale(1.15);background:rgba(255,255,255,.74)}
.hero-dot.is-active{width:26px;background:#fff}

.featured-products-section{overflow:hidden}
.product-carousel{position:relative;padding:0 34px}
.product-carousel-viewport{overflow:hidden;border-radius:20px}
.product-carousel-track{display:flex;gap:22px;transition:transform .55s cubic-bezier(.22,.61,.36,1);will-change:transform}
.product-carousel .product-card{flex:0 0 calc((100% - 44px)/3);min-width:0}
.product-carousel .product-visual{height:245px}
.product-carousel .product-body{min-height:270px;display:flex;flex-direction:column}
.product-carousel .product-actions{margin-top:auto}
.product-carousel-arrow{position:absolute;z-index:5;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:50%;border:1px solid rgba(17,18,20,.12);background:#fff;color:var(--ink);font-size:2rem;line-height:1;display:grid;place-items:center;cursor:pointer;box-shadow:0 10px 26px rgba(13,17,23,.10);transition:transform .2s ease,background .2s ease,color .2s ease,opacity .2s ease}
.product-carousel-arrow:hover{transform:translateY(-50%) scale(1.05);background:var(--ceitam-red);color:#fff}
.product-carousel-prev{left:0}
.product-carousel-next{right:0}
.product-carousel-arrow:disabled{opacity:.3;cursor:default;transform:translateY(-50%)}
.product-carousel-arrow:disabled:hover{background:#fff;color:var(--ink)}
.product-carousel .featured-hitek{border-color:rgba(217,47,50,.20);box-shadow:0 12px 30px rgba(13,17,23,.07)}
.product-carousel .featured-hitek .product-visual{background:radial-gradient(circle at 62% 38%,#fff 0%,#f6f6f7 48%,#ececef 100%)}

.back-to-top{position:fixed;z-index:950;right:22px;bottom:22px;width:46px;height:46px;border:1px solid rgba(255,255,255,.22);border-radius:50%;background:rgba(177,26,31,.94);color:#fff;display:grid;place-items:center;font-size:1.25rem;font-weight:800;box-shadow:0 12px 28px rgba(0,0,0,.20);cursor:pointer;opacity:0;visibility:hidden;transform:translateY(12px);transition:opacity .22s ease,visibility .22s ease,transform .22s ease,background .22s ease}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{background:var(--ceitam-red);transform:translateY(-2px)}

@media(max-width:980px){
  .home-hero{height:570px;min-height:570px}
  .hero-slide>.container{padding-top:calc(var(--header-h) + 18px)}
  .hero-tlv-layout{grid-template-columns:1fr;gap:20px}
  .hero-tlv-visual{align-items:flex-start;min-height:0}
  .hero-tlv-brandline{justify-content:flex-start;margin:0 0 16px}
  .hero-tlv-cospect{width:min(400px,88%)}
  .product-carousel .product-card{flex-basis:calc((100% - 22px)/2)}
}
@media(max-width:620px){
  .home-hero{height:640px;min-height:640px}
  .hero-slide>.container{width:min(var(--container),calc(100% - 30px));padding-top:calc(var(--header-h) + 16px)}
  .hero-slide h1{font-size:clamp(2.45rem,10vw,4.3rem);line-height:1.06}
  .hero-slide p{font-size:.9rem;line-height:1.7;margin:18px 0 24px}
  .hero-dots{bottom:16px}
  .hero-tlv-layout{gap:16px}
  .hero-tlv-brandline{gap:9px;margin:0 0 14px}
  .hero-tlv-brand-ceitam{width:auto;height:52px;max-width:58%;object-fit:contain}
  .hero-tlv-brand-tlv{width:auto;height:47px;max-width:30%;object-fit:contain}
  .hero-tlv-plus{font-size:1.15rem}
  .hero-tlv-cospect{width:min(390px,92%);max-height:290px}
  .product-carousel{padding:0 20px}
  .product-carousel .product-card{flex-basis:100%}
  .product-carousel-arrow{width:40px;height:40px;font-size:1.75rem}
  .product-carousel-prev{left:0}.product-carousel-next{right:0}
  .back-to-top{right:16px;bottom:16px;width:44px;height:44px}
}
/* Preserve the approved first-hero spacing inside the new fade presentation. */
.hero-slide{padding:calc(var(--header-h) + 68px) 0 74px}
.hero-slide>.container{padding-top:0}
@media(max-width:980px){.hero-slide{padding:calc(var(--header-h) + 64px) 0 64px}.hero-slide>.container{padding-top:0}}
@media(max-width:620px){.hero-slide{padding:calc(var(--header-h) + 46px) 0 54px}.hero-slide>.container{padding-top:0}}


/* ===== V23 mobile and tablet refinement (homepage only, desktop unchanged) ===== */
.menu-toggle{position:relative;overflow:hidden}
.menu-toggle span,.menu-toggle::before,.menu-toggle::after{position:absolute;left:50%;width:18px;height:2px;margin:0;transform:translateX(-50%)}
.menu-toggle::before{top:13px}
.menu-toggle span{top:19px}
.menu-toggle::after{top:25px}
.menu-toggle.active::before{top:19px;transform:translateX(-50%) rotate(45deg)}
.menu-toggle.active::after{top:19px;transform:translateX(-50%) rotate(-45deg)}

@media(max-width:980px){
  .hero-slide-maintenance::before{background-position:center center}
  .hero-tlv-visual{min-height:220px}
  .hero-tlv-cospect{width:min(340px,76%);max-height:250px}
  .tlv-visual{min-height:250px}
  .tlv-product{max-height:280px}
  .tlv-product-pump,.tlv-product-cospect,.tlv-product-separator,.tlv-product-condensate{max-height:280px}
}

@media(max-width:860px){
  .menu-toggle{display:inline-flex;flex:0 0 42px;width:42px;height:42px;border-radius:14px;box-shadow:0 6px 18px rgba(13,17,23,.06)}
  .brand-link{min-width:0;max-width:150px}
  .nav{gap:14px}
  .nav-list{top:calc(var(--header-h) + 2px);left:14px;right:14px;border:1px solid var(--line);border-radius:18px;padding:12px 18px 16px;transform:translateY(-16px);box-shadow:0 18px 34px rgba(13,17,23,.10)}
  .nav-list.open{transform:translateY(0)}
}

@media(max-width:620px){
  .nav{height:var(--header-h)}
  .brand-logo{height:34px}
  .brand-link{max-width:126px}
  .menu-toggle{width:40px;height:40px;border-radius:13px}
  .menu-toggle::before{top:12px}
  .menu-toggle span{top:19px}
  .menu-toggle::after{top:26px}
  .menu-toggle.active::before,.menu-toggle.active::after{top:19px}

  .home-hero{height:calc(100svh + 78px);min-height:742px}
  .hero-slide{min-height:calc(100svh - var(--header-h) + 78px);padding:calc(var(--header-h) + 36px) 0 96px}
  .hero-slide>.container{width:min(var(--container),calc(100% - 28px))}
  .hero-slide h1{font-size:clamp(2.25rem,11vw,3.7rem);line-height:1.03;max-width:12ch}
  .hero-slide p{max-width:100%;margin:16px 0 22px;font-size:.95rem;line-height:1.65}
  .hero-slide .hero-copy{max-width:100%}
  .hero-kicker,.hero-kicker-tlv{margin-bottom:14px;font-size:.76rem}
  .hero-dots{bottom:26px}

  .hero-slide-tlv .hero-tlv-layout{display:block}
  .hero-slide-tlv .hero-copy{max-width:100%}
  .hero-tlv-brandline{display:flex;align-items:center;gap:10px;flex-wrap:nowrap;margin:0 0 12px}
  .hero-tlv-brand-ceitam{height:32px;max-width:none}
  .hero-tlv-brand-tlv{height:28px;max-width:none}
  .hero-tlv-plus{font-size:1rem}
  .hero-slide-tlv h1{max-width:11ch}
  .hero-tlv-visual{display:none}

  .tlv-feature{padding:48px 0}
  .tlv-grid{gap:22px}
  .tlv-logo{width:min(170px,46%);margin-bottom:18px}
  .tlv-feature h2{font-size:clamp(2rem,11vw,3rem);max-width:10ch}
  .tlv-feature p{font-size:.94rem;line-height:1.6;margin:16px 0 22px}
  .tlv-points{gap:8px;margin-bottom:22px}
  .tlv-points span{font-size:.68rem;padding:6px 10px}
  .tlv-visual{min-height:210px}
  .tlv-slide{align-items:center;justify-content:center}
  .tlv-product{width:min(270px,82%);max-height:220px}
  .tlv-product-pump,.tlv-product-cospect,.tlv-product-separator,.tlv-product-condensate{max-width:82%;max-height:220px}
}

@media(max-width:430px){
  .home-hero{height:calc(100svh + 100px);min-height:768px}
  .hero-slide{min-height:calc(100svh - var(--header-h) + 100px);padding:calc(var(--header-h) + 32px) 0 102px}
  .hero-slide h1{font-size:clamp(2.1rem,10.8vw,3.35rem)}
  .hero-slide-main h1{max-width:9.5ch}
  .hero-slide-maintenance h1{max-width:11ch}
  .hero-slide p{font-size:.92rem}
  .hero-dots{bottom:28px}
  .btn-row{gap:10px}
}


/* ===== V27 · QUIENES SOMOS / SCROLL STORY ===== */
.about-page{background:#fff}
.about-hero{position:relative;isolation:isolate;min-height:760px;padding:calc(var(--header-h) + 82px) 0 88px;background:#0b0d0f;color:#fff;overflow:hidden}
.about-hero::before{content:"";position:absolute;inset:0;z-index:-3;background:radial-gradient(circle at 76% 28%,rgba(217,47,50,.18),transparent 31%),linear-gradient(120deg,#070809 0%,#121316 54%,#28080a 100%)}
.about-hero::after{content:"";position:absolute;inset:0;z-index:-2;opacity:.12;background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);background-size:52px 52px;mask-image:linear-gradient(90deg,transparent 0,#000 38%,#000 100%)}
.about-hero-glow{position:absolute;width:560px;height:560px;border-radius:50%;right:-180px;top:60px;background:rgba(217,47,50,.22);filter:blur(120px);pointer-events:none}
.about-hero-grid{display:grid;grid-template-columns:minmax(0,.88fr) minmax(460px,1.12fr);gap:72px;align-items:center;min-height:590px}
.about-kicker{display:inline-block;margin-bottom:22px;font-size:.72rem;letter-spacing:.18em;font-weight:800;color:#ff6a6e}
.about-era{display:flex;align-items:center;gap:12px;margin-bottom:16px;font-family:Oswald,Inter,sans-serif;font-size:.9rem;letter-spacing:.12em;color:rgba(255,255,255,.58)}
.about-era i{display:block;width:48px;height:1px;background:var(--ceitam-red)}
.about-hero h1{max-width:690px;font-family:Oswald,Inter,sans-serif;font-size:clamp(4rem,7vw,7rem);line-height:.91;letter-spacing:-.035em;text-transform:uppercase}
.about-hero h1 em{display:block;color:#ff4e53;font-style:normal}
.about-hero-copy>p{max-width:690px;margin:28px 0 26px;color:rgba(255,255,255,.76);font-size:1.02rem;line-height:1.8}
.about-hero-meta{display:flex;align-items:center;gap:14px;margin:20px 0 32px}
.about-hero-meta strong{font-family:Oswald,Inter,sans-serif;font-size:3.5rem;line-height:1;color:#fff}
.about-hero-meta span{font-size:.78rem;line-height:1.45;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.62)}
.about-scroll-link{display:inline-flex;align-items:center;gap:12px;text-decoration:none;color:#fff;font-size:.78rem;font-weight:800;letter-spacing:.04em;border-bottom:1px solid rgba(255,255,255,.28);padding-bottom:7px}
.about-scroll-link span{color:#ff575b;font-size:1.1rem}
.about-hero-collage{position:relative;height:560px;min-width:0}
.about-hero-collage figure{position:absolute;overflow:hidden;background:#17191c;box-shadow:0 28px 60px rgba(0,0,0,.32)}
.about-hero-collage img{width:100%;height:100%;object-fit:cover;filter:saturate(.82) contrast(1.03)}
.about-collage-main{right:22px;top:22px;width:72%;height:78%;border-radius:28px}
.about-collage-main::after,.about-collage-small::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 48%,rgba(20,0,2,.38));pointer-events:none}
.about-collage-small{width:38%;height:34%;border:5px solid #0d0f11;border-radius:18px}
.about-collage-old{left:0;bottom:24px;transform:rotate(-2deg)}
.about-collage-now{right:0;bottom:0;transform:rotate(1.5deg)}
.about-collage-label{position:absolute;right:18px;top:0;padding:8px 12px;background:#fff;color:#111;font-size:.62rem;letter-spacing:.16em;font-weight:900;border-radius:999px;z-index:3}

.about-opening{padding:86px 0 78px;border-bottom:1px solid var(--line)}
.about-opening-grid{display:grid;grid-template-columns:80px minmax(320px,.88fr) minmax(320px,1fr);gap:44px;align-items:start}
.about-opening-index{font-family:Oswald,Inter,sans-serif;font-size:3rem;color:#dadde1;line-height:1}
.about-opening-copy h2,.about-section-intro h2,.about-principles-copy h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(2.4rem,4.7vw,4.6rem);line-height:1;letter-spacing:-.025em;color:var(--ink)}
.about-opening-text{padding-top:40px;color:var(--muted);line-height:1.85;font-size:1rem}

.about-story{padding:78px 0 112px;background:#fafafa}
.about-story-layout{display:grid;grid-template-columns:120px minmax(0,1fr);gap:42px}
.about-story-rail{position:sticky;top:calc(var(--header-h) + 54px);height:500px;align-self:start;display:flex;flex-direction:column;justify-content:space-between;padding:8px 0}
.about-rail-track{position:absolute;left:6px;top:16px;bottom:16px;width:2px;background:#dfe2e5;border-radius:999px;overflow:hidden}
.about-rail-progress{display:block;width:100%;height:0;background:var(--ceitam-red);transition:height .45s cubic-bezier(.2,.8,.2,1)}
.about-rail-marker{position:relative;z-index:2;display:flex;align-items:center;gap:12px;border:0;background:none;color:#9a9fa7;font-family:Oswald,Inter,sans-serif;font-size:.82rem;font-weight:700;letter-spacing:.05em;transition:color .25s ease,transform .25s ease;text-align:left}
.about-rail-marker::before{content:"";width:14px;height:14px;border-radius:50%;background:#fff;border:2px solid #c7cbd0;box-shadow:0 0 0 5px #fafafa;transition:.25s ease}
.about-rail-marker.is-active{color:var(--ceitam-red);transform:translateX(2px)}
.about-rail-marker.is-active::before{background:var(--ceitam-red);border-color:var(--ceitam-red)}
.about-story-steps{min-width:0}
.about-story-step{min-height:570px;display:grid;grid-template-columns:minmax(330px,.88fr) minmax(430px,1.12fr);gap:62px;align-items:center;padding:54px 0 76px;border-bottom:1px solid #e1e3e6}
.about-story-step:last-child{border-bottom:0}
.about-story-step-reverse .about-story-copy{order:2}
.about-story-step-reverse .about-story-photo,.about-story-step-reverse .about-typographic-card{order:1}
.about-story-year{display:block;margin-bottom:-14px;font-family:Oswald,Inter,sans-serif;font-size:clamp(5.5rem,10vw,9rem);line-height:1;color:#eceef0;letter-spacing:-.04em;transition:color .35s ease}
.about-story-step.is-current .about-story-year{color:#f3d8d9}
.about-story-label{display:inline-block;margin:8px 0 14px;font-size:.68rem;font-weight:900;letter-spacing:.18em;color:var(--ceitam-red)}
.about-story-copy h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(2.4rem,4vw,4rem);line-height:1.02;letter-spacing:-.025em;color:#111}
.about-story-copy p{margin-top:18px;max-width:560px;color:var(--muted);font-size:.98rem;line-height:1.8}
.about-story-photo{position:relative;border-radius:26px;overflow:hidden;background:#151719;box-shadow:0 24px 48px rgba(15,17,20,.13);aspect-ratio:4/3}
.about-story-photo img{width:100%;height:100%;object-fit:cover;filter:saturate(.82);transition:transform .8s cubic-bezier(.2,.8,.2,1),filter .5s ease}
.about-story-step.is-current .about-story-photo img{transform:scale(1.025);filter:saturate(.98)}
.about-story-photo figcaption{position:absolute;left:18px;bottom:16px;padding:7px 10px;border-radius:999px;background:rgba(9,10,12,.72);backdrop-filter:blur(8px);color:#fff;font-size:.65rem;letter-spacing:.05em}
.about-typographic-card{position:relative;min-height:390px;border-radius:26px;overflow:hidden;padding:50px;background:linear-gradient(145deg,#0c0d0f,#2a0b0d);color:#fff;box-shadow:0 24px 48px rgba(15,17,20,.13);display:flex;flex-direction:column;justify-content:flex-end}
.about-typographic-card::before{content:"";position:absolute;inset:-30% -20% auto auto;width:350px;height:350px;border-radius:50%;background:rgba(217,47,50,.32);filter:blur(65px)}
.about-typographic-card span{font-size:.72rem;letter-spacing:.18em;font-weight:800;color:#ff6f73}
.about-typographic-card strong{font-family:Oswald,Inter,sans-serif;font-size:8rem;line-height:.92;letter-spacing:-.05em}
.about-typographic-card small{margin-top:8px;color:rgba(255,255,255,.6);letter-spacing:.13em}

.about-numbers{padding:72px 0}
.about-numbers-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0}
.about-number{min-height:160px;padding:18px 42px;display:flex;flex-direction:column;justify-content:center;border-right:1px solid rgba(255,255,255,.14)}
.about-number:last-child{border-right:0}
.about-number-value{font-family:Oswald,Inter,sans-serif;font-size:clamp(3rem,6vw,5.5rem);line-height:1;color:#fff;letter-spacing:-.035em}
.about-number p{margin-top:10px;color:rgba(255,255,255,.57);font-size:.78rem;text-transform:uppercase;letter-spacing:.08em}

.about-clients{overflow:hidden}
.about-section-intro{max-width:760px;margin-bottom:42px}
.about-section-intro.align-left{margin-bottom:32px}
.about-section-intro p{margin-top:14px;color:var(--muted);font-size:1rem}
.about-client-timeline{position:relative;display:grid;grid-template-columns:repeat(5,1fr);gap:0;padding-top:30px}
.about-client-timeline::before{content:"";position:absolute;left:3%;right:3%;top:35px;height:1px;background:#d8dbdf}
.about-client-year{position:relative;padding:34px 18px 22px 0;min-height:154px}
.about-client-year::before{content:"";position:absolute;top:0;left:0;width:11px;height:11px;border-radius:50%;background:var(--ceitam-red);box-shadow:0 0 0 6px #fff}
.about-client-year b{display:block;font-family:Oswald,Inter,sans-serif;font-size:2.2rem;color:var(--ceitam-red);line-height:1}
.about-client-year span{display:block;margin-top:10px;font-weight:800;font-size:.88rem;line-height:1.4;color:#1a1d21}
.about-client-year small{display:block;margin-top:5px;color:#858a92;font-size:.7rem}

.about-principles{padding:100px 0;background:#f3f4f5;border-top:1px solid #e5e7e9;border-bottom:1px solid #e5e7e9}
.about-principles-grid{display:grid;grid-template-columns:minmax(0,.82fr) minmax(460px,1.18fr);gap:80px;align-items:start}
.about-principles-copy{position:sticky;top:calc(var(--header-h) + 64px)}
.about-principles-copy p{margin-top:20px;color:var(--muted);line-height:1.8}
.about-principles-list{display:grid;gap:0;border-top:1px solid #d7dade}
.about-principle{display:grid;grid-template-columns:48px 150px 1fr;gap:18px;align-items:center;padding:27px 0;border-bottom:1px solid #d7dade}
.about-principle>span{font-family:Oswald,Inter,sans-serif;font-size:1rem;color:var(--ceitam-red)}
.about-principle strong{font-family:Oswald,Inter,sans-serif;font-size:1.65rem;color:#111}
.about-principle p{color:var(--muted);font-size:.84rem}
.about-values-line{margin-top:62px;padding-top:22px;border-top:1px solid #d7dade;display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;color:#555b63;font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.09em}

.about-today{padding-top:112px}
.about-today-grid{display:grid;grid-template-columns:minmax(420px,.95fr) minmax(0,1.05fr);gap:72px;align-items:start}
.about-today-media{position:sticky;top:calc(var(--header-h) + 42px);border-radius:28px;overflow:hidden;min-height:610px;background:#0d0e10;box-shadow:0 24px 54px rgba(10,12,15,.14)}
.about-today-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(0,0,0,.7))}
.about-today-media img{width:100%;height:100%;min-height:610px;object-fit:cover}
.about-today-media>span{position:absolute;z-index:2;left:24px;bottom:20px;color:#fff;font-size:.68rem;letter-spacing:.16em;font-weight:900}
.about-capabilities{border-top:1px solid var(--line)}
.about-capability{display:grid;grid-template-columns:52px 1fr;gap:18px;padding:25px 0;border-bottom:1px solid var(--line)}
.about-capability>span{font-family:Oswald,Inter,sans-serif;color:var(--ceitam-red);font-size:1rem}
.about-capability h3{font-family:Oswald,Inter,sans-serif;font-size:1.55rem;color:#111}
.about-capability p{margin-top:6px;color:var(--muted);font-size:.85rem;line-height:1.65}
.about-final-cta{padding-top:34px}

@media(max-width:1020px){
  .about-hero{min-height:700px}
  .about-hero-grid{grid-template-columns:1fr 1fr;gap:38px;min-height:530px}
  .about-hero h1{font-size:clamp(3.7rem,7.4vw,5.8rem)}
  .about-hero-collage{height:480px}
  .about-story-layout{grid-template-columns:90px minmax(0,1fr);gap:22px}
  .about-story-step{grid-template-columns:1fr 1fr;gap:36px;min-height:500px}
  .about-principles-grid{grid-template-columns:1fr;gap:48px}
  .about-principles-copy{position:relative;top:auto;max-width:760px}
  .about-today-grid{grid-template-columns:.88fr 1.12fr;gap:42px}
  .about-today-media{min-height:520px}
  .about-today-media img{min-height:520px}
}

@media(max-width:760px){
  .about-hero{min-height:auto;padding:calc(var(--header-h) + 52px) 0 66px}
  .about-hero-grid{grid-template-columns:1fr;gap:42px;min-height:0}
  .about-hero h1{font-size:clamp(3.25rem,13.5vw,5.2rem);max-width:8ch}
  .about-hero-copy>p{font-size:.94rem;line-height:1.7;margin-top:22px}
  .about-hero-meta{margin:18px 0 26px}
  .about-hero-collage{height:380px;max-width:580px}
  .about-collage-main{width:76%;height:76%;right:5%}
  .about-collage-small{width:38%;height:35%}
  .about-opening{padding:66px 0 58px}
  .about-opening-grid{grid-template-columns:52px 1fr;gap:22px}
  .about-opening-text{grid-column:2;padding-top:2px}
  .about-story{padding:36px 0 72px}
  .about-story-layout{display:block}
  .about-story-rail{display:none}
  .about-story-step,.about-story-step-reverse{grid-template-columns:1fr;gap:24px;min-height:0;padding:46px 0 58px}
  .about-story-step-reverse .about-story-copy,.about-story-step-reverse .about-story-photo,.about-story-step-reverse .about-typographic-card{order:initial}
  .about-story-year{font-size:5.8rem;margin-bottom:-8px}
  .about-story-copy h2{font-size:clamp(2.35rem,10vw,3.5rem)}
  .about-story-photo{aspect-ratio:4/3;border-radius:20px}
  .about-typographic-card{min-height:300px;padding:34px;border-radius:20px}
  .about-typographic-card strong{font-size:6rem}
  .about-numbers{padding:34px 0}
  .about-numbers-grid{grid-template-columns:1fr}
  .about-number{min-height:118px;padding:24px 0;border-right:0;border-bottom:1px solid rgba(255,255,255,.14)}
  .about-number:last-child{border-bottom:0}
  .about-client-timeline{display:flex;gap:20px;overflow-x:auto;padding:32px 18px 8px 4px;scroll-snap-type:x mandatory;scrollbar-width:none}
  .about-client-timeline::-webkit-scrollbar{display:none}
  .about-client-timeline::before{left:4px;right:-280px}
  .about-client-year{flex:0 0 210px;scroll-snap-align:start}
  .about-principles{padding:74px 0}
  .about-principles-grid{gap:38px}
  .about-principle{grid-template-columns:42px 1fr;gap:6px 14px;padding:22px 0}
  .about-principle p{grid-column:2}
  .about-values-line{justify-content:flex-start;margin-top:44px}
  .about-today{padding-top:76px}
  .about-today-grid{grid-template-columns:1fr;gap:44px}
  .about-today-media{position:relative;top:auto;min-height:0;aspect-ratio:4/5;max-height:620px}
  .about-today-media img{min-height:0;height:100%}
}

@media(max-width:460px){
  .about-hero{padding-top:calc(var(--header-h) + 40px)}
  .about-era{margin-bottom:12px}
  .about-hero h1{font-size:clamp(3rem,15vw,4.4rem)}
  .about-hero-meta strong{font-size:3rem}
  .about-hero-collage{height:315px}
  .about-collage-main{width:78%;height:74%;right:2%;border-radius:20px}
  .about-collage-small{border-width:4px;border-radius:14px}
  .about-collage-old{left:0;bottom:10px}
  .about-collage-now{right:0;bottom:0}
  .about-opening-grid{grid-template-columns:1fr}
  .about-opening-index{font-size:2rem}
  .about-opening-text{grid-column:1}
  .about-story-photo figcaption{font-size:.58rem}
  .about-section-intro h2,.about-principles-copy h2{font-size:clamp(2.25rem,11vw,3.2rem)}
  .about-today-media{aspect-ratio:1/1.15}
}


/* V58 — contacto */
.contact-page .page-hero::before{background-image:url('../images/hero/hero-maintenance-industrial.png');background-position:center 58%;filter:saturate(.72) contrast(1.04)}
.contact-page .page-hero::after{background:linear-gradient(90deg,rgba(9,10,12,.94),rgba(69,7,12,.78) 54%,rgba(18,16,18,.38))}


.section-highlight{
  position:relative;
  animation:sectionHighlightPulse 1.6s ease;
  border-color:rgba(228,58,68,.42) !important;
  box-shadow:0 0 0 3px rgba(228,58,68,.10), 0 20px 44px rgba(15,23,42,.10) !important;
}
.section-highlight::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  pointer-events:none;
  border:1px solid rgba(228,58,68,.28);
}
@keyframes sectionHighlightPulse{
  0%{box-shadow:0 0 0 0 rgba(228,58,68,.22), 0 20px 44px rgba(15,23,42,.10)}
  35%{box-shadow:0 0 0 8px rgba(228,58,68,.08), 0 20px 44px rgba(15,23,42,.10)}
  100%{box-shadow:0 0 0 3px rgba(228,58,68,.10), 0 20px 44px rgba(15,23,42,.10)}
}

/* =========================================================
   V62 · QUIÉNES SOMOS — identidad CEITAM
   ========================================================= */
.identity-page{background:#f5f6f7;color:#15171a}
.identity-page main{overflow:hidden}
.identity-kicker{display:flex;align-items:center;gap:12px;font-size:.66rem;font-weight:900;letter-spacing:.16em;text-transform:uppercase;color:#e2383d}
.identity-kicker::before{content:"";width:28px;height:2px;background:currentColor;flex:0 0 auto}
.identity-index{display:block;font-family:Oswald,Inter,sans-serif;font-size:.72rem;font-weight:800;color:#d93439;letter-spacing:.12em;margin-bottom:8px}

.identity-hero{position:relative;min-height:720px;padding:calc(var(--header-h) + 72px) 0 78px;background:#0b0d10;color:#fff;isolation:isolate}
.identity-hero-bg{position:absolute;inset:0;z-index:-2;background:url('../images/hero/hero-industrial.webp') center/cover no-repeat;filter:saturate(.58) contrast(1.05)}
.identity-hero::after{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(760px 520px at 72% 42%,rgba(218,40,47,.22),transparent 72%),linear-gradient(90deg,rgba(7,9,12,.98) 0%,rgba(10,12,15,.92) 48%,rgba(42,8,12,.78) 100%)}
.identity-hero-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(390px,.78fr);gap:64px;align-items:center}
.identity-hero h1{font-family:Oswald,Inter,sans-serif;font-size:clamp(4.1rem,6.1vw,6.5rem);line-height:.93;letter-spacing:-.03em;max-width:10.6ch;margin:16px 0 22px}
.identity-hero h1 em{font-style:normal;color:#e13a3f}
.identity-hero-copy>p{max-width:690px;font-size:.95rem;line-height:1.7;color:rgba(255,255,255,.72)}
.identity-hero-actions{margin-top:26px}
.identity-hero-points{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;margin-top:42px;border-top:1px solid rgba(255,255,255,.12);border-bottom:1px solid rgba(255,255,255,.12)}
.identity-hero-points>div{padding:18px 18px 18px 0;border-right:1px solid rgba(255,255,255,.10)}
.identity-hero-points>div:not(:first-child){padding-left:18px}
.identity-hero-points>div:last-child{border-right:0}
.identity-hero-points strong{display:block;font-family:Oswald,Inter,sans-serif;font-size:1.85rem;line-height:1;color:#fff;margin-bottom:6px}
.identity-hero-points span{display:block;max-width:18ch;font-size:.60rem;line-height:1.35;color:rgba(255,255,255,.52)}
.identity-hero-visual{position:relative;min-height:520px;display:flex;align-items:center;justify-content:center}
.identity-hero-visual figure{position:relative;width:min(100%,470px);height:540px;margin:0;border-radius:26px;overflow:hidden;border:1px solid rgba(255,255,255,.10);box-shadow:0 35px 70px rgba(0,0,0,.35)}
.identity-hero-visual figure::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 48%,rgba(8,9,11,.88) 100%)}
.identity-hero-visual figure img{width:100%;height:100%;object-fit:cover;object-position:center 45%}
.identity-hero-visual figcaption{position:absolute;z-index:2;left:26px;right:26px;bottom:24px;display:grid;gap:5px}
.identity-hero-visual figcaption span{font-size:.58rem;font-weight:900;letter-spacing:.14em;color:#ff6f73}
.identity-hero-visual figcaption strong{max-width:24ch;font-size:.78rem;line-height:1.35}
.identity-hero-badge{position:absolute;left:-18px;top:64px;width:170px;padding:18px 20px;border-radius:16px;background:rgba(19,21,25,.92);border:1px solid rgba(255,255,255,.09);box-shadow:0 22px 45px rgba(0,0,0,.25);backdrop-filter:blur(10px)}
.identity-hero-badge span{display:block;font-size:.56rem;font-weight:900;letter-spacing:.13em;color:#ff6469;margin-bottom:6px}
.identity-hero-badge strong{display:block;font-size:.68rem;line-height:1.35}

.identity-intro{padding:88px 0 76px;background:#fff}
.identity-intro-grid{display:grid;grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);gap:90px;align-items:start}
.identity-intro-heading h2,.identity-section-head h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(2.9rem,4.6vw,4.8rem);line-height:.96;letter-spacing:-.025em;margin:9px 0 0}
.identity-intro-copy{padding-top:30px}
.identity-intro-copy p{font-size:.86rem;line-height:1.72;color:#646b73;max-width:720px;margin:0 0 14px}
.identity-intro-copy .identity-lead{font-size:1.03rem;line-height:1.62;color:#25292f;font-weight:650}
.identity-pillars{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));margin-top:46px;border:1px solid #e5e7ea;border-radius:18px;overflow:hidden;background:#fafbfc}
.identity-pillars>div{padding:22px 22px 24px;border-right:1px solid #e5e7ea}
.identity-pillars>div:last-child{border-right:0}
.identity-pillars span{display:block;font-family:Oswald,Inter,sans-serif;font-size:.66rem;color:#d73338;margin-bottom:12px}
.identity-pillars strong{display:block;font-size:.75rem;line-height:1.32;color:#1d2025}
.identity-pillars small{display:block;margin-top:5px;font-size:.61rem;color:#8a9199}

.identity-purpose{padding:76px 0;background:linear-gradient(180deg,#f1f2f4 0%,#eceef1 100%)}
.identity-purpose-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.identity-purpose-card{position:relative;min-height:410px;overflow:hidden;border-radius:24px;padding:40px 42px;display:flex;align-items:flex-end;color:#fff;isolation:isolate;box-shadow:0 25px 50px rgba(15,20,28,.08)}
.identity-purpose-card::before{content:"";position:absolute;inset:0;z-index:-2}
.identity-purpose-mission::before{background:radial-gradient(520px 320px at 88% 10%,rgba(218,47,55,.26),transparent 70%),linear-gradient(135deg,#111317,#2b0a0e)}
.identity-purpose-vision::before{background:radial-gradient(520px 320px at 10% 90%,rgba(218,47,55,.19),transparent 70%),linear-gradient(135deg,#17191d,#0f1013)}
.identity-purpose-card::after{content:"";position:absolute;inset:0;z-index:-1;border:1px solid rgba(255,255,255,.08);border-radius:inherit}
.identity-purpose-letter{position:absolute;right:26px;top:-34px;font-family:Oswald,Inter,sans-serif;font-size:12rem;line-height:1;color:rgba(255,255,255,.045);font-weight:800}
.identity-purpose-card h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(2.45rem,3.7vw,4rem);line-height:.98;letter-spacing:-.025em;margin:13px 0 15px;max-width:11ch}
.identity-purpose-card p{max-width:610px;font-size:.79rem;line-height:1.66;color:rgba(255,255,255,.64);margin:0}

.identity-values{padding:88px 0 94px;background:#fff}
.identity-section-head{display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,.55fr);gap:70px;align-items:end;margin-bottom:34px}
.identity-section-head>p{margin:0 0 5px;color:#6b7179;font-size:.82rem;line-height:1.6;max-width:460px}
.identity-section-head.align-left{display:block;margin-bottom:24px}
.identity-section-head.align-left h2{max-width:10ch}
.identity-values-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.identity-value{position:relative;min-height:190px;padding:24px;border:1px solid #e3e6e9;border-radius:17px;background:linear-gradient(180deg,#fff,#fafbfc);transition:.22s ease;overflow:hidden}
.identity-value::after{content:"";position:absolute;left:0;top:0;bottom:0;width:3px;background:#d83237;transform:scaleY(0);transform-origin:bottom;transition:.22s ease}
.identity-value:hover{transform:translateY(-3px);border-color:#d5d8dc;box-shadow:0 18px 38px rgba(11,17,24,.065)}
.identity-value:hover::after{transform:scaleY(1)}
.identity-value>span{display:block;font-family:Oswald,Inter,sans-serif;font-size:.66rem;color:#d53338;margin-bottom:22px}
.identity-value strong{display:block;font-family:Oswald,Inter,sans-serif;font-size:1.45rem;line-height:1.05;color:#191c20;margin-bottom:10px}
.identity-value p{margin:0;font-size:.70rem;line-height:1.5;color:#747b83;max-width:32ch}

.identity-difference{padding:88px 0;background:#f1f3f5}
.identity-difference-grid{display:grid;grid-template-columns:minmax(390px,.92fr) minmax(0,1.08fr);gap:66px;align-items:center}
.identity-difference-media{position:relative;min-height:580px;border-radius:26px;overflow:hidden;background:#17191d;box-shadow:0 30px 70px rgba(15,20,28,.14)}
.identity-difference-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(8,10,12,.92) 100%)}
.identity-difference-media img{width:100%;height:100%;min-height:580px;object-fit:cover;object-position:center}
.identity-difference-media-tag{position:absolute;z-index:2;left:26px;right:26px;bottom:24px;display:grid;gap:6px;color:#fff}
.identity-difference-media-tag span{font-size:.58rem;font-weight:900;letter-spacing:.14em;color:#ff666b}
.identity-difference-media-tag strong{font-size:.80rem;line-height:1.35;max-width:34ch}
.identity-difference-list{display:grid;border-top:1px solid #dfe2e6}
.identity-difference-list article{display:grid;grid-template-columns:46px 1fr;gap:12px;padding:19px 0;border-bottom:1px solid #dfe2e6;align-items:start}
.identity-difference-list article>span{font-family:Oswald,Inter,sans-serif;font-size:.68rem;color:#d83439;padding-top:3px}
.identity-difference-list h3{font-size:.82rem;line-height:1.25;margin:0 0 5px;color:#1b1e22}
.identity-difference-list p{font-size:.69rem;line-height:1.48;color:#747b83;margin:0;max-width:54ch}

.identity-clients{position:relative;padding:92px 0 82px;background:#0d0f12;color:#fff;overflow:hidden;isolation:isolate}
.identity-clients::before{content:"";position:absolute;inset:0;z-index:-2;background:linear-gradient(110deg,#08090c 0%,#111318 50%,#25080b 100%)}
.identity-clients-glow{position:absolute;z-index:-1;width:720px;height:520px;border-radius:50%;right:-180px;top:-180px;background:radial-gradient(circle,rgba(220,43,51,.26),transparent 68%);filter:blur(10px)}
.identity-clients-head{max-width:960px;text-align:center}
.identity-clients-head .identity-kicker{justify-content:center}
.identity-clients-head h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(3.1rem,5.4vw,5.6rem);line-height:.96;letter-spacing:-.025em;margin:14px auto 15px}
.identity-clients-head p{max-width:760px;margin:0 auto;font-size:.82rem;line-height:1.62;color:rgba(255,255,255,.58)}
.identity-client-wall{position:relative;margin:52px 0 44px;display:grid;gap:19px;overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent)}
.identity-client-track{display:flex;align-items:center;width:max-content;gap:72px;will-change:transform}
.identity-client-track img{display:block;width:auto;height:92px;object-fit:contain;opacity:.93;flex:0 0 auto}
.identity-client-track-a{animation:identityMarqueeA 38s linear infinite}
.identity-client-track-b{animation:identityMarqueeB 44s linear infinite;transform:translateX(-50%)}
.identity-client-wall:hover .identity-client-track{animation-play-state:paused}
@keyframes identityMarqueeA{from{transform:translateX(0)}to{transform:translateX(calc(-50% - 36px))}}
@keyframes identityMarqueeB{from{transform:translateX(calc(-50% - 36px))}to{transform:translateX(0)}}
.identity-trust-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border-top:1px solid rgba(255,255,255,.11);border-bottom:1px solid rgba(255,255,255,.11)}
.identity-trust-stats>div{padding:22px 26px;border-right:1px solid rgba(255,255,255,.10)}
.identity-trust-stats>div:last-child{border-right:0}
.identity-trust-stats strong{display:block;font-family:Oswald,Inter,sans-serif;font-size:1.9rem;line-height:1;color:#fff;margin-bottom:8px}
.identity-trust-stats span{display:block;font-size:.64rem;line-height:1.45;color:rgba(255,255,255,.50);max-width:30ch}
.identity-clients-statement{text-align:center;margin-top:34px;font-family:Oswald,Inter,sans-serif;font-size:clamp(1.45rem,2.4vw,2.35rem);line-height:1.12;color:rgba(255,255,255,.88);max-width:32ch}

.identity-history-cta{padding:84px 0 92px;background:#f5f6f7}
.identity-history-card{display:grid;grid-template-columns:minmax(0,1fr) minmax(390px,.82fr);gap:54px;align-items:center;min-height:460px;padding:38px 42px;border:1px solid #e0e3e6;border-radius:26px;background:#fff;box-shadow:0 24px 55px rgba(16,21,28,.06);overflow:hidden}
.identity-history-copy h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(2.65rem,4vw,4.35rem);line-height:.97;letter-spacing:-.025em;max-width:12ch;margin:13px 0 14px}
.identity-history-copy p{max-width:630px;font-size:.78rem;line-height:1.58;color:#6a7179;margin:0 0 22px}
.identity-history-media{position:relative;height:360px;display:grid;grid-template-columns:1fr 1fr;gap:10px;transform:rotate(-2deg)}
.identity-history-media figure{margin:0;border-radius:18px;overflow:hidden;box-shadow:0 16px 34px rgba(0,0,0,.12)}
.identity-history-media figure:nth-child(2){transform:translateY(28px)}
.identity-history-media img{width:100%;height:100%;object-fit:cover}
.identity-history-media>span{position:absolute;z-index:2;bottom:12px;padding:7px 9px;border-radius:8px;background:rgba(11,13,16,.82);color:#fff;font-family:Oswald,Inter,sans-serif;font-size:.66rem;letter-spacing:.08em}
.identity-history-media>span:nth-of-type(1){left:12px}
.identity-history-media>span:nth-of-type(2){right:12px;bottom:-16px}

@media(max-width:1080px){
  .identity-hero-grid{gap:38px}.identity-hero-visual figure{height:500px}.identity-hero-badge{left:-6px}
  .identity-intro-grid{gap:52px}.identity-difference-grid{gap:42px}.identity-history-card{gap:36px}
}
@media(max-width:820px){
  .identity-hero{min-height:0;padding:calc(var(--header-h) + 48px) 0 56px}
  .identity-hero-grid{grid-template-columns:1fr}.identity-hero h1{font-size:clamp(3.25rem,10vw,5rem);max-width:11ch}.identity-hero-visual{min-height:390px}.identity-hero-visual figure{height:390px;width:100%}.identity-hero-badge{left:18px;top:26px}
  .identity-intro{padding:66px 0}.identity-intro-grid{grid-template-columns:1fr;gap:20px}.identity-intro-copy{padding-top:0}.identity-pillars{grid-template-columns:repeat(2,1fr)}.identity-pillars>div:nth-child(2){border-right:0}.identity-pillars>div:nth-child(-n+2){border-bottom:1px solid #e5e7ea}
  .identity-purpose{padding:58px 0}.identity-purpose-grid{grid-template-columns:1fr}.identity-purpose-card{min-height:340px}
  .identity-values{padding:66px 0}.identity-section-head{grid-template-columns:1fr;gap:16px}.identity-values-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .identity-difference{padding:66px 0}.identity-difference-grid{grid-template-columns:1fr}.identity-difference-media{min-height:420px}.identity-difference-media img{min-height:420px}
  .identity-clients{padding:72px 0 66px}.identity-client-track img{height:76px}.identity-trust-stats{grid-template-columns:1fr}.identity-trust-stats>div{border-right:0;border-bottom:1px solid rgba(255,255,255,.10)}.identity-trust-stats>div:last-child{border-bottom:0}
  .identity-history-card{grid-template-columns:1fr;padding:30px}.identity-history-media{height:300px}
}
@media(max-width:560px){
  .identity-hero{padding:calc(var(--header-h) + 30px) 0 42px}.identity-hero h1{font-size:clamp(2.85rem,13vw,4.05rem)}.identity-hero-copy>p{font-size:.86rem}.identity-hero-actions{display:grid;width:100%}.identity-hero-actions .btn{width:100%}.identity-hero-points{grid-template-columns:1fr;margin-top:30px}.identity-hero-points>div{border-right:0;border-bottom:1px solid rgba(255,255,255,.10);padding:13px 0}.identity-hero-points>div:not(:first-child){padding-left:0}.identity-hero-points>div:last-child{border-bottom:0}.identity-hero-points span{max-width:none}.identity-hero-visual{min-height:330px}.identity-hero-visual figure{height:330px;border-radius:20px}.identity-hero-badge{width:150px;padding:13px 15px;left:10px;top:18px}
  .identity-intro{padding:54px 0}.identity-intro-heading h2,.identity-section-head h2{font-size:2.7rem}.identity-pillars{grid-template-columns:1fr}.identity-pillars>div,.identity-pillars>div:nth-child(2){border-right:0;border-bottom:1px solid #e5e7ea}.identity-pillars>div:last-child{border-bottom:0}
  .identity-purpose-card{padding:28px 24px;min-height:330px}.identity-purpose-card h2{font-size:2.55rem}.identity-purpose-letter{font-size:9rem;top:-10px}
  .identity-values{padding:56px 0}.identity-values-grid{grid-template-columns:1fr}.identity-value{min-height:160px;padding:20px}.identity-value>span{margin-bottom:16px}
  .identity-difference{padding:56px 0}.identity-difference-media{min-height:330px;border-radius:20px}.identity-difference-media img{min-height:330px}.identity-difference-media-tag{left:18px;right:18px;bottom:18px}
  .identity-clients{padding:60px 0}.identity-clients-head h2{font-size:3rem}.identity-client-wall{margin:38px 0 34px;gap:10px;mask-image:linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent)}.identity-client-track{gap:44px}.identity-client-track img{height:58px}.identity-trust-stats>div{padding:18px 8px}.identity-clients-statement{font-size:1.65rem}
  .identity-history-cta{padding:54px 0 62px}.identity-history-card{padding:24px;border-radius:20px}.identity-history-copy h2{font-size:2.65rem}.identity-history-media{height:240px;gap:7px}
}
@media(prefers-reduced-motion:reduce){.identity-client-track{animation:none !important}.identity-client-wall{overflow-x:auto;mask-image:none;-webkit-mask-image:none}.identity-client-track-b{transform:none}}

/* V62 · ajuste final del muro de clientes: una sola línea limpia y continua */
.identity-client-wall{gap:0;margin:50px 0 44px;padding:12px 0}
.identity-client-track{gap:64px}
.identity-client-track img{height:100px;width:auto}
.identity-client-track-a{animation:identityMarqueeA 42s linear infinite}
@media(max-width:820px){.identity-client-track img{height:82px}}
@media(max-width:560px){.identity-client-track img{height:62px}.identity-client-wall{margin:36px 0 32px}}
@keyframes identityMarqueeA{from{transform:translateX(0)}to{transform:translateX(calc(-50% - 32px))}}

/* V63 — Quiénes somos: identity-first, visual and static client wall */
.identity-hero-v63 .identity-hero-badge{display:none!important}
.identity-hero-v63 .identity-hero-copy>p{max-width:710px}
.identity-signature{display:flex;align-items:center;flex-wrap:wrap;gap:12px;margin-top:28px;padding-top:18px;border-top:1px solid rgba(255,255,255,.11);color:rgba(255,255,255,.68)}
.identity-signature span{font-size:.63rem;font-weight:800;letter-spacing:.04em}
.identity-signature i{width:3px;height:3px;border-radius:50%;background:#e04449;display:block}

.identity-manifesto{padding:96px 0 84px;background:#f5f6f7;color:#17191c}
.identity-manifesto-grid{display:grid;grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);gap:90px;align-items:start}
.identity-manifesto-title h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(3.25rem,5.4vw,5.65rem);line-height:.94;letter-spacing:-.03em;max-width:9.5ch;margin:14px 0 0}
.identity-manifesto-copy{padding-top:54px;border-top:1px solid #d8dce1}
.identity-manifesto-copy p{margin:0;max-width:720px;color:#69717a;font-size:.78rem;line-height:1.62}
.identity-manifesto-copy .identity-manifesto-lead{font-family:Oswald,Inter,sans-serif;font-size:clamp(1.55rem,2.35vw,2.35rem);line-height:1.12;color:#20242a;margin-bottom:18px;max-width:24ch}
.identity-capability-line{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));margin-top:68px;border-top:1px solid #d8dce1;border-bottom:1px solid #d8dce1}
.identity-capability-line>div{padding:22px 24px 24px;border-right:1px solid #d8dce1;display:grid;gap:5px}
.identity-capability-line>div:last-child{border-right:0}
.identity-capability-line strong{font-family:Oswald,Inter,sans-serif;font-size:.68rem;color:#d83439}
.identity-capability-line span{font-size:.78rem;font-weight:900;color:#1d2024}
.identity-capability-line small{font-size:.62rem;color:#89919a}

.identity-purpose-v63{padding:0;background:#0d0f12}
.identity-purpose-split{display:grid;grid-template-columns:1fr 1fr;padding:0;width:min(1380px,100%)}
.identity-purpose-panel{position:relative;min-height:510px;padding:72px 64px;display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden}
.identity-purpose-panel::before{content:"";position:absolute;inset:0;pointer-events:none}
.identity-purpose-panel-dark{background:linear-gradient(145deg,#090b0e 0%,#17080b 58%,#3a0a11 100%);color:#fff}
.identity-purpose-panel-dark::before{background:radial-gradient(circle at 82% 16%,rgba(218,46,52,.22),transparent 36%)}
.identity-purpose-panel-light{background:linear-gradient(145deg,#ffffff 0%,#f1f3f5 100%);color:#1a1d21}
.identity-purpose-panel-light::before{background:radial-gradient(circle at 18% 12%,rgba(218,46,52,.08),transparent 34%)}
.identity-purpose-panel h2{position:relative;font-family:Oswald,Inter,sans-serif;font-size:clamp(3rem,4.8vw,5rem);line-height:.95;letter-spacing:-.03em;max-width:10ch;margin:14px 0 16px}
.identity-purpose-panel p{position:relative;max-width:58ch;font-size:.76rem;line-height:1.62;margin:0}
.identity-purpose-panel-dark p{color:rgba(255,255,255,.64)}
.identity-purpose-panel-light p{color:#68707a}

.identity-values-v63{padding:100px 0;background:#fff}
.identity-values-heading{display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);column-gap:70px;align-items:end;margin-bottom:46px}
.identity-values-heading .identity-index,.identity-values-heading .eyebrow{grid-column:1}
.identity-values-heading h2{grid-column:1/3;font-family:Oswald,Inter,sans-serif;font-size:clamp(3rem,5vw,5.2rem);line-height:.95;letter-spacing:-.03em;max-width:13ch;margin:14px 0 0}
.identity-values-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border-top:1px solid #dde1e5}
.identity-values-list article{padding:24px 24px 28px 0;border-bottom:1px solid #dde1e5;min-height:150px;display:grid;align-content:start;grid-template-columns:48px 1fr;column-gap:14px}
.identity-values-list article:nth-child(3n+1),.identity-values-list article:nth-child(3n+2){border-right:1px solid #dde1e5;padding-right:24px}
.identity-values-list article:nth-child(3n+2),.identity-values-list article:nth-child(3n+3){padding-left:24px}
.identity-values-list article>span{font-family:Oswald,Inter,sans-serif;font-size:.64rem;color:#d83439;padding-top:4px}
.identity-values-list strong{font-family:Oswald,Inter,sans-serif;font-size:1.6rem;line-height:1;color:#1b1f24}
.identity-values-list p{grid-column:2;margin:8px 0 0;font-size:.67rem;line-height:1.45;color:#7a828b;max-width:30ch}

.identity-difference-v63{background:#f5f6f7}
.identity-difference-v63 .identity-difference-media{box-shadow:none}
.identity-difference-v63 .identity-difference-list article{transition:padding .24s ease,background .24s ease}
.identity-difference-v63 .identity-difference-list article:hover{padding-left:12px;background:linear-gradient(90deg,rgba(216,52,57,.05),transparent 72%)}

.identity-clients-v63{padding:98px 0 86px}
.identity-clients-v63 .identity-clients-head p{max-width:650px}
.identity-client-static{margin:48px auto 44px;padding:22px 0 18px;border-top:1px solid rgba(255,255,255,.10);border-bottom:1px solid rgba(255,255,255,.10)}
.identity-client-static img{display:block;width:min(1180px,96%);height:auto;margin:0 auto;opacity:.96;filter:drop-shadow(0 0 12px rgba(255,255,255,.05))}
.identity-client-wall,.identity-client-track{animation:none!important}

.identity-history-cta-v63{padding:0;background:#0f1114}
.identity-history-stage{display:grid;grid-template-columns:minmax(0,1fr) minmax(430px,.85fr);gap:54px;align-items:center;min-height:560px;padding-top:62px;padding-bottom:62px;color:#fff}
.identity-history-stage .identity-history-copy h2{color:#fff;font-size:clamp(3rem,4.6vw,5.15rem);max-width:11ch}
.identity-history-stage .identity-history-copy p{color:rgba(255,255,255,.58)}
.identity-history-stage .identity-history-media{height:390px}

@media(max-width:900px){
  .identity-manifesto-grid{grid-template-columns:1fr;gap:34px}.identity-manifesto-copy{padding-top:24px}.identity-capability-line{grid-template-columns:repeat(2,1fr)}.identity-capability-line>div:nth-child(2){border-right:0}.identity-capability-line>div:nth-child(-n+2){border-bottom:1px solid #d8dce1}
  .identity-purpose-split{grid-template-columns:1fr}.identity-purpose-panel{min-height:380px;padding:54px 42px}
  .identity-values-list{grid-template-columns:repeat(2,1fr)}.identity-values-list article{border-right:0!important;padding-left:0!important;padding-right:22px!important}.identity-values-list article:nth-child(odd){border-right:1px solid #dde1e5!important}.identity-values-list article:nth-child(even){padding-left:22px!important}
  .identity-history-stage{grid-template-columns:1fr;padding-top:54px;padding-bottom:60px}.identity-history-stage .identity-history-media{height:330px}
}
@media(max-width:560px){
  .identity-signature{gap:9px}.identity-signature span{font-size:.57rem}.identity-manifesto{padding:58px 0 54px}.identity-manifesto-title h2{font-size:3rem}.identity-capability-line{grid-template-columns:1fr;margin-top:42px}.identity-capability-line>div{border-right:0!important;border-bottom:1px solid #d8dce1!important;padding:17px 0}.identity-capability-line>div:last-child{border-bottom:0!important}
  .identity-purpose-panel{min-height:330px;padding:40px 24px}.identity-purpose-panel h2{font-size:2.85rem}
  .identity-values-v63{padding:60px 0}.identity-values-heading{display:block}.identity-values-heading h2{font-size:3rem}.identity-values-list{grid-template-columns:1fr}.identity-values-list article{border-right:0!important;padding:20px 0!important;min-height:0}.identity-values-list p{max-width:none}
  .identity-clients-v63{padding:64px 0 58px}.identity-client-static{margin:34px auto 30px;padding:16px 0}.identity-client-static img{width:100%}
  .identity-history-stage{padding-top:46px;padding-bottom:50px}.identity-history-stage .identity-history-copy h2{font-size:3rem}.identity-history-stage .identity-history-media{height:250px}
}


/* V64 — Quiénes somos rediseño más visual */
.identity-hero-v64{min-height:680px;padding:calc(var(--header-h) + 62px) 0 64px}
.identity-hero-v64 .identity-hero-bg{background:url('../images/hero/hero-maintenance-industrial.png') center center/cover no-repeat;filter:saturate(.7) contrast(1.02)}
.identity-hero-v64::after{background:radial-gradient(760px 520px at 76% 42%,rgba(218,40,47,.18),transparent 72%),linear-gradient(90deg,rgba(7,9,12,.95) 0%,rgba(9,11,14,.84) 44%,rgba(32,9,13,.74) 100%)}
.identity-hero-grid-v64{grid-template-columns:minmax(0,1.05fr) minmax(280px,.6fr);gap:52px;align-items:end}
.identity-hero-v64 h1{text-transform:uppercase;font-size:clamp(3.35rem,5vw,5.4rem);line-height:.95;max-width:11ch}
.identity-hero-v64 .identity-hero-copy>p{max-width:620px;font-size:.88rem;line-height:1.65;color:rgba(255,255,255,.76)}
.identity-hero-side{display:flex;align-items:flex-end;justify-content:flex-end;min-height:100%}
.identity-hero-side-copy{max-width:280px;padding:0 0 28px 0;color:#fff;text-align:left}
.identity-hero-side-copy .eyebrow{display:block;margin-bottom:10px;color:#ff6469}
.identity-hero-side-copy strong{display:block;font-family:Oswald,Inter,sans-serif;font-size:1.65rem;line-height:.98;letter-spacing:-.02em}

.identity-snapshot-v64{position:relative;padding:88px 0 92px;background:linear-gradient(180deg,#f3f5f7 0%,#eef1f3 100%);overflow:hidden}
.identity-snapshot-v64::before{content:"CEITAM";position:absolute;right:4%;top:34px;font-family:Oswald,Inter,sans-serif;font-size:clamp(7rem,17vw,14rem);line-height:.82;color:rgba(18,22,27,.035);pointer-events:none}
.identity-snapshot-head{max-width:980px}
.identity-snapshot-head h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(3rem,5vw,5.35rem);line-height:.95;letter-spacing:-.03em;margin:14px 0 16px;max-width:12ch}
.identity-snapshot-head p{margin:0;max-width:620px;font-size:.84rem;line-height:1.55;color:#707781}
.identity-snapshot-flow{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:48px}
.identity-snapshot-flow article{position:relative;padding:22px 24px 20px;border-top:1px solid #d9dde1;border-bottom:1px solid #d9dde1;background:linear-gradient(180deg,rgba(255,255,255,.58),rgba(255,255,255,.22));backdrop-filter:blur(8px)}
.identity-snapshot-flow article::after{content:"";position:absolute;left:0;top:-1px;width:48px;height:2px;background:#d83439}
.identity-snapshot-flow span{display:block;font-family:Oswald,Inter,sans-serif;font-size:.7rem;color:#d83439;margin-bottom:12px}
.identity-snapshot-flow strong{display:block;font-family:Oswald,Inter,sans-serif;font-size:1.45rem;line-height:1.02;color:#171a1f;max-width:11ch}
.identity-snapshot-flow small{display:block;margin-top:10px;font-size:.68rem;line-height:1.45;color:#727a84;max-width:25ch}

.identity-values-v64{position:relative;padding:96px 0;background:linear-gradient(180deg,#0d0f12 0%,#13161a 58%,#15080b 100%);color:#fff;overflow:hidden}
.identity-values-v64::before{content:"";position:absolute;inset:auto -120px -180px auto;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(216,52,57,.22),transparent 68%);filter:blur(12px)}
.identity-values-heading-v64{display:block;margin-bottom:42px}
.identity-values-heading-v64 h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(3rem,5vw,5.1rem);line-height:.95;letter-spacing:-.03em;max-width:13ch;margin:14px 0 0;color:#fff}
.identity-values-wall{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.identity-values-wall article{padding:22px 0 26px;border-top:1px solid rgba(255,255,255,.12)}
.identity-values-wall strong{display:block;font-family:Oswald,Inter,sans-serif;font-size:1.95rem;line-height:.95;color:#fff}
.identity-values-wall p{margin:10px 0 0;max-width:28ch;font-size:.7rem;line-height:1.45;color:rgba(255,255,255,.62)}

.identity-capacity-v64{padding:96px 0;background:#f5f6f7}
.identity-capacity-grid{display:grid;grid-template-columns:minmax(0,.95fr) minmax(390px,.95fr);gap:64px;align-items:center}
.identity-capacity-copy h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(3rem,5.1vw,5.2rem);line-height:.95;letter-spacing:-.03em;max-width:11ch;margin:14px 0 18px;color:#171a1f}
.identity-capacity-copy>p{max-width:60ch;font-size:.8rem;line-height:1.62;color:#69717a;margin:0 0 28px}
.identity-capacity-list{display:grid;gap:10px}
.identity-capacity-list article{display:grid;grid-template-columns:50px 1fr;gap:14px;padding:16px 0;border-top:1px solid #d9dde1}
.identity-capacity-list article:last-child{border-bottom:1px solid #d9dde1}
.identity-capacity-list span{font-family:Oswald,Inter,sans-serif;font-size:.68rem;color:#d83439;padding-top:4px}
.identity-capacity-list strong{display:block;font-size:.9rem;line-height:1.2;color:#1a1d21}
.identity-capacity-list small{display:block;margin-top:5px;font-size:.67rem;line-height:1.45;color:#7b838c}
.identity-capacity-visual{display:grid;grid-template-columns:minmax(0,1.04fr) 180px;gap:16px;align-items:stretch}
.identity-capacity-visual figure{margin:0;overflow:hidden;border-radius:24px;position:relative}
.identity-capacity-image-main{min-height:520px;background:#181b20}
.identity-capacity-image-main::after,.identity-capacity-image-side::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(10,12,15,.12) 100%)}
.identity-capacity-image-main img,.identity-capacity-image-side img{width:100%;height:100%;object-fit:cover}
.identity-capacity-image-side{min-height:520px}
.identity-capacity-image-side img{object-position:58% center}

.identity-clients-v64{padding:92px 0 84px}
.identity-clients-head-v64{text-align:center;max-width:860px}
.identity-clients-head-v64 .identity-kicker{justify-content:center}
.identity-clients-head-v64 h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(3rem,5.2vw,5.2rem);line-height:.95;letter-spacing:-.03em;margin:14px auto 14px;max-width:11ch}
.identity-clients-head-v64 p{margin:0 auto;max-width:640px;font-size:.8rem;line-height:1.58;color:rgba(255,255,255,.62)}
.identity-trust-stats-v64{margin-top:36px;grid-template-columns:repeat(3,minmax(0,1fr));max-width:1020px}
.identity-trust-stats-v64>div{text-align:center}
.identity-trust-stats-v64 span{margin-left:auto;margin-right:auto;max-width:22ch}
.identity-client-static-v64{margin:38px auto 22px;padding:20px 0 6px;border-top:1px solid rgba(255,255,255,.10);border-bottom:0}
.identity-client-static-v64 img{display:block;width:min(980px,88%);margin:0 auto;opacity:.96}
.identity-clients-statement-v64{text-align:center;margin-top:18px;font-family:Oswald,Inter,sans-serif;font-size:clamp(1.3rem,2vw,2.15rem);line-height:1.08;max-width:26ch;color:rgba(255,255,255,.88)}

.identity-history-cta-v64{padding:72px 0 84px;background:#f0f2f4}
.identity-history-stage-v64{display:grid;grid-template-columns:minmax(0,.95fr) minmax(390px,.95fr);gap:56px;align-items:center;color:#171a1f}
.identity-history-stage-v64 .identity-history-copy h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(3rem,5vw,5.1rem);line-height:.95;letter-spacing:-.03em;max-width:11ch;margin:14px 0 16px;color:#171a1f}
.identity-history-stage-v64 .identity-history-copy p{max-width:58ch;font-size:.8rem;line-height:1.6;color:#69717a;margin:0 0 24px}
.identity-history-media-v64{position:relative;height:430px;display:grid;grid-template-columns:1.1fr .72fr;gap:16px;align-items:end}
.identity-history-media-v64 figure{margin:0;border-radius:24px;overflow:hidden;box-shadow:0 24px 50px rgba(18,22,27,.10)}
.identity-history-media-v64 img{width:100%;height:100%;object-fit:cover}
.identity-history-photo-lg{height:100%}
.identity-history-photo-sm{height:250px;transform:translateY(28px)}
.identity-history-year-start,.identity-history-year-end{position:absolute;bottom:-8px;font-family:Oswald,Inter,sans-serif;font-size:1.15rem;letter-spacing:.08em;color:#d83439}
.identity-history-year-start{left:8px}.identity-history-year-end{right:8px}

@media(max-width:980px){
  .identity-hero-grid-v64,.identity-capacity-grid,.identity-history-stage-v64{grid-template-columns:1fr}
  .identity-hero-side{justify-content:flex-start}.identity-hero-side-copy{padding-top:8px}
  .identity-snapshot-flow,.identity-values-wall{grid-template-columns:repeat(2,minmax(0,1fr))}
  .identity-capacity-visual{grid-template-columns:1fr 150px}.identity-capacity-image-main,.identity-capacity-image-side{min-height:420px}
}
@media(max-width:700px){
  .identity-hero-v64{min-height:0;padding:calc(var(--header-h) + 38px) 0 44px}.identity-hero-v64 h1{font-size:clamp(2.7rem,12vw,4rem)}
  .identity-snapshot-v64{padding:58px 0 60px}.identity-snapshot-head h2,.identity-values-heading-v64 h2,.identity-capacity-copy h2,.identity-clients-head-v64 h2,.identity-history-stage-v64 .identity-history-copy h2{font-size:3rem}
  .identity-snapshot-flow,.identity-values-wall,.identity-trust-stats-v64{grid-template-columns:1fr}
  .identity-capacity-visual{grid-template-columns:1fr;gap:12px}.identity-capacity-image-main{min-height:320px}.identity-capacity-image-side{min-height:260px}
  .identity-history-media-v64{grid-template-columns:1fr;height:auto}.identity-history-photo-lg{height:260px}.identity-history-photo-sm{height:200px;transform:none}
}


/* V65 — Quiénes somos: reconstrucción suave, visual y editorial */
.identity65-hero{position:relative;min-height:680px;padding:calc(var(--header-h) + 72px) 0 66px;color:#fff;isolation:isolate;overflow:hidden}
.identity65-hero-bg{position:absolute;inset:0;z-index:-2;background:url('../images/hero/hero-industrial.webp') center/cover no-repeat;filter:saturate(.72) contrast(1.04)}
.identity65-hero::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(7,9,12,.94) 0%,rgba(12,13,16,.78) 54%,rgba(54,11,16,.55) 100%),radial-gradient(660px 500px at 78% 40%,rgba(220,48,55,.22),transparent 72%)}
.identity65-hero-inner{max-width:1140px;margin-left:auto;margin-right:auto;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;min-height:520px}
.identity65-hero h1{font-family:Oswald,Inter,sans-serif;font-size:clamp(3.45rem,5.25vw,5.55rem);line-height:.96;letter-spacing:-.028em;max-width:13.5ch;margin:16px 0 20px;text-transform:uppercase}
.identity65-hero p{max-width:700px;margin:0;font-size:.92rem;line-height:1.65;color:rgba(255,255,255,.76)}
.identity65-hero-actions{margin-top:26px}
.identity65-hero-line{display:flex;align-items:center;flex-wrap:wrap;gap:11px;margin-top:30px;padding-top:18px;border-top:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.68)}
.identity65-hero-line span{font-size:.61rem;font-weight:800;letter-spacing:.035em}.identity65-hero-line i{width:3px;height:3px;border-radius:50%;background:#e3474c}

.identity65-intro{position:relative;padding:92px 0 98px;overflow:hidden;background:#f5f6f7;isolation:isolate}
.identity65-intro-bg{position:absolute;inset:0;z-index:-2;background:url('../images/hero/hero-maintenance-industrial.png') center 48%/cover no-repeat;filter:saturate(.42) contrast(.96)}
.identity65-intro::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.91) 52%,rgba(255,255,255,.82) 100%)}
.identity65-intro-grid{display:grid;grid-template-columns:minmax(0,.88fr) minmax(420px,1.12fr);gap:72px;align-items:center}
.identity65-intro-copy h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(3.1rem,5vw,5.15rem);line-height:.95;letter-spacing:-.03em;max-width:10ch;margin:14px 0 16px;color:#171a1f}
.identity65-intro-copy p{max-width:56ch;margin:0;font-size:.8rem;line-height:1.62;color:#626a74}
.identity65-orbit{position:relative;min-height:460px;display:grid;place-items:center}
.identity65-orbit::before,.identity65-orbit::after{content:"";position:absolute;border-radius:50%;border:1px solid rgba(32,38,44,.13)}
.identity65-orbit::before{width:330px;height:330px}.identity65-orbit::after{width:440px;height:440px;border-style:dashed;opacity:.55}
.identity65-orbit-core{position:relative;z-index:2;width:188px;height:188px;border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;background:linear-gradient(145deg,#111419,#2a0c11);color:#fff;box-shadow:0 30px 55px rgba(24,27,32,.18)}
.identity65-orbit-core strong{font-family:Oswald,Inter,sans-serif;font-size:2.4rem;letter-spacing:.03em}.identity65-orbit-core span{font-size:.6rem;color:rgba(255,255,255,.62);max-width:12ch}
.identity65-orbit-item{position:absolute;z-index:3;display:flex;align-items:center;gap:9px;padding:10px 13px;border-radius:999px;background:rgba(255,255,255,.86);border:1px solid rgba(28,33,39,.10);box-shadow:0 14px 30px rgba(24,27,32,.08);backdrop-filter:blur(10px)}
.identity65-orbit-item span{font-family:Oswald,Inter,sans-serif;font-size:.62rem;color:#d83439}.identity65-orbit-item strong{font-size:.7rem;color:#1b1f24;white-space:nowrap}
.orbit-a{left:3%;top:24%}.orbit-b{right:2%;top:18%}.orbit-c{left:8%;bottom:18%}.orbit-d{right:3%;bottom:24%}

.identity65-purpose{margin:0}

.identity65-values{position:relative;padding:92px 0;background:#f4f6f8;overflow:hidden}
.identity65-values::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.94),rgba(255,255,255,.84)),url('../images/company/history/archivo-taller-2.webp') center/cover no-repeat;opacity:.96}
.identity65-values-grid{position:relative;display:grid;grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);gap:68px;align-items:start}
.identity65-values-head h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(3rem,4.8vw,4.9rem);line-height:.96;letter-spacing:-.03em;max-width:10ch;margin:14px 0 0;color:#181b20}
.identity65-values-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));border-top:1px solid rgba(36,42,48,.14)}
.identity65-values-list>div{padding:20px 18px 20px 0;border-bottom:1px solid rgba(36,42,48,.14)}
.identity65-values-list>div:nth-child(odd){border-right:1px solid rgba(36,42,48,.14)}.identity65-values-list>div:nth-child(even){padding-left:18px}
.identity65-values-list strong{display:block;font-family:Oswald,Inter,sans-serif;font-size:1.55rem;line-height:1;color:#1d2025}.identity65-values-list span{display:block;margin-top:7px;font-size:.67rem;line-height:1.42;color:#6f7781}

.identity65-capacity{padding:94px 0;background:#fff}
.identity65-capacity-stage{display:grid;grid-template-columns:minmax(420px,.95fr) minmax(0,1.05fr);gap:64px;align-items:center}
.identity65-capacity-media{position:relative;height:560px;border-radius:28px;overflow:hidden;background:#14171b;box-shadow:0 28px 60px rgba(18,22,28,.12)}
.identity65-capacity-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 52%,rgba(9,11,13,.54) 100%)}
.identity65-capacity-media img{width:100%;height:100%;object-fit:cover}.identity65-capacity-media>span{position:absolute;z-index:2;left:24px;bottom:22px;font-family:Oswald,Inter,sans-serif;font-size:1.15rem;color:#fff;letter-spacing:.02em}
.identity65-capacity-copy h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(3.05rem,4.9vw,5rem);line-height:.95;letter-spacing:-.03em;max-width:10ch;margin:14px 0 16px;color:#181b20}
.identity65-capacity-copy>p{max-width:54ch;margin:0 0 26px;font-size:.8rem;line-height:1.62;color:#68707a}
.identity65-capacity-steps{display:grid;border-top:1px solid #e0e3e7}
.identity65-capacity-steps>div{display:grid;grid-template-columns:46px 1fr;gap:10px;padding:15px 0;border-bottom:1px solid #e0e3e7}.identity65-capacity-steps>div>span{font-family:Oswald,Inter,sans-serif;font-size:.64rem;color:#d83439;padding-top:3px}.identity65-capacity-steps strong{display:block;font-size:.82rem;color:#20242a}.identity65-capacity-steps small{display:block;margin-top:4px;font-size:.64rem;color:#7b838d}

.identity65-clients{position:relative;padding:92px 0 82px;color:#fff;isolation:isolate;overflow:hidden;background:#0d0f12}
.identity65-clients-bg{position:absolute;inset:0;z-index:-2;background:url('../images/hero/hero-industrial.webp') center/cover no-repeat;filter:saturate(.42) contrast(1.05)}
.identity65-clients::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(115deg,rgba(8,10,13,.96),rgba(17,19,23,.92) 54%,rgba(53,9,14,.88))}
.identity65-clients-inner{text-align:center}.identity65-clients-head{max-width:850px;margin:0 auto}.identity65-clients-head h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(3rem,5vw,5rem);line-height:.96;letter-spacing:-.03em;max-width:11ch;margin:14px auto 14px}.identity65-clients-head p{max-width:620px;margin:0 auto;font-size:.79rem;line-height:1.58;color:rgba(255,255,255,.62)}
.identity65-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));max-width:980px;margin:34px auto 0;border-top:1px solid rgba(255,255,255,.10);border-bottom:1px solid rgba(255,255,255,.10)}
.identity65-stats>div{padding:19px 12px;text-align:center;border-right:1px solid rgba(255,255,255,.10)}.identity65-stats>div:last-child{border-right:0}.identity65-stats strong{display:block;font-family:Oswald,Inter,sans-serif;font-size:1.55rem;color:#fff}.identity65-stats span{display:block;margin-top:5px;font-size:.61rem;color:rgba(255,255,255,.55)}
.identity65-client-logos{margin:34px auto 0}.identity65-client-logos img{display:block;width:min(880px,84%);height:auto;margin:0 auto;opacity:.96}

.identity65-history{position:relative;min-height:520px;padding:90px 0;color:#fff;isolation:isolate;overflow:hidden}
.identity65-history-bg{position:absolute;inset:0;z-index:-2;background:url('../images/company/history/campo-2014.webp') center 42%/cover no-repeat;filter:saturate(.68) contrast(1.02)}
.identity65-history::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(9,10,13,.94),rgba(13,15,18,.78) 58%,rgba(47,9,13,.54))}
.identity65-history-inner{display:flex;min-height:340px;flex-direction:column;justify-content:center;align-items:flex-start}.identity65-history h2{font-family:Oswald,Inter,sans-serif;font-size:clamp(3rem,5vw,5rem);line-height:.96;letter-spacing:-.03em;max-width:11ch;margin:14px 0 16px}.identity65-history p{max-width:560px;margin:0 0 24px;font-size:.8rem;line-height:1.58;color:rgba(255,255,255,.66)}

@media(max-width:920px){.identity65-intro-grid,.identity65-values-grid,.identity65-capacity-stage{grid-template-columns:1fr}.identity65-orbit{min-height:420px}.identity65-capacity-media{height:430px}.identity65-values-grid{gap:34px}.identity65-intro-grid{gap:38px}.identity65-stats{grid-template-columns:1fr}.identity65-stats>div{border-right:0;border-bottom:1px solid rgba(255,255,255,.10)}.identity65-stats>div:last-child{border-bottom:0}}
@media(max-width:560px){.identity65-hero{min-height:0;padding:calc(var(--header-h) + 38px) 0 42px}.identity65-hero-inner{min-height:0}.identity65-hero h1{font-size:clamp(2.7rem,12vw,3.95rem)}.identity65-intro,.identity65-values,.identity65-capacity,.identity65-clients,.identity65-history{padding:58px 0}.identity65-intro-copy h2,.identity65-values-head h2,.identity65-capacity-copy h2,.identity65-clients-head h2,.identity65-history h2{font-size:3rem}.identity65-orbit{min-height:360px;transform:scale(.88);margin:-12px}.identity65-values-list{grid-template-columns:1fr}.identity65-values-list>div{border-right:0!important;padding:17px 0!important}.identity65-capacity-media{height:320px;border-radius:20px}.identity65-client-logos img{width:100%}}

/* V66 about page redesign overrides */
.about-page-redesign .identity65-hero{min-height:650px;padding:calc(var(--header-h) + 70px) 0 60px}
.about-page-redesign .identity65-hero-bg{background:url('../images/company/about-hero-industrial.jpg') center 46%/cover no-repeat;filter:saturate(.84) contrast(1.02)}
.about-page-redesign .identity65-hero::after{background:linear-gradient(90deg,rgba(10,11,14,.95) 0%,rgba(14,16,20,.82) 48%,rgba(57,11,17,.50) 100%),radial-gradient(580px 420px at 76% 34%,rgba(223,57,64,.22),transparent 72%)}
.about-page-redesign .identity65-hero-inner{max-width:none;min-height:500px;justify-content:center}
.about-page-redesign .identity65-hero h1{max-width:12.5ch;margin:16px 0 18px}
.about-page-redesign .identity65-hero h1 span,.about-page-redesign .identity65-history h2 span{color:var(--accent)}
.about-page-redesign .identity65-hero p{max-width:720px;font-size:.94rem;line-height:1.62;color:rgba(255,255,255,.74)}
.about-page-redesign .identity65-hero-jumpnav{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px;width:min(100%,1040px);margin-top:30px}
.about-page-redesign .identity65-hero-jumpnav a{position:relative;display:flex;align-items:center;gap:10px;padding:14px 16px;border-radius:18px;background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.12);box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 14px 30px rgba(7,9,12,.18);backdrop-filter:blur(8px);transition:transform .28s ease,border-color .28s ease,background .28s ease;animation:identityPulse 4.6s ease-in-out infinite}
.about-page-redesign .identity65-hero-jumpnav a:nth-child(2){animation-delay:.45s}.about-page-redesign .identity65-hero-jumpnav a:nth-child(3){animation-delay:.9s}.about-page-redesign .identity65-hero-jumpnav a:nth-child(4){animation-delay:1.35s}.about-page-redesign .identity65-hero-jumpnav a:nth-child(5){animation-delay:1.8s}
.about-page-redesign .identity65-hero-jumpnav a:hover{transform:translateY(-3px);border-color:rgba(224,56,63,.38);background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.06))}
.about-page-redesign .identity65-hero-jumpnav a span{display:grid;place-items:center;flex:0 0 28px;width:28px;height:28px;border-radius:50%;background:rgba(224,56,63,.18);font-family:Oswald,Inter,sans-serif;font-size:.72rem;color:#fff}
.about-page-redesign .identity65-hero-jumpnav a strong{font-size:.78rem;line-height:1.25;color:#fff;font-weight:700}
.about-page-redesign .identity65-hero-line{margin-top:26px}

.about-page-redesign .identity65-intro{padding:88px 0 92px;background:#f6f7f8}
.about-page-redesign .identity65-intro-bg{background:url('../images/company/about-intro-industrial.jpg') center/cover no-repeat;filter:saturate(.52) contrast(.96)}
.about-page-redesign .identity65-intro::after{background:linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.93) 44%,rgba(255,255,255,.86) 100%)}
.about-page-redesign .identity65-intro-grid{gap:56px;align-items:center}
.about-page-redesign .identity65-intro-copy h2{max-width:9.8ch}
.about-page-redesign .identity65-intro-copy p{max-width:52ch}
.about-page-redesign .identity65-orbit{min-height:470px}
.about-page-redesign .identity65-orbit::before{width:340px;height:340px}.about-page-redesign .identity65-orbit::after{width:452px;height:452px}
.about-page-redesign .identity65-orbit-rail{position:absolute;inset:0;display:block;animation:orbitRailSpin 54s linear infinite}
.about-page-redesign .identity65-orbit-item{box-shadow:0 18px 36px rgba(17,21,27,.12),0 4px 8px rgba(17,21,27,.04);background:rgba(255,255,255,.96);animation:orbitCardCounter 54s linear infinite}
.about-page-redesign .orbit-a{left:3%;top:24%}.about-page-redesign .orbit-b{right:2%;top:18%}.about-page-redesign .orbit-c{left:8%;bottom:18%}.about-page-redesign .orbit-d{right:3%;bottom:24%}

.about-page-redesign .identity65-values{padding:84px 0;background:#f4f5f6}
.about-page-redesign .identity65-values::before{background:linear-gradient(90deg,rgba(255,255,255,.95),rgba(255,255,255,.89)),url('../images/company/about-values-industrial.jpg') center/cover no-repeat;opacity:1}
.about-page-redesign .identity65-values-grid{gap:56px}
.about-page-redesign .identity65-values-list>div{background:rgba(255,255,255,.42)}

.about-page-redesign .identity65-clients{padding:68px 0 56px}
.about-page-redesign .identity65-clients-head{max-width:760px}
.about-page-redesign .identity65-clients-head h2{font-size:clamp(2.6rem,4.2vw,4rem);max-width:10.5ch;margin:14px auto 12px}
.about-page-redesign .identity65-clients-head p{max-width:560px}
.about-page-redesign .identity65-stats{max-width:860px;margin:28px auto 0}
.about-page-redesign .identity65-stats strong{font-size:1.36rem}.about-page-redesign .identity65-stats span{font-size:.60rem}
.about-page-redesign .identity65-client-logos{margin:28px auto 0}.about-page-redesign .identity65-client-logos img{width:min(760px,80%)}

.about-page-redesign .identity65-history{min-height:500px;padding:84px 0}
.about-page-redesign .identity65-history h2{max-width:12ch}

@keyframes identityPulse{0%,100%{box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 14px 30px rgba(7,9,12,.18)}50%{box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 14px 30px rgba(7,9,12,.18),0 0 0 5px rgba(224,56,63,.08)}}
@keyframes orbitRailSpin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes orbitCardCounter{from{transform:rotate(0deg)}to{transform:rotate(-360deg)}}

@media(max-width:980px){
  .about-page-redesign .identity65-hero-jumpnav{grid-template-columns:repeat(2,minmax(0,1fr));width:min(100%,720px)}
}
@media(max-width:920px){
  .about-page-redesign .identity65-intro-grid{grid-template-columns:1fr}
  .about-page-redesign .identity65-orbit{margin-top:10px}
}
@media(max-width:560px){
  .about-page-redesign .identity65-hero{padding:calc(var(--header-h) + 34px) 0 40px}
  .about-page-redesign .identity65-hero h1{font-size:clamp(2.55rem,11.2vw,3.75rem)}
  .about-page-redesign .identity65-hero-jumpnav{grid-template-columns:1fr;gap:10px;margin-top:20px}
  .about-page-redesign .identity65-hero-jumpnav a{padding:12px 14px;border-radius:16px}
  .about-page-redesign .identity65-intro,.about-page-redesign .identity65-values,.about-page-redesign .identity65-clients,.about-page-redesign .identity65-history{padding:56px 0}
  .about-page-redesign .identity65-intro-copy h2,.about-page-redesign .identity65-values-head h2,.about-page-redesign .identity65-clients-head h2,.about-page-redesign .identity65-history h2{font-size:2.75rem}
  .about-page-redesign .identity65-orbit{min-height:380px;transform:scale(.9);margin:-8px}
  .about-page-redesign .identity65-client-logos img{width:100%}
}

/* V67 refinements - about page */
.about-page-redesign .identity65-hero-jumpnav{display:flex;flex-wrap:wrap;gap:10px 18px;width:auto;max-width:1000px;margin-top:28px}
.about-page-redesign .identity65-hero-jumpnav a{padding:0;border:0;border-radius:0;background:none;box-shadow:none;backdrop-filter:none;animation:none;display:inline-flex;align-items:center;gap:10px;opacity:.95}
.about-page-redesign .identity65-hero-jumpnav a:hover{transform:none;background:none;border:0;opacity:1}
.about-page-redesign .identity65-hero-jumpnav a span{width:26px;height:26px;flex:0 0 26px;font-size:.72rem;background:rgba(224,56,63,.22);border:1px solid rgba(224,56,63,.24);box-shadow:0 0 0 4px rgba(224,56,63,.06)}
.about-page-redesign .identity65-hero-jumpnav a strong{font-size:.85rem;line-height:1.2;color:#fff;text-decoration:none}
.about-page-redesign .identity65-hero-jumpnav a strong::after{content:"";display:block;width:100%;height:1px;margin-top:3px;background:rgba(255,255,255,.32);transition:background .25s ease}
.about-page-redesign .identity65-hero-jumpnav a:hover strong::after{background:rgba(224,56,63,.66)}
.about-page-redesign .identity65-hero p{max-width:680px;margin-bottom:6px}

.about-page-redesign .identity65-intro-copy h2 span,
.about-page-redesign .identity65-values-head h2 span,
.about-page-redesign .identity65-clients-head h2 span,
.about-page-redesign .identity65-history h2 span{color:var(--accent)}

.about-page-redesign .identity65-orbit{min-height:430px}
.about-page-redesign .identity65-orbit::before{width:300px;height:300px}.about-page-redesign .identity65-orbit::after{width:392px;height:392px}
.about-page-redesign .identity65-orbit-core{width:172px;height:172px;box-shadow:0 28px 56px rgba(24,27,32,.16);background:linear-gradient(145deg,#160f14,#310b12)}
.about-page-redesign .identity65-orbit-core img{width:112px;max-width:70%;height:auto;display:block;filter:brightness(1.08)}
.about-page-redesign .identity65-orbit-core strong,.about-page-redesign .identity65-orbit-core span{display:none}
.about-page-redesign .orbit-a{left:7%;top:29%}.about-page-redesign .orbit-b{right:7%;top:23%}.about-page-redesign .orbit-c{left:12%;bottom:21%}.about-page-redesign .orbit-d{right:8%;bottom:26%}
.about-page-redesign .identity65-orbit-item{padding:9px 12px;box-shadow:0 14px 28px rgba(17,21,27,.10),0 4px 8px rgba(17,21,27,.04)}

.about-page-redesign .identity65-values-list>div{background:transparent !important}
.about-page-redesign .identity65-values-head h2{max-width:11ch}

.about-page-redesign .identity65-clients-head h2{max-width:14ch}
.about-page-redesign .identity65-clients-head p{max-width:560px}

@media(max-width:980px){
  .about-page-redesign .identity65-hero-jumpnav{gap:10px 16px}
}
@media(max-width:560px){
  .about-page-redesign .identity65-hero-jumpnav{display:grid;grid-template-columns:1fr;gap:12px;margin-top:18px}
  .about-page-redesign .identity65-hero-jumpnav a strong{font-size:.82rem}
  .about-page-redesign .identity65-orbit{min-height:345px;transform:scale(.9);margin:-10px}
  .about-page-redesign .identity65-orbit::before{width:238px;height:238px}.about-page-redesign .identity65-orbit::after{width:308px;height:308px}
  .about-page-redesign .identity65-orbit-core{width:142px;height:142px}
  .about-page-redesign .identity65-orbit-core img{width:96px}
  .about-page-redesign .orbit-a{left:2%;top:24%}.about-page-redesign .orbit-b{right:2%;top:18%}.about-page-redesign .orbit-c{left:8%;bottom:16%}.about-page-redesign .orbit-d{right:3%;bottom:20%}
}


/* V68 — corrections: exact CEITAM negative logo, red title accents, clients title 2 lines */
.about-page-redesign .identity65-hero h1 em,
.about-page-redesign .identity65-intro-copy h2 em,
.about-page-redesign .identity65-values-head h2 em,
.about-page-redesign .identity65-clients-head h2 em,
.about-page-redesign .identity65-history h2 em{
  color:var(--ceitam-red);
  font-style:normal;
}

.about-page-redesign .identity65-orbit-core img{
  width:118px;
  max-width:72%;
  height:auto;
  object-fit:contain;
}

.about-page-redesign .identity65-clients-head h2{
  max-width:none;
  font-size:clamp(2.55rem,3.8vw,3.85rem);
  line-height:.96;
}
.about-page-redesign .identity65-clients-head h2 > span{
  color:#fff;
}
.about-page-redesign .identity65-clients-head .identity65-client-title-line{
  display:inline-block;
  white-space:nowrap;
}
.about-page-redesign .identity65-clients-head h2 em{
  color:var(--ceitam-red);
}

@media(max-width:760px){
  .about-page-redesign .identity65-clients-head .identity65-client-title-line{
    white-space:normal;
  }
  .about-page-redesign .identity65-clients-head h2{
    font-size:clamp(2.35rem,9.5vw,3.15rem);
  }
}


/* V69 refinements: exact CEITAM negative logo, balanced orbit labels, white client title */
.about-page-redesign .identity65-orbit-core img{
  width:132px;
  max-width:78%;
  height:auto;
  object-fit:contain;
  filter:none;
}
.about-page-redesign .identity65-orbit-item{
  padding:9px 14px;
}
.about-page-redesign .identity65-orbit-item strong{
  white-space:normal;
  line-height:1.15;
  text-align:center;
}
/* Even 90° spacing around the orbit */
.about-page-redesign .orbit-a{left:50%;top:4%;right:auto;bottom:auto;transform:translateX(-50%)}
.about-page-redesign .orbit-b{right:0.5%;top:50%;left:auto;bottom:auto;transform:translateY(-50%)}
.about-page-redesign .orbit-c{left:50%;bottom:4%;top:auto;right:auto;transform:translateX(-50%)}
.about-page-redesign .orbit-d{left:0.5%;top:50%;right:auto;bottom:auto;transform:translateY(-50%)}

.about-page-redesign .identity65-clients-head .identity65-client-title-line,
.about-page-redesign .identity65-clients-head h2 > span,
.about-page-redesign .identity65-clients-head h2 em{
  color:#fff;
}

@media(max-width:760px){
  .about-page-redesign .identity65-orbit-core img{width:108px;max-width:76%}
  .about-page-redesign .orbit-a{left:50%;top:3%;transform:translateX(-50%)}
  .about-page-redesign .orbit-b{right:-1%;top:50%;transform:translateY(-50%)}
  .about-page-redesign .orbit-c{left:50%;bottom:3%;transform:translateX(-50%)}
  .about-page-redesign .orbit-d{left:-1%;top:50%;transform:translateY(-50%)}
  .about-page-redesign .identity65-orbit-item strong{font-size:.66rem}
}


/* V70 — orbit refinement: better spacing, slower rotation, improved proportions */
.about-page-redesign .identity65-orbit{
  min-height: 438px;
}
.about-page-redesign .identity65-orbit::before{width:304px;height:304px}
.about-page-redesign .identity65-orbit::after{width:388px;height:388px}
.about-page-redesign .identity65-orbit-rail{
  animation-duration: 76s;
}
.about-page-redesign .identity65-orbit-item{
  min-width: 136px;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 18px;
  animation-duration: 76s;
}
.about-page-redesign .identity65-orbit-item span{
  font-size: .64rem;
}
.about-page-redesign .identity65-orbit-item strong{
  font-size: .75rem;
  line-height: 1.14;
  text-align: center;
}
/* Re-balance the four cards so they sit visually closer to the orbit */
.about-page-redesign .orbit-a{left:50%;top:10%;right:auto;bottom:auto;transform:translateX(-50%)}
.about-page-redesign .orbit-b{right:8%;top:50%;left:auto;bottom:auto;transform:translateY(-50%)}
.about-page-redesign .orbit-c{left:50%;bottom:10%;top:auto;right:auto;transform:translateX(-50%)}
.about-page-redesign .orbit-d{left:8%;top:50%;right:auto;bottom:auto;transform:translateY(-50%)}

@media(max-width:760px){
  .about-page-redesign .identity65-orbit{min-height:352px;transform:scale(.9);margin:-8px}
  .about-page-redesign .identity65-orbit::before{width:242px;height:242px}
  .about-page-redesign .identity65-orbit::after{width:308px;height:308px}
  .about-page-redesign .identity65-orbit-rail,
  .about-page-redesign .identity65-orbit-item{animation-duration:84s}
  .about-page-redesign .identity65-orbit-item{min-width:118px;padding:8px 10px;border-radius:16px;gap:7px}
  .about-page-redesign .identity65-orbit-item strong{font-size:.64rem;line-height:1.1}
  .about-page-redesign .orbit-a{left:50%;top:9%;transform:translateX(-50%)}
  .about-page-redesign .orbit-b{right:4%;top:50%;transform:translateY(-50%)}
  .about-page-redesign .orbit-c{left:50%;bottom:9%;transform:translateX(-50%)}
  .about-page-redesign .orbit-d{left:4%;top:50%;transform:translateY(-50%)}
}


/* V71 — static professional orbit + history under construction */
@keyframes orbitSoftPulse{0%,100%{box-shadow:0 14px 28px rgba(17,21,27,.08),0 4px 10px rgba(17,21,27,.04);transform:none}50%{box-shadow:0 20px 40px rgba(216,52,57,.12),0 8px 18px rgba(17,21,27,.08);transform:translateY(-2px)}}
@keyframes orbitCoreBreath{0%,100%{box-shadow:0 28px 58px rgba(24,27,32,.16),0 0 0 0 rgba(216,52,57,.10)}50%{box-shadow:0 34px 64px rgba(24,27,32,.20),0 0 0 12px rgba(216,52,57,0)}}

.about-page-redesign .identity65-orbit{
  min-height: 424px;
}
.about-page-redesign .identity65-orbit::before{
  width: 296px;
  height: 296px;
  border-color: rgba(32,38,44,.14);
}
.about-page-redesign .identity65-orbit::after{
  width: 378px;
  height: 378px;
  border-color: rgba(32,38,44,.12);
  opacity: .58;
}
.about-page-redesign .identity65-orbit-rail{
  position:absolute;
  inset:0;
  display:block;
  animation:none !important;
}
.about-page-redesign .identity65-orbit-core{
  width: 172px;
  height: 172px;
  background: linear-gradient(145deg,#160f14,#310b12);
  box-shadow: 0 28px 58px rgba(24,27,32,.16);
  animation: orbitCoreBreath 8s ease-in-out infinite;
}
.about-page-redesign .identity65-orbit-core img{
  width:112px;
  max-width:70%;
  height:auto;
  display:block;
  filter:brightness(1.04);
}
.about-page-redesign .identity65-orbit-core strong,
.about-page-redesign .identity65-orbit-core span{display:none}
.about-page-redesign .identity65-orbit-item{
  position:absolute;
  z-index:3;
  min-width: 138px;
  justify-content:center;
  text-align:center;
  gap:8px;
  padding:10px 12px;
  border-radius:18px;
  background:rgba(255,255,255,.97);
  border:1px solid rgba(28,33,39,.09);
  box-shadow:0 14px 28px rgba(17,21,27,.08),0 4px 10px rgba(17,21,27,.04);
  backdrop-filter: blur(10px);
  animation: orbitSoftPulse 8s ease-in-out infinite;
}
.about-page-redesign .identity65-orbit-item span{font-size:.64rem}
.about-page-redesign .identity65-orbit-item strong{
  font-size:.75rem;
  line-height:1.14;
  text-align:center;
}
.about-page-redesign .orbit-a{left:50%;top:8%;right:auto;bottom:auto;transform:translateX(-50%);animation-delay:0s}
.about-page-redesign .orbit-b{right:9%;top:50%;left:auto;bottom:auto;transform:translateY(-50%);animation-delay:1.8s}
.about-page-redesign .orbit-c{left:50%;bottom:8%;top:auto;right:auto;transform:translateX(-50%);animation-delay:3.6s}
.about-page-redesign .orbit-d{left:9%;top:50%;right:auto;bottom:auto;transform:translateY(-50%);animation-delay:5.4s}
.about-page-redesign .orbit-d strong{max-width: 95px}

@media(max-width:760px){
  .about-page-redesign .identity65-orbit{min-height:344px;transform:scale(.92);margin:-4px}
  .about-page-redesign .identity65-orbit::before{width:236px;height:236px}
  .about-page-redesign .identity65-orbit::after{width:304px;height:304px}
  .about-page-redesign .identity65-orbit-core{width:144px;height:144px}
  .about-page-redesign .identity65-orbit-core img{width:94px;max-width:75%}
  .about-page-redesign .identity65-orbit-item{min-width:116px;padding:8px 10px;border-radius:16px;gap:7px}
  .about-page-redesign .identity65-orbit-item strong{font-size:.64rem;line-height:1.08}
  .about-page-redesign .orbit-a{top:6.5%}
  .about-page-redesign .orbit-b{right:2.5%}
  .about-page-redesign .orbit-c{bottom:6.5%}
  .about-page-redesign .orbit-d{left:2.5%}
  .about-page-redesign .orbit-d strong{max-width:82px}
}

.history-coming-soon-page .history-preserved-content,
.history-coming-soon-page .site-footer{display:none}
.history-coming-soon{
  position:relative;
  min-height:calc(100svh - var(--header-h));
  display:flex;
  align-items:center;
  padding:calc(var(--header-h) + 34px) 0 46px;
  overflow:hidden;
  isolation:isolate;
  background:#0f1217;
}
.history-coming-soon-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(8,10,14,.88) 0%,rgba(8,10,14,.72) 52%,rgba(50,11,18,.60) 100%),
    url('../images/hero/hero-maintenance-industrial.png') center/cover no-repeat;
  transform:scale(1.03);
}
.history-coming-soon::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:160px;
  background:linear-gradient(180deg,rgba(15,18,23,0) 0%, rgba(15,18,23,.55) 100%);
  z-index:0;
}
.history-coming-soon-inner{
  position:relative;
  z-index:1;
  width:min(var(--container),calc(100% - 40px));
  max-width:none;
  margin-inline:auto;
}
.history-coming-soon .identity-kicker{margin-bottom:16px}
.history-coming-soon h1{
  margin:0;
  font-family:Oswald,Inter,sans-serif;
  font-size:clamp(3.2rem,8vw,5.8rem);
  line-height:.96;
  letter-spacing:-.03em;
  color:#fff;
  text-transform:uppercase;
}
.history-coming-soon h1 em{color:var(--red);font-style:normal}
.history-coming-soon p{
  margin:18px 0 0;
  max-width:58ch;
  font-size:1.08rem;
  line-height:1.72;
  color:rgba(255,255,255,.82);
}
.history-coming-soon-actions{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
@media(max-width:560px){
  .history-coming-soon{padding:calc(var(--header-h) + 24px) 0 34px}
  .history-coming-soon p{font-size:1rem;line-height:1.64}
  .history-coming-soon-actions{gap:10px}
}


/* V72 — disable orbit motion, keep clean static layout */
.about-page-redesign .identity65-orbit-core{animation:none !important;}
.about-page-redesign .identity65-orbit-item{animation:none !important;}


/* V73 — refine static orbit balance and simplify history coming-soon */
.about-page-redesign .orbit-a{left:47.6% !important;}
.about-page-redesign .orbit-c{left:47.6% !important;}
@media(max-width:760px){
  .about-page-redesign .orbit-a{left:47.2% !important;}
  .about-page-redesign .orbit-c{left:47.2% !important;}
}


/* V76 — history content uses the same global hero gutter as the rest of the site */
.history-coming-soon-inner > h1,
.history-coming-soon-inner > p,
.history-coming-soon-inner > .history-coming-soon-actions{
  max-width:780px;
}
@media(max-width:620px){
  .history-coming-soon-inner{
    width:min(var(--container),calc(100% - 28px));
  }
}
