
:root {
  --bg:#181a1d;
  --bg2:#1f2124;
  --bg3:#26282b;
  --panel:#2a2d31;
  --text:#f2f2ef;
  --muted:#d7d1c8;
  --accent:#ff8d05;
  --accent-dark:#d36e00;
  --line:rgba(255,255,255,.09);
  --content:1240px;
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
html,body { margin:0; padding:0; }
body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.mobile-menu-open { overflow:hidden; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; height:auto; display:block; }
.wrap { width:min(var(--content), calc(100vw - 64px)); margin:0 auto; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,141,5,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}
.nav-top {
  min-height: 86px;
  display:grid;
  grid-template-columns: 180px 1fr;
  align-items:center;
  gap: 24px;
}
.brand {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.05em;
  color: #181a1d;
  line-height: 1;
}
.menu-center {
  display:flex;
  align-items:center;
  justify-content:center;
  min-width: 0;
}
.menu {
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 34px;
  flex-wrap: wrap;
}
.menu a {
  color:#181a1d;
  font-weight:800;
  font-size:15px;
  line-height:1.1;
  padding:6px 0;
  transition: opacity .18s ease;
}
.menu a:hover { opacity:.72; }
.nav-icon-wrap {
  display:none;
  justify-content:flex-end;
  align-items:center;
}
.nav-icon {
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid rgba(24,26,29,.14);
  background: rgba(24,26,29,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
}
.hamburger { width:22px; height:16px; position:relative; }
.hamburger span {
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:#181a1d;
  border-radius:999px;
}
.hamburger span:nth-child(1){ top:0; }
.hamburger span:nth-child(2){ top:7px; }
.hamburger span:nth-child(3){ bottom:0; }

.phone-bar {
  background:#17191c;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.phone-bar-inner {
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.phone-link {
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--text);
  font-weight:900;
  font-size:18px;
  letter-spacing:-.02em;
}
.phone-icon { color:var(--accent); }

/* Mobile menu */
.mobile-menu-backdrop {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.52);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .18s ease, visibility .18s ease;
  z-index:70;
}
.mobile-menu-panel {
  position:fixed;
  top:0;
  right:0;
  width:min(360px, 88vw);
  height:100vh;
  background:#1b1d20;
  border-left:1px solid rgba(255,255,255,.08);
  box-shadow:-18px 0 40px rgba(0,0,0,.28);
  transform:translateX(100%);
  transition:transform .2s ease;
  z-index:80;
  padding:22px 20px 28px;
  display:flex;
  flex-direction:column;
}
.mobile-menu-open .mobile-menu-backdrop {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.mobile-menu-open .mobile-menu-panel {
  transform:translateX(0);
}
.mobile-menu-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:18px;
}
.mobile-menu-title {
  font-size:22px;
  font-weight:900;
  letter-spacing:-.03em;
}
.mobile-menu-close {
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#f2f2ef;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.mobile-menu-links { display:grid; gap:12px; }
.mobile-link {
  display:block;
  padding:15px 16px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#f2f2ef;
  font-size:17px;
  font-weight:800;
}

/* Hero */
.hero {
  position:relative;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:#181a1d;
}
.hero::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(17,18,20,.88) 0%, rgba(17,18,20,.72) 34%, rgba(17,18,20,.52) 58%, rgba(17,18,20,.34) 100%),
    linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.16)),
    url('../img/hero-1440mm.jpg') center center / cover no-repeat;
}
.hero::after {
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:180px;
  background:linear-gradient(180deg, transparent, rgba(24,26,29,.94));
}
.hero-full {
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}
.hero-inner {
  position:relative;
  z-index:2;
  min-height:760px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:96px 0 124px;
}
.hero-label {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.05);
  color:#e4dfd7;
  font-weight:700;
  margin-bottom:28px;
  backdrop-filter:blur(6px);
}
.dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
}
.hero-title {
  margin:0 0 20px;
  max-width:1040px;
  font-size:clamp(54px, 5.4vw, 80px);
  line-height:.95;
  letter-spacing:-.055em;
  text-shadow:0 4px 20px rgba(0,0,0,.20);
}
.title-line-1,
.title-line-2 { display:block; color:var(--text); }
.title-line-2 .orange { color:var(--accent); }
.hero-lead {
  margin:0 0 14px;
  max-width:780px;
  font-size:23px;
  line-height:1.38;
  font-weight:800;
  color:#f0ebe3;
}
.hero-copy {
  margin:0 0 34px;
  max-width:790px;
  color:var(--muted);
  font-size:18px;
  line-height:1.72;
}
.hero-points {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:0 0 34px;
  padding:0;
  list-style:none;
}
.hero-points li {
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.11);
  color:#f1ede7;
  font-size:15px;
  font-weight:700;
}
.cta {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  align-items:center;
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:198px;
  padding:16px 24px;
  border-radius:14px;
  font-weight:900;
  border:1px solid transparent;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  transition:transform .18s ease, opacity .18s ease, border-color .18s ease;
}
.btn:hover { transform:translateY(-1px); opacity:.96; }
.btn-primary { background:var(--accent); color:#17191c; }
.btn-secondary {
  background:rgba(255,255,255,.10);
  color:#f4f2ef;
  border-color:rgba(255,255,255,.18);
}
.btn-ghost {
  background:transparent;
  color:#f4f2ef;
  border-color:rgba(255,255,255,.22);
  box-shadow:none;
}

/* Sections */
.section { padding:88px 0; }
.about, .services, .references, .why, .contact {
  border-top:1px solid rgba(255,255,255,.05);
}
.section-label {
  color:var(--accent);
  font-size:14px;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.center { text-align:center; }
h2 {
  margin:0 0 16px;
  font-size:clamp(38px, 4.1vw, 58px);
  line-height:1.02;
  letter-spacing:-.045em;
}
.section-copy {
  margin:0;
  color:var(--muted);
  font-size:19px;
  line-height:1.75;
  max-width:980px;
}
.center-copy { margin-left:auto; margin-right:auto; text-align:center; }

.card-grid {
  display:grid;
  gap:24px;
  margin-top:40px;
}
.four { grid-template-columns:repeat(4, minmax(0, 1fr)); }
.three { grid-template-columns:repeat(3, minmax(0, 1fr)); }
.two { grid-template-columns:repeat(2, minmax(0, 1fr)); }

.info-card, .service-card, .reference-box, .contact-card, .brief-card, .legal-strip {
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border-radius:24px;
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}
.info-card {
  padding:30px 28px;
  min-height:100%;
}
.icon-box {
  width:58px;
  height:58px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-size:24px;
  margin-bottom:18px;
  color:#17191c;
  background:var(--accent);
  box-shadow:0 12px 22px rgba(255,141,5,.16);
}
.info-card h3, .service-card h3, .brief-card h3 {
  margin:0 0 12px;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.02em;
}
.info-card p, .service-card p, .brief-card p {
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
}
.service-card {
  overflow:hidden;
  min-height:100%;
}
.service-body { padding:28px; }
.service-media {
  min-height:240px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  overflow:hidden;
}
.service-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:16px;
}
.service-media-bager img {
  max-width:100%;
  max-height:200px;
  width:auto;
  height:auto;
  object-fit:contain;
  margin:0 auto;
  border-radius:16px;
}

.reference-box {
  max-width:860px;
  margin:44px auto 0;
  padding:56px 36px;
  text-align:center;
}
.ref-icon {
  width:84px;
  height:84px;
  border-radius:50%;
  margin:0 auto 20px;
  display:grid;
  place-items:center;
  font-size:42px;
  font-weight:900;
  background:var(--accent);
  color:#17191c;
}
.reference-box p {
  max-width:700px;
  margin:0 auto 26px;
  font-size:23px;
  line-height:1.58;
  color:#f0ebe3;
}

/* Contact */
.contact-grid {
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:32px;
  margin-top:44px;
  align-items:stretch;
}
.brief-card, .contact-card {
  padding:34px;
}
.brief-card p.lead-mini {
  color:#f0ebe3;
  font-weight:700;
  margin:0 0 22px;
}
.brief-list {
  display:grid;
  gap:14px;
  margin:0 0 28px;
  padding:0;
  list-style:none;
}
.brief-list li {
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:var(--muted);
  line-height:1.6;
  font-size:17px;
}
.brief-list .tick {
  color:var(--accent);
  font-weight:900;
  flex:0 0 18px;
}
.brief-actions {
  display:grid;
  gap:12px;
}
.contact-title {
  font-size:44px;
  margin:0 0 14px;
  letter-spacing:-.04em;
  line-height:1;
}
.contact-sub {
  margin:0 0 24px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
  max-width:480px;
}
.contact-item {
  display:flex;
  gap:14px;
  font-size:18px;
  margin-bottom:18px;
  align-items:flex-start;
  color:#f0ebe3;
  line-height:1.55;
}
.contact-item a { color:#f0ebe3; }
.ci {
  color:var(--accent);
  width:24px;
  font-weight:900;
  flex:0 0 24px;
}
.social-row {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:24px 0;
}
.social-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#f0ebe3;
  font-weight:800;
}
.qr-box {
  width:220px;
  text-align:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:16px;
  background:rgba(255,255,255,.06);
}
.qr-inner {
  height:186px;
  border-radius:14px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  overflow:hidden;
  padding:12px;
}
.qr-inner img {
  width:100%;
  max-width:150px;
  object-fit:contain;
  border-radius:8px;
  background:#fff;
  margin:0 auto;
}
.qr-box p {
  margin:0 0 6px;
  color:#f0ebe3;
  font-size:16px;
  font-weight:800;
}
.qr-box small {
  display:block;
  color:var(--muted);
  line-height:1.5;
}

.legal-strip {
  margin-top:22px;
  padding:18px 22px;
  display:flex;
  gap:18px;
  justify-content:space-between;
  align-items:center;
  color:var(--muted);
  font-size:15px;
}
.legal-links {
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
}
.legal-links a {
  color:#f0ebe3;
  font-weight:700;
}

/* Footer */
.site-footer {
  padding:34px 0 50px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.16);
}
.footer-grid {
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:40px;
  align-items:start;
}
.footer-grid-structured { column-gap: 56px; }
.footer-brand strong {
  display:block;
  font-size:28px;
  letter-spacing:-.04em;
  margin-bottom:12px;
  line-height:1;
}
.footer-brand p {
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.75;
  max-width:540px;
}
.footer-contact {
  font-size:15px;
  border-top:1px solid rgba(255,255,255,.06);
  max-width:560px;
  padding-top:16px;
  margin-top:12px;
}
.footer-links {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:26px;
  padding-top:6px;
}
.footer-link-group {
  min-width:0;
}
.footer-group-title {
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.58);
  margin:0 0 14px;
}
.footer-links a {
  display:block;
  color:#f0ebe3;
  font-weight:700;
  line-height:1.5;
  padding:6px 0;
  min-width:0;
  text-align:left;
}
.footer-links a:hover { color:var(--accent); }

a:focus-visible,
button:focus-visible {
  outline:2px solid var(--accent);
  outline-offset:2px;
}

/* Breakpoints */
@media (max-width: 1180px) {
  .nav-top { grid-template-columns: 160px 1fr; }
  .menu { gap:22px; }
  .menu a { font-size:14px; }
  .four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .wrap { width:min(var(--content), calc(100vw - 40px)); }
  .hero-inner { min-height:700px; padding:84px 0 112px; }
  .hero-title { font-size: clamp(46px, 6vw, 68px); }
  .three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns:1fr; }
  .legal-strip { flex-direction:column; align-items:flex-start; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-links { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .footer-links a { text-align:left; min-width:0; }
}
@media (max-width: 820px) {
  .wrap { width:min(calc(100vw - 32px), 100%); }
  .nav-top {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    gap: 14px;
  }
  .brand { font-size:24px; }
  .menu-center { display:none; }
  .nav-icon-wrap { display:flex; }
  .phone-bar { display:none; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(17,18,20,.78) 0%, rgba(17,18,20,.62) 38%, rgba(17,18,20,.55) 100%),
      linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.12)),
      url('../img/hero-1440mm.jpg') center center / cover no-repeat;
  }
  .hero::after { height:120px; }
  .hero-inner {
    min-height: 600px;
    padding: 72px 0 86px;
  }
  .hero-label {
    margin-bottom: 20px;
    padding: 9px 12px;
    font-size: 13px;
  }
  .hero-title {
    font-size: clamp(34px, 9.2vw, 46px);
    max-width: 100%;
    margin-bottom: 14px;
  }
  .hero-lead {
    max-width:100%;
    font-size:19px;
    line-height:1.35;
    margin-bottom:12px;
  }
  .hero-copy {
    max-width:100%;
    font-size:16px;
    line-height:1.65;
    margin-bottom:22px;
  }
  .hero-points {
    gap:10px;
    margin-bottom:24px;
  }
  .hero-points li {
    width:100%;
    border-radius:16px;
    font-size:14px;
  }
  .cta {
    width:100%;
    gap:12px;
  }
  .btn {
    width:100%;
    min-width:0;
    padding:15px 18px;
    font-size:16px;
  }
  .section { padding:64px 0; }
  .section-label { margin-bottom:12px; }
  h2 {
    font-size: clamp(30px, 8vw, 40px);
    margin-bottom: 12px;
  }
  .section-copy {
    font-size: 17px;
    line-height: 1.7;
  }
  .card-grid {
    gap: 18px;
    margin-top: 28px;
  }
  .three, .two, .row-2, .contact-grid { grid-template-columns:1fr; }
  .info-card, .service-card, .reference-box, .brief-card, .contact-card, .legal-strip {
    border-radius:22px;
  }
  .info-card, .service-body, .brief-card, .contact-card {
    padding:24px;
  }
  .icon-box {
    width:52px;
    height:52px;
    margin-bottom:16px;
  }
  .info-card h3, .service-card h3, .brief-card h3 { font-size:20px; }
  .info-card p, .service-card p, .brief-list li, .brief-card p { font-size:16px; }
  .service-media {
    min-height: 210px;
    padding: 16px;
  }
  .service-media-bager img { max-height:175px; }
  .reference-box {
    margin-top: 30px;
    padding: 34px 22px;
  }
  .reference-box p {
    font-size: 20px;
    line-height: 1.55;
  }
  .ref-icon {
    width:74px;
    height:74px;
    font-size:38px;
  }
  .contact-grid {
    gap:20px;
    margin-top:28px;
  }
  .contact-title { font-size:34px; }
  .contact-sub, .contact-item { font-size:16px; }
  .social-row { gap:10px; }
  .social-btn {
    width:100%;
    min-width:0;
    padding:13px 16px;
  }
  .qr-box { width:100%; }
  .qr-inner {
    height:210px;
  }
  .qr-inner img { max-width:170px; }
  .legal-strip {
    flex-direction:column;
    align-items:flex-start;
    font-size:14px;
  }
  .site-footer { padding:38px 0 44px; }
}
@media (max-width: 560px) {
  .wrap { width:min(calc(100vw - 24px), 100%); }
  .hero-inner {
    min-height: 540px;
    padding: 60px 0 76px;
  }
  .hero-title { font-size: clamp(32px, 10vw, 42px); }
  .hero-lead { font-size:18px; }
  .hero-copy { font-size:15px; }
  .section { padding:56px 0; }
  .four { grid-template-columns:1fr; }
  .reference-box p { font-size:18px; }
  .contact-title { font-size:30px; }
  .footer-brand strong { font-size:24px; }
  .footer-links { grid-template-columns:1fr; gap:18px; }
  .footer-link-group + .footer-link-group { padding-top:4px; border-top:1px solid rgba(255,255,255,.08); }
}

/* Conversion / trust v4 */
.proof-band {
  padding: 0 0 34px;
  background: linear-gradient(180deg, rgba(24,26,29,.98), rgba(24,26,29,.92));
}
.proof-grid {
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
  margin-top:-40px;
  position:relative;
  z-index:3;
}
.proof-chip {
  border:1px solid rgba(255,255,255,.10);
  background:rgba(30,32,35,.92);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  border-radius:22px;
  padding:22px 20px;
}
.proof-chip strong {
  display:block;
  margin-bottom:8px;
  font-size:18px;
  letter-spacing:-.02em;
}
.proof-chip span {
  display:block;
  color:var(--muted);
  line-height:1.6;
  font-size:15px;
}
.proof-cards { margin-top:42px; }
.proof-card {
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border-radius:24px;
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  padding:30px 28px;
}
.proof-card-head, .trust-kicker {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  border-radius:999px;
  background:rgba(255,141,5,.14);
  border:1px solid rgba(255,141,5,.34);
  color:var(--accent);
  font-weight:900;
  margin-bottom:18px;
}
.proof-card h3 {
  margin:0 0 12px;
  font-size:24px;
  line-height:1.18;
  letter-spacing:-.03em;
}
.proof-card p {
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.7;
  font-size:17px;
}
.proof-list {
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.proof-list li {
  color:#f0ebe3;
  font-size:15px;
  line-height:1.5;
  padding-left:18px;
  position:relative;
}
.proof-list li::before {
  content:"";
  position:absolute;
  left:0; top:.58em;
  width:8px; height:8px;
  border-radius:50%;
  background:var(--accent);
}
.reference-box-wide {
  max-width:none;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
  text-align:left;
}
.reference-copy-wrap h3 {
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:-.03em;
}
.reference-box-wide p {
  margin:0;
  max-width:none;
  font-size:18px;
  color:var(--muted);
}
.reference-actions {
  display:grid;
  gap:12px;
}
.trust-grid { margin-top:40px; }
.trust-card { position:relative; }
.process-block {
  margin-top:36px;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:28px;
  align-items:start;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border-radius:24px;
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  padding:32px;
}
.process-copy h3 {
  margin:0 0 12px;
  font-size:34px;
  line-height:1.06;
  letter-spacing:-.04em;
}
.process-copy p {
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}
.process-steps {
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:14px;
}
.process-steps li {
  display:grid;
  gap:6px;
  padding:18px 18px 18px 20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}
.process-steps strong {
  font-size:18px;
  letter-spacing:-.02em;
}
.process-steps span {
  color:var(--muted);
  line-height:1.6;
  font-size:15px;
}
@media (max-width: 1100px) {
  .proof-grid, .four { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .reference-box-wide, .process-block, .footer-grid { grid-template-columns:1fr; }
  .reference-actions { grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width: 820px) {
  .proof-band { padding-bottom: 22px; }
  .proof-grid { grid-template-columns:1fr; margin-top:-18px; }
  .proof-card, .proof-chip, .brief-card, .contact-card, .process-block { border-radius:20px; }
  .reference-box-wide { text-align:center; }
  .reference-actions { grid-template-columns:1fr; }
  .reference-copy-wrap h3 { font-size:24px; }
  .process-copy h3 { font-size:28px; }
}
@media (max-width: 560px) {
  .proof-card, .info-card, .service-body, .reference-box, .brief-card, .contact-card, .process-block { padding:24px 20px; }
  .proof-card h3 { font-size:22px; }
  .proof-chip strong { font-size:17px; }
}


/* V5 polish */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 120;
  padding: 10px 14px;
  background: #181a1d;
  color: #f2f2ef;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

.mobile-sticky-cta { display:none; }

.footer-contact a {
  color:#f0ebe3;
  text-decoration:none;
}
.footer-contact a:hover { opacity:.85; }

@media (max-width: 820px) {
  body { padding-bottom: 100px; }
  body.mobile-menu-open .mobile-sticky-cta { display:none; }
  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 85;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(24,26,29,.92);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
    backdrop-filter: blur(10px);
  }
  .mobile-sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 15px;
  }
  .mobile-sticky-call {
    background: rgba(255,255,255,.08);
    color: #f4f2ef;
    border: 1px solid rgba(255,255,255,.14);
  }
  .mobile-sticky-mail {
    background: var(--accent);
    color: #17191c;
  }
}

.footer-legal-note{margin-top:12px;color:var(--muted);font-size:14px;}


/* branded legal pages */
.subpage-hero{
  padding:40px 0 18px;
  background:
    radial-gradient(circle at top right, rgba(255,141,5,.14), transparent 30%),
    linear-gradient(180deg,#181a1d 0%, #1f2124 100%);
}
.subpage-wrap{max-width:940px;}
.subpage-kicker{
  display:inline-flex;align-items:center;gap:10px;
  color:rgba(255,255,255,.72);font-size:.88rem;font-weight:700;letter-spacing:.02em;
  margin-bottom:10px;
}
.subpage-kicker .dot{width:10px;height:10px;border-radius:50%;background:#ff8d05;display:inline-block;}
.subpage-title{margin:0;color:#fff;font-size:clamp(1.75rem,3vw,2.55rem);line-height:1.08;}
.subpage-lead{max-width:720px;color:rgba(255,255,255,.74);margin:10px 0 0;line-height:1.55;}
.legal-section{padding:18px 0 44px;background:#1f2124;}
.legal-shell{
  background:#26282b;border:1px solid rgba(255,255,255,.08);border-radius:18px;
  box-shadow:0 12px 32px rgba(0,0,0,.18);padding:22px 22px;
}
.legal-shell h2{
  margin:18px 0 8px;
  color:#f2f2ef;
  font-size:clamp(1.05rem,1.6vw,1.3rem);
  line-height:1.28;
}
.legal-shell h3{
  margin:16px 0 8px;
  color:#f2f2ef;
  font-size:1rem;
  line-height:1.3;
}
.legal-shell p,.legal-shell li{color:rgba(242,242,239,.88);line-height:1.6;margin:0 0 10px;}
.legal-shell ul{padding-left:20px;margin:0 0 10px;}
.legal-meta{font-size:.9rem;color:rgba(242,242,239,.62);margin-bottom:14px;}
.legal-box{
  margin-top:16px;padding:16px;border-radius:14px;
  background:#202225;border:1px solid rgba(255,255,255,.08);
}
.legal-box p:last-child,.legal-shell p:last-child,.legal-shell ul:last-child{margin-bottom:0;}
@media (max-width: 768px){
  .legal-shell{padding:18px 16px;border-radius:16px;}
  .subpage-hero{padding:32px 0 16px;}
  .legal-section{padding:16px 0 34px;}
  .subpage-title{font-size:clamp(1.55rem,7vw,2rem);}
}

.legal-meta-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 20px;list-style:none;padding:0;margin:0 0 22px;}
.legal-meta-grid li{background:#f8fafc;border:1px solid rgba(15,23,42,.08);border-radius:16px;padding:14px 16px;color:#334155;}
.legal-meta-grid strong{display:block;color:#111827;font-size:13px;text-transform:uppercase;letter-spacing:.06em;margin-bottom:4px;}
.note{margin-top:24px;padding:16px 18px;border-left:4px solid var(--accent);background:rgba(255,141,5,.08);border-radius:14px;color:#5b3a08;}
@media (max-width:768px){.legal-meta-grid{grid-template-columns:1fr;}}


/* Opći uvjeti poslovanja - ciljane korekcije */
.legal-opci .section{padding:0;margin:0 0 16px;}
.legal-opci .section:last-of-type{margin-bottom:0;}
.legal-opci .legal-shell h3{margin:0 0 8px;font-size:1rem;line-height:1.35;}
.legal-opci .legal-shell p{margin:0 0 8px;line-height:1.58;}
.legal-opci .legal-shell p:last-child{margin-bottom:0;}
.legal-opci .legal-meta-list{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin:0 0 20px;
}
.legal-opci .legal-meta-item{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:14px;
  align-items:start;
  padding:12px 14px;
  border-radius:12px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.legal-opci .legal-meta-label{
  color:rgba(255,255,255,.62);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.legal-opci .legal-meta-value{
  color:rgba(242,242,239,.92);
  line-height:1.5;
}
.legal-opci .note{
  margin-top:20px;
  padding:16px 18px;
  border-left:4px solid var(--accent);
  background:rgba(255,141,5,.12);
  color:#f6dfbb;
  border-radius:14px;
}
@media (max-width:768px){
  .legal-opci .legal-meta-item{grid-template-columns:1fr;gap:6px;}
}


/* 1440MM kontakt modul */
.quick-contact-trigger{appearance:none}
.contact-save-btn{
  width:100%;
  margin:16px 0 18px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  border:none;
  border-radius:14px;
  padding:14px 16px;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
  transition:transform .2s ease,opacity .2s ease,background .2s ease;
  background:#FF8D05;
  color:#1B1D20;
}
.contact-save-btn:hover{transform:translateY(-1px);opacity:.96}


.service-link{margin-top:14px;display:inline-flex}
.cta-row{display:flex;gap:12px;align-items:center}
.center{text-align:center}
.center-copy{max-width:820px;margin-left:auto;margin-right:auto}


.services-hub .cards{margin-top:20px}
.service-link-card{
  text-decoration:none;
  color:inherit;
  display:block;
}
.service-link-card .card-link{
  display:inline-block;
  margin-top:12px;
  color:#FF8D05;
  font-weight:800;
}

.jobs-entry .cards{margin-top:20px}
.cards.two{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.download-box{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);border-radius:18px;padding:22px}
.download-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:14px}
.note-box{background:rgba(255,141,5,.08);border:1px solid rgba(255,141,5,.22);border-radius:16px;padding:16px 18px;color:#F5F7FA}
@media (max-width:900px){.cards.two{grid-template-columns:1fr}}

.download-note{
  margin:10px 0 0;
  color:#cfd5dc;
  line-height:1.7;
}


/* unified header/footer / jobs strip */
.brand a{color:inherit;text-decoration:none}
.footer-grid{grid-template-columns:minmax(0,1fr) minmax(0,1.3fr)}
.footer-links.footer-links-grouped{grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.footer-link-group{min-width:0}
.footer-links a{font-size:15px}
.jobs-entry .jobs-band{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  padding:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  border-radius:24px;
}
.jobs-entry .jobs-band p{color:var(--muted);line-height:1.75;margin:0}
.jobs-entry .jobs-actions{
  display:grid;
  gap:14px;
  align-content:start;
}
.jobs-entry .jobs-actions .card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
}
.jobs-entry .jobs-actions h3{margin:0 0 8px}
.jobs-entry .jobs-actions p{margin:0 0 10px}
.services-hub .cards{margin-top:20px}
.service-link-card{
  text-decoration:none;
  color:inherit;
  display:block;
}
.service-link-card .card-link{
  display:inline-block;
  margin-top:12px;
  color:#FF8D05;
  font-weight:800;
}
@media (max-width:1024px){
  .footer-links.footer-links-grouped{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:820px){
  .jobs-entry .jobs-band{grid-template-columns:1fr}
}
@media (max-width:560px){
  .footer-links.footer-links-grouped{grid-template-columns:1fr}
}


.services-grid-enhanced{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:18px}
.services-grid-enhanced .card{height:100%}
.services-grid-enhanced .service-links-list{margin-top:12px;display:grid;gap:8px}
.services-grid-enhanced .service-links-list a{color:#FF8D05;text-decoration:none;font-weight:700}
.service-hub-links{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:18px}
.service-hub-links .hub-link-box{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);border-radius:18px;padding:18px}
.service-hub-links .hub-link-box a{color:#FF8D05;text-decoration:none;font-weight:800}
@media (max-width: 980px){
  .services-grid-enhanced,.service-hub-links{grid-template-columns:1fr}
}


/* index hard fix */
.services-hub .cards.three,
.proof-block .why-1440mm-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.services-hub .card,
.proof-block .card{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:0;
}
.services-hub .service-link{
  align-self:flex-start;
  margin-top:auto;
}
.proof-block .card p{
  margin:0;
}
@media (max-width:980px){
  .services-hub .cards.three,
  .proof-block .why-1440mm-grid{
    grid-template-columns:1fr;
  }
}


