/* =========================================================
   DUPLIRISO — One-page site
   Tecnología para tu mejor impresión
   ========================================================= */

:root {
  --c-primary:        #1e40af;          /* dupliriso blue (matches building) */
  --c-primary-dark:   #1e3a8a;
  --c-primary-darker: #172554;
  --c-accent:         #6366f1;
  --c-accent-2:       #ec4899;
  --c-accent-3:       #06b6d4;
  --c-text:           #0f172a;
  --c-muted:          #475569;
  --c-muted-2:        #94a3b8;
  --c-bg:             #ffffff;
  --c-surface:        #f8fafc;
  --c-surface-2:      #f1f5f9;
  --c-border:         #e2e8f0;

  --grad-brand: linear-gradient(135deg, #6366f1 0%, #8b5cf6 35%, #ec4899 70%, #f97316 100%);
  --grad-blue:  linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --grad-soft:  linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow:    0 4px 18px rgba(15,23,42,.08);
  --shadow-lg: 0 18px 50px rgba(15,23,42,.12);
  --shadow-xl: 0 30px 80px rgba(15,23,42,.18);

  --container: 1200px;

  --t-fast: 160ms cubic-bezier(.4,0,.2,1);
  --t-med:  280ms cubic-bezier(.4,0,.2,1);

  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-primary-dark); }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin: 0 0 .5em;
}
p { margin: 0 0 1em; }

/* =================== UTILITIES =================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 14px;
}
.eyebrow--on-dark { color: #c7d2fe; }
.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.display {
  font-size: clamp(2.4rem, 1rem + 4vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.lede { font-size: clamp(1.05rem, .8rem + .5vw, 1.25rem); color: var(--c-muted); max-width: 56ch; }
.ic {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
  vertical-align: -.15em;
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast),
              background var(--t-med), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  user-select: none;
}
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }
.btn--primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(30,64,175,.32);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30,64,175,.45);
  color: #fff;
}
.btn--ghost {
  background: rgba(255,255,255,.7);
  color: var(--c-primary-dark);
  border-color: var(--c-border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: #fff; border-color: var(--c-primary); transform: translateY(-2px); }
.btn--white {
  background: #fff;
  color: var(--c-primary-dark);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.btn--ghost-on-dark {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.32);
  backdrop-filter: blur(6px);
}
.btn--ghost-on-dark:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }

/* =================== TOPBAR =================== */
.topbar {
  background: var(--c-primary-darker);
  color: #c7d2fe;
  font-size: 13px;
  padding: 8px 0;
  font-weight: 500;
}
.topbar a { color: #fff; }
.topbar a:hover { color: #c7d2fe; text-decoration: underline; }
.topbar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__sep { opacity: .35; }
@media (max-width: 720px) { .topbar { display: none; } }

/* =================== HEADER =================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.header.is-scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: 0 6px 24px rgba(15,23,42,.06);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 110px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand img {
  height: 72px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: height var(--t-fast);
}
.header.is-scrolled .brand img { height: 56px; }
.header.is-scrolled .header__inner { height: 86px; }
@media (max-width: 720px) {
  .header {
    background: rgba(255,255,255,.96);
  }
  .header__inner {
    height: 70px;
    gap: 12px;
    padding-block: 0;
  }
  .brand img {
    height: 46px;
    max-width: 204px;
  }
  .header.is-scrolled .header__inner { height: 64px; }
  .header.is-scrolled .brand img { height: 42px; }
}
.nav { display: flex; gap: 6px; align-items: center; flex: 1; justify-content: center; }
.nav a {
  position: relative;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
  border-radius: 8px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav a:hover { color: var(--c-primary); background: var(--c-surface); }
.header__cta { padding: 12px 18px; font-size: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px;
  height: 2px; background: var(--c-text);
  transition: transform var(--t-med), top var(--t-med), opacity var(--t-fast);
  border-radius: 2px;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: #fff;
    padding: 0 12px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--c-border);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height var(--t-med) ease, opacity var(--t-fast), transform var(--t-med), visibility 0s linear var(--t-med), padding var(--t-med);
  }
  .nav.is-open {
    max-height: 460px;
    padding: 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .nav a { padding: 14px 16px; font-size: 16px; border-bottom: 1px solid var(--c-surface); }
  .header__cta { display: none; }
}

@media (max-width: 720px) {
  .nav {
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    border: 1px solid var(--c-border);
    border-radius: 18px;
  }
  .nav.is-open { padding: 8px; }
  .nav a {
    border-bottom: 0;
    border-radius: 12px;
  }
  .nav-toggle {
    width: 44px;
    height: 44px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
  }
}

/* =================== HERO =================== */
.hero {
  position: relative;
  padding: 64px 0 88px;
  overflow: hidden;
  background: var(--grad-soft);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: float 12s ease-in-out infinite;
}
.blob--1 { width: 520px; height: 520px; top: -120px; left: -120px;
  background: radial-gradient(circle at 30% 30%, #818cf8, transparent 60%); }
.blob--2 { width: 460px; height: 460px; top: 100px; right: -80px;
  background: radial-gradient(circle at 50% 50%, #ec4899, transparent 60%);
  animation-delay: -3s; }
.blob--3 { width: 360px; height: 360px; bottom: -100px; left: 30%;
  background: radial-gradient(circle at 60% 40%, #06b6d4, transparent 60%);
  animation-delay: -6s; }

@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px,-30px) scale(1.05); }
}

.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__copy { max-width: 600px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 36px; }
.hero__trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 14px; color: var(--c-muted);
  border-top: 1px solid var(--c-border);
  padding-top: 22px;
}
.hero__trust strong {
  display: block; font-family: var(--font-display);
  font-size: 18px; color: var(--c-text); line-height: 1.1;
  margin-bottom: 4px;
}
.hero__trust li { max-width: 180px; }

.hero__art {
  position: relative;
  perspective: 1200px;
}
.hero__mobile-art { display: none; }
.hero__photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #fff;
  transform: rotate(-2deg);
  transition: transform var(--t-med);
}
.hero__photo:hover { transform: rotate(0deg) scale(1.01); }
.hero__photo img {
  width: 100%; height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}
.hero__sticker {
  position: absolute;
  background: #fff;
  padding: 14px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  animation: floatY 6s ease-in-out infinite;
}
.hero__sticker--1 {
  top: -18px; left: -22px;
  flex-direction: column; align-items: flex-start;
  padding: 16px 22px;
}
.hero__sticker--1 .sticker__num {
  font-family: var(--font-display); font-size: 38px; line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sticker--1 .sticker__lbl { font-size: 13px; color: var(--c-muted); font-weight: 600; }
.hero__sticker--2 {
  bottom: -22px; right: -18px;
  font-size: 13px; line-height: 1.3;
  animation-delay: -3s;
  color: var(--c-text);
}
.hero__sticker--2 svg {
  width: 28px; height: 28px;
  fill: none; stroke: #16a34a; stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
}

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 960px) {
  .hero { padding: 40px 0 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__art { max-width: 540px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .hero { padding: 28px 0 56px; }
  .hero__grid { gap: 0; }
  .hero__copy { max-width: none; }
  .hero__copy .display { margin-bottom: 18px; }
  .hero__grid > .hero__art { display: none; }
  .hero__mobile-art {
    display: block;
    margin: 0 0 24px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fff;
  }
  .hero__mobile-art img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  .hero__ctas { margin: 24px 0 28px; }
  .hero__trust { gap: 18px; }
}

/* =================== SECTIONS / HEADINGS =================== */
.section { padding: 96px 0; }
.section--brands { padding: 64px 0; background: var(--c-surface); }
.section--services { background: #fff; }
.section--benefits { background: var(--c-surface); }
.section--about { padding-bottom: 0; }
.section--cta { padding: 80px 0; }
.section--contact { background: linear-gradient(180deg, #fff 0%, var(--c-surface) 100%); }

.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 {
  font-size: clamp(1.85rem, 1rem + 2vw, 2.6rem);
  margin-bottom: 14px;
}
.section__sub { font-size: 1.05rem; color: var(--c-muted); }

@media (max-width: 720px) { .section { padding: 64px 0; } }

/* =================== BRANDS STRIP =================== */
.brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}
.brand-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 18px;
  height: 100px;
  display: grid;
  place-items: center;
  filter: grayscale(.15);
  opacity: .92;
  transition: transform var(--t-med), box-shadow var(--t-med),
              filter var(--t-med), opacity var(--t-med);
}
.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  filter: grayscale(0);
  opacity: 1;
}
.brand-card img { max-height: 56px; max-width: 80%; width: auto; object-fit: contain; }
.brand-card img[src$=".svg"] { max-height: 38px; }
.brand-card img[src$="papercut.svg"] { max-height: 46px; max-width: 88%; }

@media (max-width: 900px) { .brands { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .brands { grid-template-columns: repeat(2, 1fr); } }

/* =================== SERVICES =================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.services-grid > .service-card:nth-child(1) { grid-column: span 2; }
.services-grid > .service-card:nth-child(2) { grid-column: span 2; grid-row: span 2; }
.services-grid > .service-card:nth-child(8) { grid-column: span 2; }

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
  color: var(--c-primary);
  display: grid; place-items: center;
  margin-bottom: 18px;
  flex: none;
}
.service-card__icon svg {
  width: 26px; height: 26px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 {
  font-size: 1.12rem; margin-bottom: 8px; letter-spacing: -.01em;
}
.service-card p { color: var(--c-muted); margin: 0; font-size: 15px; line-height: 1.55; }
.service-card__badge {
  display: inline-block; margin-top: 14px;
  background: rgba(22,163,74,.08); color: #15803d;
  padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  width: max-content;
}
.service-card--highlight {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(99,102,241,.10), transparent 60%),
    radial-gradient(120% 80% at 100% 100%, rgba(236,72,153,.10), transparent 60%),
    #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
}
.service-card--highlight h3 { font-size: 1.4rem; }
.service-card--highlight p { font-size: 1.02rem; line-height: 1.6; }
.service-card--highlight .service-card__icon {
  background: var(--grad-blue); color: #fff;
}
.service-card--feature {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  border-color: transparent;
  color: #fff;
}
.service-card--feature h3 { color: #fff; }
.service-card--feature p { color: #cbd5e1; }
.service-card--feature .service-card__icon {
  background: rgba(255,255,255,.12); color: #fff;
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid > .service-card { grid-column: span 1 !important; grid-row: auto !important; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =================== BENEFITS =================== */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 2vw, 2.8rem);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 14px;
}
.benefit h3 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit p { color: var(--c-muted); font-size: 14px; margin: 0; }

@media (max-width: 900px) { .benefits { grid-template-columns: repeat(2, 1fr); } }

/* =================== ABOUT =================== */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  aspect-ratio: 4/3;
  background: #1e3a8a;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.about__photo:hover img { transform: scale(1.04); }
.about__copy h2 { font-size: clamp(1.85rem, 1rem + 2vw, 2.4rem); }
.about__list { margin: 24px 0; display: grid; gap: 12px; }
.about__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-weight: 500; color: var(--c-text);
}
.about__list svg {
  width: 22px; height: 22px; flex: none;
  fill: none; stroke: var(--c-primary); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.about__quote {
  margin: 28px 0 0; padding: 18px 22px;
  border-left: 4px solid var(--c-primary);
  background: var(--c-surface);
  border-radius: 0 14px 14px 0;
  font-style: italic; color: var(--c-text); font-size: 1rem;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =================== BIG CTA =================== */
.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--c-primary-darker);
  color: #fff;
  isolation: isolate;
}
.cta-card__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 80% at 80% 30%, rgba(236,72,153,.45), transparent 60%),
    radial-gradient(70% 80% at 10% 80%, rgba(6,182,212,.45), transparent 60%),
    linear-gradient(135deg, #1e1b4b 0%, #1e3a8a 100%);
}
.cta-card__inner {
  position: relative; z-index: 1;
  padding: 64px 56px;
  max-width: 760px;
}
.cta-card h2 {
  color: #fff;
  font-size: clamp(1.8rem, 1rem + 2vw, 2.6rem);
  margin-bottom: 14px;
}
.cta-card p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 56ch; }
.cta-card__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

@media (max-width: 720px) { .cta-card__inner { padding: 48px 28px; } }

/* =================== CONTACT =================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact__info h2 { font-size: clamp(1.7rem, 1rem + 1.8vw, 2.2rem); }
.contact-info {
  display: grid; gap: 16px;
  margin: 28px 0;
}
.contact-info li {
  display: flex; gap: 14px; align-items: flex-start;
}
.contact-info__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--c-surface);
  color: var(--c-primary);
  display: grid; place-items: center;
  flex: none;
}
.contact-info__icon svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.contact-info strong { display: block; font-size: 13px; color: var(--c-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.contact__map { margin-top: 24px; position: relative; }
.contact__map-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  padding: 10px 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--c-primary-dark);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.contact__map-link:hover {
  background: #fff;
  border-color: var(--c-primary);
  transform: translateY(-1px);
}
.contact__map-link svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 16px;
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 4px; }
.form__sub { color: var(--c-muted); font-size: 14px; margin: 0 0 12px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field span {
  font-size: 13px; font-weight: 600; color: var(--c-text);
}
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  background: #fff;
  color: var(--c-text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
  font-family: inherit;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(30,64,175,.18);
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important; height: 1px !important;
  opacity: 0 !important;
}
.check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--c-muted);
  margin: 4px 0;
}
.check input { margin-top: 3px; }
.form__msg {
  margin: 0; padding: 0;
  font-size: 14px; min-height: 1.4em;
}
.form__msg[data-status="ok"]   { color: #15803d; font-weight: 600; }
.form__msg[data-status="err"]  { color: #b91c1c; font-weight: 600; }
.form__lock {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--c-muted-2);
  margin: 0;
}
.form__lock svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }
}

/* =================== FOOTER =================== */
.footer {
  background: var(--c-primary-darker);
  color: #cbd5e1;
  padding-top: 64px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 48px;
}
.footer__logo {
  display: inline-flex;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  max-width: 100%;
}
.footer__logo img { height: 60px; max-width: 260px; width: auto; object-fit: contain; display: block; }
.footer__brand p { color: #94a3b8; font-size: 14px; max-width: 32ch; line-height: 1.55; }
@media (max-width: 720px) {
  .footer__logo img { height: 52px; max-width: 220px; }
}
.footer__col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 8px; font-size: 14px; }
.footer__col a { color: #cbd5e1; }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.footer__social a:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; fill: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: 13px;
  color: #94a3b8;
}
.footer__bottom .container {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer__bottom a {
  color: #cbd5e1;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,.25);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.footer__bottom a:hover { color: #fff; border-bottom-color: rgba(255,255,255,.55); }
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom .container { justify-content: center; text-align: center; }
}

/* =================== FLOAT CALL =================== */
.float-call {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(30,64,175,.45);
  z-index: 90;
  animation: pulse 2.4s ease-in-out infinite;
  transition: transform var(--t-fast);
}
.float-call:hover { transform: scale(1.08); }
.float-call svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

@keyframes pulse {
  0%   { box-shadow: 0 12px 30px rgba(30,64,175,.45), 0 0 0 0 rgba(30,64,175,.45); }
  70%  { box-shadow: 0 12px 30px rgba(30,64,175,.45), 0 0 0 14px rgba(30,64,175,0); }
  100% { box-shadow: 0 12px 30px rgba(30,64,175,.45), 0 0 0 0 rgba(30,64,175,0); }
}

/* =================== ANIMATIONS / REVEAL =================== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =================== STAT STRIP =================== */
.stat-strip {
  background: linear-gradient(135deg, #1e1b4b 0%, #1e3a8a 100%);
  color: #fff;
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.stat-strip::before, .stat-strip::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.stat-strip::before { width: 360px; height: 360px; top: -160px; left: -120px; background: rgba(99,102,241,.35); }
.stat-strip::after  { width: 320px; height: 320px; bottom: -160px; right: -80px; background: rgba(236,72,153,.25); }
.stat-strip__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-strip__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1rem + 2vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-strip__lbl {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  font-weight: 500;
}
@media (max-width: 720px) {
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
}

/* =================== PROCESS =================== */
.section--process { background: #fff; }
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 16px;
  counter-reset: step;
  list-style: none;
}
.process__step {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.process__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.process__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  background: var(--grad-blue);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.process__step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.process__step p { color: var(--c-muted); margin: 0; font-size: 15px; line-height: 1.55; }

/* connector line on desktop */
.process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -12px;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--c-border), transparent);
  z-index: -1;
}

@media (max-width: 980px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__step::after { display: none; }
}
@media (max-width: 540px) {
  .process { grid-template-columns: 1fr; }
}

/* =================== SECTORS =================== */
.sectors { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--c-border); }
.sectors__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-muted);
  margin: 0 0 14px;
}
.sectors__list {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.sectors__list li {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.sectors__list li:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: var(--c-surface);
}

/* =================== FAQ =================== */
.section--faq { background: var(--c-surface); }
.faq {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq__item[open] {
  border-color: transparent;
  box-shadow: var(--shadow);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--c-text);
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 400; line-height: 1;
  color: var(--c-primary);
  background: var(--c-surface);
  border-radius: 50%;
  transition: transform var(--t-med), background var(--t-fast);
}
.faq__item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); background: var(--c-primary); color: #fff; }
.faq__item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--c-muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq__item p a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 2px; }
.faq__item p strong { color: var(--c-text); }

/* =================== RISO HIGHLIGHT =================== */
.section--riso {
  background:
    radial-gradient(1100px 480px at 85% 0%, rgba(99,102,241,.10), transparent 60%),
    radial-gradient(900px 420px at 0% 100%, rgba(236,72,153,.08), transparent 60%),
    var(--c-surface);
  padding: 72px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.riso-highlight {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.riso-highlight__media {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
}
.riso-highlight__media img { width: 100%; height: auto; max-height: 320px; object-fit: contain; }
.riso-highlight__copy h2 {
  font-size: clamp(1.9rem, 1rem + 2vw, 2.6rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1e40af 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.riso-highlight__copy p { color: var(--c-muted); font-size: 1.05rem; max-width: 56ch; }
.riso-highlight__copy .btn { margin-top: 8px; }
@media (max-width: 880px) {
  .riso-highlight { grid-template-columns: 1fr; gap: 32px; }
  .riso-highlight__media { padding: 22px; }
  .riso-highlight__media img { max-height: 220px; }
}

/* =================== EQUIPMENT BAND (decorative) =================== */
.equip-band {
  padding: 48px 0;
  background:
    linear-gradient(180deg, transparent, var(--c-surface) 40%, var(--c-surface) 60%, transparent);
}
.equip-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: center;
}
.equip-band__item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  height: 220px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.equip-band__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.equip-band__item img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; }
@media (max-width: 880px) {
  .equip-band__grid { grid-template-columns: repeat(2, 1fr); }
  .equip-band__item:nth-child(3) { grid-column: span 2; }
}
@media (max-width: 540px) {
  .equip-band { padding: 32px 0; }
  .equip-band__grid { grid-template-columns: 1fr; gap: 16px; }
  .equip-band__item { height: 180px; }
  .equip-band__item:nth-child(3) { grid-column: auto; }
}

/* =================== PRINT =================== */
@media print {
  .header, .footer, .float-call, .topbar, .nav-toggle, .hero__bg { display: none !important; }
  body { color: #000; background: #fff; }
}
