/* ═══════════════════════════════════════════════════════════
   IRODI — Custom Styles
   Complementa el diseño del HTML — variables, animaciones,
   mapa SVG interactivo, navbar, hero video, responsive.
═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BRAND TOKENS ── */
:root {
  --navy:     #1B2A6B;
  --navy-dk:  #111C4E;
  --navy-lt:  #253580;
  --steel:    #2E4090;
  --ice:      #E8EDF8;
  --ice2:     #F2F5FC;
  --white:    #FFFFFF;
  --offwhite: #FAFBFF;
  --mgray:    #8A9BB8;
  --dgray:    #3D4A6B;
  --text:     #1A1F36;
  --textlt:   #5A6480;
  --fd: 'Oswald', sans-serif;
  --fb: 'Source Sans 3', sans-serif;
  --r4: 4px; --r8: 8px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--white); color: var(--text); overflow-x: hidden; }

/* ── TOPBAR ── */
.topbar { background: var(--navy-dk); padding: 9px 0; font-size: 12.5px; }
.topbar .wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.topbar-item:hover { color: #fff; }
.topbar-item svg { width: 14px; height: 14px; fill: none; stroke: var(--steel); stroke-width: 1.8; flex-shrink: 0; stroke-linecap: round; stroke-linejoin: round; }
.topbar-right { display: flex; align-items: center; gap: 16px; }

/* ── NAV ── */
nav { background: var(--navy); position: sticky; top: 0; z-index: 200; transition: box-shadow .3s; }
nav.scrolled { box-shadow: 0 2px 20px rgba(17,28,78,.4); }
.nav-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-link img { height: 48px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a { font-family: var(--fd); font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.72); text-decoration: none; padding: 8px 15px; border-bottom: 3px solid transparent; transition: color .2s, border-color .2s; }
.nav-links a:hover, .nav-links a.act { color: #fff; border-bottom-color: var(--steel); }

/* Lang toggle */
.lang-toggle { display: flex; align-items: center; gap: 0; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; overflow: hidden; margin-left: 10px; }
.lang-btn { font-family: var(--fd); font-size: 11px; font-weight: 600; letter-spacing: .1em; padding: 5px 12px; cursor: pointer; border: none; background: transparent; color: rgba(255,255,255,.5); transition: background .2s, color .2s; }
.lang-btn.active { background: var(--steel); color: #fff; }

/* Hamburger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { display: none; background: var(--navy-dk); border-top: 1px solid rgba(255,255,255,.08); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-family: var(--fd); font-size: 14px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.8); text-decoration: none; padding: 14px 28px; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.04); }
.mobile-lang { display: flex; gap: 8px; padding: 16px 28px; }

/* ── WRAP ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── HERO ── */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: var(--navy-dk); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(17,28,78,.97) 0%, rgba(17,28,78,.92) 30%, rgba(17,28,78,.65) 55%, rgba(17,28,78,.25) 80%, rgba(17,28,78,.08) 100%); }
.hero-stripe { position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: linear-gradient(180deg, var(--steel), var(--navy-dk)); z-index: 1; }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; z-index: 1; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 80px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-pretitle { display: inline-flex; align-items: center; gap: 8px; font-family: var(--fd); font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.hero-pretitle::before { content: ''; width: 24px; height: 2px; background: var(--steel); border-radius: 2px; }
.hero h1 { font-family: var(--fd); font-size: clamp(2.4rem, 4.5vw, 4.2rem); font-weight: 700; color: #fff; line-height: 1.05; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 20px; }
.hero-accent { color: var(--steel) !important; font-weight: 700 !important; }
.hero-desc { font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.65); margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { font-family: var(--fd); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; padding: 13px 30px; border-radius: var(--r4); border: none; cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-navy { background: var(--steel); color: #fff; }
.btn-navy:hover { background: #3651A8; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--steel); background: rgba(46,64,144,.3); transform: translateY(-2px); }
.btn-solid { background: var(--navy); color: #fff; }
.btn-solid:hover { background: var(--navy-dk); }

/* Hero stats */
.hero-right { display: flex; flex-direction: column; gap: 14px; }
.hero-stat { background: rgba(17,28,78,.6); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.1); border-left: 3px solid var(--steel); border-radius: 0 var(--r8) var(--r8) 0; padding: 18px 22px; display: flex; align-items: center; gap: 18px; transition: border-left-color .2s, transform .2s; }
.hero-stat:hover { border-left-color: #fff; transform: translateX(5px); }
.hero-stat-ic { width: 46px; height: 46px; background: rgba(46,64,144,.4); border-radius: var(--r8); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-stat-ic svg { width: 22px; height: 22px; fill: none; stroke: rgba(255,255,255,.8); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.hero-stat-n { font-family: var(--fd); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat-l { font-size: 11.5px; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }

/* ── SECTION SHARED ── */
.section-title-wrap { text-align: center; margin-bottom: 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--fd); font-size: 12px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--steel); margin-bottom: 12px; }
.eyebrow::before, .eyebrow::after { content: ''; width: 22px; height: 2px; background: var(--steel); border-radius: 2px; }
.sec-title { font-family: var(--fd); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; text-transform: uppercase; color: var(--navy); line-height: 1.1; letter-spacing: -.01em; }
.sec-title em { font-style: normal; color: var(--steel); }
.sec-desc { font-size: 15px; color: var(--textlt); line-height: 1.8; max-width: 580px; margin: 12px auto 0; }

/* ── MISSION / VISION ── */
.mission-sec { background: var(--ice2); padding: 90px 0; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card { background: var(--white); border-radius: var(--r8); padding: 40px 36px; border-top: 4px solid var(--steel); box-shadow: 0 1px 20px rgba(27,42,107,.06); transition: transform .2s, box-shadow .2s; }
.mv-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(27,42,107,.12); }
.mv-card-label { font-family: var(--fd); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--steel); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.mv-card-label::before { content: ''; width: 20px; height: 2px; background: var(--steel); border-radius: 2px; }
.mv-card-title { font-family: var(--fd); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; line-height: 1.1; }
.mv-card-text { font-size: 15px; color: var(--textlt); line-height: 1.85; }

/* ── SERVICES ── */
.services { background: var(--white); padding: 90px 0; }
.services-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; margin-bottom: 64px; }
.services-left .eyebrow { display: flex; justify-content: flex-start; }
.services-left .eyebrow::after { display: none; }
.services-left .sec-title { text-align: left; margin-bottom: 18px; }
.services-left p { font-size: 15px; color: var(--textlt); line-height: 1.8; margin-bottom: 24px; }
.services-right { font-size: 15px; color: var(--textlt); line-height: 1.85; }
.services-right p { margin-bottom: 16px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--ice); border: 1px solid var(--ice); border-radius: var(--r8); overflow: hidden; }
.srv { background: var(--white); padding: 0; border-bottom: 3px solid transparent; transition: background .22s, border-color .22s; cursor: pointer; overflow: hidden; }
.srv:hover { background: var(--ice2); border-bottom-color: var(--steel); }
.srv-img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform .4s ease; }
.srv:hover .srv-img { transform: scale(1.04); }
.srv-img-wrap { overflow: hidden; position: relative; }
.srv-body { padding: 22px 22px 24px; }
.srv-ic { width: 44px; height: 44px; background: var(--ice); border-radius: var(--r8); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: background .2s; }
.srv:hover .srv-ic { background: var(--navy); }
.srv-ic svg { width: 22px; height: 22px; fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.srv:hover .srv-ic svg { stroke: #fff; }
.srv-title { font-family: var(--fd); font-size: 14px; font-weight: 600; text-transform: uppercase; color: var(--navy); letter-spacing: .05em; margin-bottom: 8px; }
.srv-desc { font-size: 12.5px; color: var(--textlt); line-height: 1.65; }

/* ── ABOUT ── */
.about-band { background: var(--navy); padding: 90px 0; position: relative; overflow: hidden; }
.about-band::before { content: ''; position: absolute; right: -100px; top: -100px; width: 500px; height: 500px; border-radius: 50%; border: 80px solid rgba(255,255,255,.03); pointer-events: none; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-eyebrow { display: flex; align-items: center; gap: 10px; font-family: var(--fd); font-size: 12px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.about-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--steel); }
.about-title { font-family: var(--fd); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; text-transform: uppercase; color: #fff; line-height: 1.05; margin-bottom: 20px; letter-spacing: -.01em; }
.about-title em { font-style: normal; color: rgba(255,255,255,.3); font-weight: 300; display: block; font-size: .65em; letter-spacing: .06em; }
.about-desc { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 24px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); }
.about-list li::before { content: ''; width: 6px; height: 6px; background: var(--steel); border-radius: 50%; flex-shrink: 0; }
.about-tag-num { font-family: var(--fd); font-size: 2.2rem; font-weight: 700; color: #fff; line-height: 1; }
.about-tag-lbl { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 2px; }

/* About photo mosaic */
.about-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; gap: 8px; }
.mosaic-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r8); display: block; transition: transform .4s; }
.mosaic-img:hover { transform: scale(1.02); }
.mosaic-main { grid-row: 1 / 3; }
.about-stats-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 24px; }
.about-stat-item { display: flex; flex-direction: column; }

/* ── PROCESS ── */
.process { background: var(--ice2); padding: 90px 0; }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 60px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--ice) 15%, var(--steel) 50%, var(--ice) 85%, transparent); z-index: 0; }
.pstep { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
.pstep-num { width: 72px; height: 72px; border-radius: 50%; background: var(--white); border: 2px solid var(--ice); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-family: var(--fd); font-size: 1.5rem; font-weight: 700; color: var(--mgray); transition: background .25s, border-color .25s, color .25s; }
.pstep:hover .pstep-num { background: var(--navy); border-color: var(--navy); color: #fff; }
.pstep-t { font-family: var(--fd); font-size: 13.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); margin-bottom: 8px; }
.pstep-d { font-size: 12.5px; color: var(--textlt); line-height: 1.65; }

/* ── PROJECTS ── */
.projects { background: var(--white); padding: 90px 0; }
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; border-radius: var(--r8); overflow: hidden; }
.proj-card { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.proj-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .45s ease; }
.proj-card:hover .proj-img { transform: scale(1.07); }
.proj-ov { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,28,78,.9) 0%, rgba(17,28,78,.2) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px 20px; transition: background .3s; }
.proj-card:hover .proj-ov { background: linear-gradient(0deg, rgba(46,64,144,.9) 0%, rgba(46,64,144,.35) 55%, transparent 100%); }
.proj-tag { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.proj-name { font-family: var(--fd); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; color: #fff; line-height: 1.2; }
.proj-client { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ── DIFFERENTIATORS ── */
.diff { background: var(--navy); padding: 80px 0; }
.diff-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: center; }
.diff-quote { font-family: var(--fd); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; color: #fff; line-height: 1.3; margin-bottom: 20px; }
.diff-quote strong { color: rgba(255,255,255,.35); font-weight: 300; }
.diff-body { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.85; }
.diff-meta { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.diff-meta-item .label { font-family: var(--fd); font-size: 11px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.diff-meta-item .value { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.5; }
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.diff-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-top: 3px solid var(--steel); border-radius: 0 0 var(--r8) var(--r8); padding: 26px 22px; transition: background .2s, border-top-color .2s; }
.diff-card:hover { background: rgba(255,255,255,.08); border-top-color: #fff; }
.diff-card-ic { margin-bottom: 12px; display: block; }
.diff-card-ic svg { width: 28px; height: 28px; fill: none; stroke: var(--steel); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; display: block; }
.diff-card-t { font-family: var(--fd); font-size: 15px; font-weight: 600; text-transform: uppercase; color: #fff; letter-spacing: .05em; margin-bottom: 8px; }
.diff-card-d { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ── CONTACT ── */
.contact-sec { background: var(--ice2); padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 360px; gap: 56px; margin-top: 56px; }
.cform { display: flex; flex-direction: column; gap: 14px; }
.crow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cinput { background: var(--white); border: 1px solid var(--ice); border-radius: var(--r4); padding: 13px 16px; font-size: 14px; font-family: var(--fb); color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.cinput:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,42,107,.08); }
.cinput::placeholder { color: #B0BCCF; }
textarea.cinput { resize: vertical; min-height: 110px; }
select.cinput { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A9BB8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.submit-btn { background: var(--navy); color: #fff; border: none; border-radius: var(--r4); padding: 14px 32px; font-family: var(--fd); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .2s, transform .15s; align-self: flex-start; display: flex; align-items: center; gap: 8px; }
.submit-btn:hover { background: var(--navy-dk); transform: translateY(-2px); }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-feedback { padding: 12px 16px; border-radius: var(--r4); font-size: 14px; font-weight: 500; display: none; white-space: pre-wrap; }
.form-feedback.success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; display: block; }
.form-feedback.error { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; display: block; }

/* Map panel */
.map-panel { background: var(--navy); border-radius: var(--r8); overflow: hidden; }
.map-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,.1); }
.map-tab { flex: 1; font-family: var(--fd); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 16px; text-align: center; cursor: pointer; background: none; border: none; color: rgba(255,255,255,.5); transition: background .2s, color .2s; }
.map-tab.active { background: var(--steel); color: #fff; }
.map-body { padding: 24px; }
.map-hint { font-size: 11px; color: rgba(255,255,255,.4); margin-bottom: 12px; font-family: var(--fd); letter-spacing: .08em; text-transform: uppercase; }

/* Real SVG map container */
.map-svg-wrap { position: relative; border-radius: var(--r4); overflow: hidden; background: rgba(255,255,255,.03); }
.map-svg-wrap > svg { width: 100% !important; height: auto !important; display: block !important; max-height: 340px; background: transparent !important; }

/* Loading state */
.map-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; min-height: 200px; color: rgba(255,255,255,.35); font-family: var(--fd); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
@keyframes spin { to { transform: rotate(360deg); } }
.map-spinner { width: 28px; height: 28px; border: 2px solid rgba(255,255,255,.15); border-top-color: var(--steel); border-radius: 50%; animation: spin .8s linear infinite; }
.map-err { color: rgba(255,255,255,.35); text-align: center; padding: 24px 0; font-size: 13px; }

/* Legacy SVG Map states (kept for compatibility) */
.map-state { fill: rgba(255,255,255,.08); stroke: rgba(255,255,255,.15); stroke-width: 0.5; cursor: pointer; transition: fill .2s; }
.map-state.presence { fill: rgba(46,64,144,.6); stroke: rgba(255,255,255,.3); }
.map-state.presence:hover { fill: rgba(46,64,144,.9); }
.map-state.selected { fill: var(--steel); stroke: #fff; stroke-width: 1; }
.map-label { font-size: 8px; fill: rgba(255,255,255,.6); font-family: var(--fd); pointer-events: none; text-anchor: middle; }
.map-label.presence-label { fill: rgba(255,255,255,.9); font-size: 9px; }

/* Location info card */
.location-info { margin-top: 20px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; min-height: 100px; }
.location-placeholder { text-align: center; font-size: 13px; color: rgba(255,255,255,.35); padding: 16px 0; }
.loc-card { display: none; }
.loc-card.active { display: block !important; }
.loc-name { font-family: var(--fd); font-size: 16px; font-weight: 700; text-transform: uppercase; color: #fff; letter-spacing: .05em; margin-bottom: 14px; }
.loc-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.loc-ic { width: 32px; height: 32px; background: rgba(255,255,255,.08); border-radius: var(--r4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loc-ic svg { width: 14px; height: 14px; fill: none; stroke: rgba(255,255,255,.6); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.loc-label { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.loc-value { font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.5; }
.loc-value a { color: rgba(255,255,255,.85); text-decoration: none; }
.loc-value a:hover { color: #fff; }

/* ── CLIENTS STRIP ── */
.clients-strip { background: var(--white); padding: 56px 0; border-top: 1px solid var(--ice); border-bottom: 1px solid var(--ice); }
.clients-lbl { text-align: center; font-family: var(--fd); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--mgray); margin-bottom: 32px; }
.clients-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: var(--ice); border: 1px solid var(--ice); border-radius: var(--r8); overflow: hidden; }
.client-cell { background: var(--white); padding: 28px 20px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.client-cell:hover { background: var(--ice2); }
.client-name { font-family: var(--fd); font-size: 1rem; font-weight: 700; letter-spacing: .1em; color: rgba(27,42,107,.25); text-transform: uppercase; text-align: center; transition: color .2s; line-height: 1.3; }
.client-cell:hover .client-name { color: var(--navy); }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(105deg, var(--navy-dk) 0%, var(--navy) 50%, var(--steel) 100%); padding: 72px 0; position: relative; overflow: hidden; }
.cta-band::before { content: 'IRODI'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%); font-family: var(--fd); font-size: 14rem; font-weight: 700; color: rgba(255,255,255,.03); letter-spacing: .1em; white-space: nowrap; pointer-events: none; line-height: 1; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-t { font-family: var(--fd); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; text-transform: uppercase; color: #fff; line-height: 1.1; max-width: 560px; }
.cta-t em { font-style: normal; color: rgba(255,255,255,.4); font-weight: 300; }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; }
.btn-wh { background: #fff; color: var(--navy); font-family: var(--fd); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 13px 28px; border-radius: var(--r4); text-decoration: none; transition: background .2s; border: none; cursor: pointer; }
.btn-wh:hover { background: rgba(255,255,255,.88); }

/* ── FOOTER ── */
footer { background: var(--navy-dk); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
.footer-logo { height: 46px; width: auto; object-fit: contain; margin-bottom: 16px; display: block; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.75; margin-bottom: 22px; }
.fcol-t { font-family: var(--fd); font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 18px; }
.flinks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.flinks a { font-size: 13px; color: rgba(255,255,255,.38); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color .2s; }
.flinks a::before { content: '›'; color: var(--steel); font-size: 16px; line-height: 1; flex-shrink: 0; }
.flinks a:hover { color: rgba(255,255,255,.8); }
.footer-contact-info { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.8; }
.footer-contact-info a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-contact-info a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.fcopy { font-size: 12px; color: rgba(255,255,255,.28); }

/* ── SCROLL ANIMATIONS ── */
.fu { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fu.vis { opacity: 1; transform: translateY(0); }
.fu.d1 { transition-delay: .1s; }
.fu.d2 { transition-delay: .2s; }
.fu.d3 { transition-delay: .3s; }
.fu.d4 { transition-delay: .4s; }
.fl { opacity: 0; transform: translateX(-24px); transition: opacity .6s ease, transform .6s ease; }
.fl.vis { opacity: 1; transform: translateX(0); }
.fr { opacity: 0; transform: translateX(24px); transition: opacity .6s ease, transform .6s ease; }
.fr.vis { opacity: 1; transform: translateX(0); }


/* ── CONTACT INFO PANEL ── */
.contact-info-panel { background: var(--navy); border-radius: var(--r8); padding: 36px 32px; display: flex; flex-direction: column; height: 100%; }
.cip-title { font-family: var(--fd); font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 28px; }
.cip-block { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.cip-block:last-of-type { border-bottom: none; }
.cip-ic { width: 36px; height: 36px; background: rgba(46,64,144,.4); border-radius: var(--r4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: rgba(255,255,255,.85); }
.cip-ic svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; display: block; flex-shrink: 0; }
.cip-label { font-family: var(--fd); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 4px; }
.cip-value { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.55; }
.cip-value a { color: rgba(255,255,255,.85); text-decoration: none; transition: color .2s; }
.cip-value a:hover { color: #fff; }
.cip-cta { margin-top: auto; padding-top: 28px; }
.cip-cta a { display: block; text-align: center; background: var(--steel); color: #fff; font-family: var(--fd); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 13px 20px; border-radius: var(--r4); text-decoration: none; transition: background .2s; }
.cip-cta a:hover { background: #3651A8; }

/* ── SERVICE ICON CARDS ── */
.srv-icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--ice); border: 1px solid var(--ice); border-radius: var(--r8); overflow: hidden; }
.sic-card { background: var(--white); padding: 32px 28px 36px; display: flex; flex-direction: column; border-bottom: 3px solid transparent; transition: background .2s, border-color .2s; }
.sic-card:hover { background: var(--ice2); border-bottom-color: var(--steel); }
.sic-icon-wrap { width: 52px; height: 52px; background: var(--ice); border-radius: var(--r8); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0; transition: background .2s; }
.sic-card:hover .sic-icon-wrap { background: var(--navy); }
.sic-icon-wrap svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.sic-card:hover .sic-icon-wrap svg { stroke: #fff; }
.sic-title { font-family: var(--fd); font-size: 13.5px; font-weight: 600; text-transform: uppercase; color: var(--navy); letter-spacing: .05em; margin-bottom: 12px; line-height: 1.3; }
.sic-desc { font-size: 13px; color: var(--textlt); line-height: 1.7; margin: 0; }

/* ── PROJECT VER MÁS ── */
.proj-ver-mas { display: inline-block; margin-top: 14px; font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; text-decoration: none; background: rgba(46,64,144,.75); border: 1px solid rgba(255,255,255,.35); padding: 6px 14px; border-radius: 20px; backdrop-filter: blur(4px); transition: background .2s, border-color .2s; }
.proj-ver-mas:hover { background: var(--steel); border-color: transparent; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .process-steps::before { display: none; }
  .diff-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .logo-link img { height: 42px; }
  .nav-wrap { height: 64px; padding: 0 16px; }
  .topbar .wrap { justify-content: center; }
  .topbar-right { display: none; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding: 56px 28px 48px; }
  .hero-right { display: none; }
  .hero { min-height: 70vh; }
  .services-layout { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-mosaic { grid-template-rows: 180px 180px; }
  .mv-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { flex-direction: column; gap: 24px; text-align: center; }
  .cta-btns { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .crow2 { grid-template-columns: 1fr; }
  .map-tabs { flex-direction: row; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-band::before { display: none; }
  .about-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .mosaic-main { grid-row: auto; }
}
