/* FORT PLUS */
:root {
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-accent: #f6f4ef;
  --text: #16202a;
  --muted: #5f6d79;
  --line: #d8e0e7;
  --accent: #113a67;
  --accent-dark: #0d2f54;
  --accent-soft: #dde8f7;
  --gold: #b88a3c;
  --gold-soft: #f5ebd8;
  --dark: #0f1720;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(16, 24, 32, 0.08);
  --radius: 26px;
  --container: 1240px;
  --header-height: 84px;
}
* { box-sizing: border-box; min-width: 0; }
html, body { width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Arial, Helvetica, sans-serif; color: var(--text); background: var(--bg); line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(216,224,231,.95);
}
body {
  margin: 0;
  padding-top: 84px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
.header-row { min-height: var(--header-height); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; gap: 4px; min-width: 220px; }
.brand-title { font-size: 1.14rem; font-weight: 700; letter-spacing: -.03em; }
.brand-subtitle { font-size: .72rem; text-transform: uppercase; letter-spacing: .24em; color: #7a8792; line-height: 1.45; }
.nav { display: flex; justify-content: center; align-items: center; gap: 22px; min-width: 0; }
.nav a { font-size: .92rem; color: var(--muted); white-space: nowrap; transition: color .25s ease; }
.nav a:hover, .nav a:focus-visible { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn, .contact-chip { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--text); transition: transform .25s ease, background .25s ease; cursor: pointer; }
.btn:hover, .contact-chip:hover { transform: translateY(-1px); background: #f8fbff; }
.btn-primary { background: linear-gradient(135deg, var(--accent) 0%, #174d87 100%); border-color: transparent; color: var(--white); font-weight: 600; }
.btn-primary:hover { background: linear-gradient(135deg, #0d2f54 0%, #143f71 100%); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border-radius: 999px; border: 1px solid var(--line); background: var(--white); align-items: center; justify-content: center; cursor: pointer; flex: 0 0 auto; }
.menu-toggle svg:last-child, .menu-toggle.active svg:first-child { display: none; }
.menu-toggle.active svg:last-child { display: block; }
.mobile-panel { display: none; width: 100%; border-top: 1px solid var(--line); padding: 10px 0 18px; }
.mobile-nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav a { padding: 14px 16px; border-radius: 18px; color: #33414f; }
.mobile-nav a:hover { background: #f5f8fc; }
.mobile-contacts { display: grid; gap: 10px; margin-top: 12px; }

.section { padding: 96px 0; scroll-margin-top: calc(var(--header-height) + 18px); }
.section-soft { background: var(--bg-soft); }
.section-accent { background: var(--bg-accent); }
.hero { padding-top: 56px; padding-bottom: 96px; }
.hero-grid, .split-layout, .services-grid, .advantages-grid, .process-steps, .footer-grid { display: grid; gap: 28px; }
.hero-grid { grid-template-columns: minmax(0,1.04fr) minmax(0,.96fr); align-items: stretch; }
.split-layout { grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: stretch; }
.services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 40px; }
.advantages-grid { grid-template-columns: repeat(4, minmax(0,1fr)); margin-top: 38px; }
.adv-photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; margin-top: 40px; }
.process-steps { grid-template-columns: repeat(4, minmax(0,1fr)); margin-top: 38px; }
.footer-grid { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); align-items: start; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--accent-soft); border: 1px solid #c9d9f0; color: var(--accent-dark); font-size: .72rem; text-transform: uppercase; letter-spacing: .22em; }
.hero-copy, .split-content { display: flex; flex-direction: column; }
.hero h1 { margin: 18px 0 0; max-width: 760px; font-size: 34px; line-height: 1.02; letter-spacing: -.04em; }
.hero-lead { max-width: 700px; margin: 20px 0 0; font-size: 1.03rem; line-height: 1.74; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-points { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 30px; }
.point-card { padding: 20px; border-radius: 24px; background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%); border: 1px solid var(--line); box-shadow: var(--shadow); }
.point-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold); }
.point-text { margin-top: 12px; color: #33414f; line-height: 1.6; }

.section-title { max-width: 760px; }
.section-title.center { margin: 0 auto; text-align: center; }
.section-title.narrow { max-width: 920px; }
.section-title h2 { margin: 16px 0 0; font-size: 28px; line-height: 1.08; letter-spacing: -.03em; }
.section-title p { margin: 16px 0 0; font-size: 1rem; color: var(--muted); line-height: 1.78; }

.about-list { display: grid; gap: 14px; margin-top: 24px; }
.about-row { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 20px; border: 1px solid var(--line); background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%); }
.about-row svg { flex: 0 0 auto; color: var(--accent-dark); }
.about-row span { color: #33414f; line-height: 1.6; }

.image-panel, .service-card, .process-card, .contact-card, .sectors-shell { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.image-panel { position: relative; overflow: hidden; min-height: 460px; }
.hero-media, .split-media { height: 100%; width: 100%; }
.hero-media .image-panel, .split-media .image-panel { height: 100%; min-height: 100%; }
.image-fit-tall { height: 100%; }
.image-panel img { width: 100%; height: 100%; object-fit: cover; }
.image-panel:hover img { transform: scale(1.04); }
.image-panel img, .service-card, .process-card { transition: transform .3s ease, box-shadow .3s ease; }
.image-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,32,.04), rgba(15,23,32,.76)); }
.image-badge, .image-title { position: absolute; z-index: 2; }
.image-badge { top: 20px; left: 20px; padding: 9px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(15,23,32,.62); color: var(--white); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; }
.image-title { left: 26px; right: 26px; bottom: 24px; color: var(--white); font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.22; font-weight: 600; }

.service-card, .process-card, .contact-card { padding: 24px; }

.adv-photo-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.adv-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.adv-photo-content {
  padding: 20px 20px 22px;
}

.adv-photo-content h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.32;
}

.adv-photo-content p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}
.icon-badge { width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 18px; background: var(--accent-soft); border: 1px solid #c9d9f0; color: var(--accent-dark); }
.service-card h3, .process-card h3, .contact-card h3, .adv-wide h3, .adv-small h3 { margin: 18px 0 0; font-size: 1.12rem; line-height: 1.32; }
.service-card p, .process-card p, .contact-card p, .adv-wide p, .adv-small p { margin: 12px 0 0; color: var(--muted); line-height: 1.74; }

.sectors-shell { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 28px; padding: 10px; }
.sectors-photo { min-height: 340px; }
.sectors-content { padding: 24px; }
.sector-tags { display: grid; grid-template-columns: repeat(2, minmax(0,max-content)); gap: 14px; margin-top: 26px; }
.sector-tag { padding: 12px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 24px rgba(16,24,32,.05); color: #33414f; }


.process-card { min-height: 100%; }
.process-num { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--gold-soft); border: 1px solid #e7cfaa; color: #9a6924; font-size: .9rem; font-weight: 700; }

.contact-shell { padding: 10px; border-radius: 32px; border: 1px solid var(--line); background: linear-gradient(135deg, #eef4fc 0%, #ffffff 45%, #f6f4ef 100%); box-shadow: var(--shadow); }
.contact-inner { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); gap: 28px; padding: 34px; border-radius: 26px; }
.contact-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.mini-label { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--accent-soft); border: 1px solid #c9d9f0; color: var(--accent-dark); font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; }
.contact-list { display: grid; gap: 12px; margin-top: 18px; color: var(--muted); }

.footer { background: linear-gradient(180deg, #101820 0%, #16222f 100%); border-top: 1px solid rgba(216,224,231,.14); color: rgba(227,235,240,.9); width: 100%; }
.footer-grid { padding: 54px 0; }
.footer-side { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; max-width: 100%; }
.footer .brand-title, .footer .footer-title { color: var(--white); }
.footer .brand-subtitle, .footer p, .footer a, .footer .footer-note { color: rgba(209,221,228,.82); }
.footer-links { display: grid; gap: 10px; margin-top: 16px; max-width: 100%; }
.footer-links a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .06s; }
.delay-2 { transition-delay: .12s; }
.delay-3 { transition-delay: .18s; }
.delay-4 { transition-delay: .24s; }

.icon { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.mobile-only { display: none; }
.desktop-only { display: block; }
.mobile-inline-image { margin-top: 22px; }

@media (max-width: 1280px) {
  .header-row { gap: 18px; }
  .nav { gap: 18px; }
  .nav a { font-size: .88rem; }
  .contact-chip { padding: 12px 18px; }
}

@media (max-width: 1180px) {
  .services-grid, .advantages-grid, .process-steps, .adv-photo-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 980px) {
  :root { --header-height: 76px; }
  .nav, .header-actions { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-panel.open { display: block; }

  .hero-grid, .split-layout, .services-grid, .advantages-grid, .process-steps, .footer-grid, .footer-side, .sectors-shell, .contact-inner, .adv-photo-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-media, .split-media { height: auto; width: 100%; }
  .hero-media .image-panel, .split-media .image-panel { height: auto; min-height: 360px; }

  .mobile-only { display: block; }
  .desktop-only { display: none; }

  .hero { padding-top: 24px; }
  .hero-points { grid-template-columns: 1fr; }
  .sector-tags { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .container { width: min(calc(100% - 24px), var(--container)); }

  .site-header, .mobile-panel { width: 100%; max-width: 100%; }
  .header-row { grid-template-columns: 1fr auto; gap: 12px; }
  .brand { min-width: 0; }

  .hero { padding-top: 10px; }
  .hero h1 { margin-top: 14px; font-size: 30px; line-height: 1; }
  .section-title h2 { font-size: 24px; }

  .hero-lead, .section-title p, .service-card p, .process-card p, .contact-card p, .about-row span {
    line-height: 1.68;
  }

  .hero-actions, .contact-links { flex-direction: column; align-items: stretch; }
  .btn, .contact-chip { width: 100%; }

  .service-card, .process-card, .contact-card, .sectors-content, .adv-photo-content { padding-left: 20px; padding-right: 20px; }
  .contact-inner { padding: 22px; }

  .image-panel { min-height: 300px; }
  .mobile-inline-image { margin-top: 20px; }
  .sector-tags { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr !important; padding: 40px 0; gap: 28px; }
  .footer-side { grid-template-columns: 1fr !important; gap: 24px; }
  .footer-side > div, .footer-grid > div, .footer-links { width: 100%; min-width: 0; max-width: 100%; }
  .footer-links a, .footer-note { font-size: 15px; line-height: 1.5; }
  .footer-title { margin-bottom: 8px; }
}
