:root {
  --bg: #020b14;
  --navy: #061423;
  --navy-2: #091b2c;
  --blue: #1597ff;
  --blue-2: #28a7ff;
  --white: #ffffff;
  --muted: #d7e6f4;
  --line: rgba(255, 255, 255, .12);
  --max: 1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 80px, var(--max)); margin-inline: auto; }

/* =============================
   Header
============================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 146px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(2,11,20,.94), rgba(2,11,20,.72));
  backdrop-filter: blur(14px);
  transition: .3s ease;
}
.site-header.scrolled { height: 92px; background: rgba(2,11,20,.95); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: flex; align-items: center; gap: 22px; min-width: 330px; }
.brand-logo { width: 120px; height: 120px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: 53px; letter-spacing: .04em; font-weight: 500; }
.brand-text span { font-size: 13px; letter-spacing: .07em; font-weight: 600; margin-top: 6px; }
.main-nav { display: flex; align-items: center; gap: 56px; }
.main-nav a {
  position: relative;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  color: #fff;
  padding: 38px 0;
  transition: .25s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--blue-2); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 23px;
  height: 3px;
  background: var(--blue-2);
  border-radius: 99px;
}
.nav-phone {
  min-width: 202px;
  height: 58px;
  border: 1px solid rgba(40,167,255,.85);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-weight: 800;
  font-size: 16px;
  background: rgba(2,13,24,.44);
  box-shadow: 0 0 28px rgba(21,151,255,.12);
}
.nav-phone svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue-2);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: relative;
  z-index: 120;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: white;
  margin: 7px auto;
  border-radius: 2px;
  transition: .25s ease;
}

/* =============================
   Hero
============================= */
.hero {
  position: relative;
  min-height: 920px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding-top: 146px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-slider.png');
  background-size: cover;
  background-position: center right;
  z-index: -3;
  transform: scale(1.01);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2,11,20,.98) 0%, rgba(2,11,20,.88) 22%, rgba(2,11,20,.45) 48%, rgba(2,11,20,.10) 72%, rgba(2,11,20,.08) 100%),
    linear-gradient(180deg, rgba(2,11,20,.18), rgba(2,11,20,.26));
}
.hero-mobile-image { display: none; }
.hero-content { position: relative; z-index: 2; padding-top: 34px; }
.hero-copy { max-width: 760px; }
.hero h1 {
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: .035em;
  font-weight: 900;
  text-shadow: 0 8px 34px rgba(0,0,0,.45);
}
.hero h1 span { color: var(--blue-2); }
.hero-subtitle {
  margin-top: 30px;
  max-width: 620px;
  font-size: 25px;
  line-height: 1.44;
  color: #f3f8ff;
  letter-spacing: .01em;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 35px;
  margin-top: 58px;
  align-items: center;
}
.feature-item { display: flex; align-items: center; gap: 14px; min-width: 125px; }
.feature-item svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--blue-2);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(21,151,255,.25));
  flex: 0 0 auto;
}
.feature-item span { font-size: 16px; line-height: 1.28; font-weight: 500; color: #fff; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 56px; }
.btn {
  min-width: 292px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .035em;
  font-weight: 800;
  font-size: 18px;
  transition: .25s ease;
}
.btn span { font-size: 30px; line-height: 1; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, #138bec, #179fff); box-shadow: 0 18px 40px rgba(21,151,255,.2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 48px rgba(21,151,255,.32); }
.btn-outline { border: 1px solid rgba(40,167,255,.85); background: rgba(2,13,24,.35); }
.btn-outline:hover { background: rgba(21,151,255,.12); transform: translateY(-2px); }

/* =============================
   Intro
============================= */
.intro-section {
  padding: 150px 0 120px;
  background:
    radial-gradient(circle at top left, rgba(21,151,255,.10), transparent 36%),
    linear-gradient(180deg, #020b14 0%, #061423 100%);
}
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.intro-image {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 560px;
  box-shadow: 0 35px 90px rgba(0,0,0,.45);
}
.intro-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.15) brightness(.92);
  transition: .4s ease;
}
.intro-image:hover img { transform: scale(1.03); }
.intro-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2,11,20,.72));
}
.intro-badge {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 2;
  width: 160px;
  height: 160px;
  border-radius: 22px;
  background: rgba(2,11,20,.82);
  border: 1px solid rgba(40,167,255,.45);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 0 35px rgba(21,151,255,.18);
}
.intro-badge strong { font-size: 54px; line-height: 1; color: var(--blue-2); }
.intro-badge span { margin-top: 10px; font-size: 15px; line-height: 1.35; color: var(--muted); }
.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 800;
}
.intro-content h2,
.services-head h2,
.trust-head h2,
.contact-head h2 {
  font-weight: 900;
  letter-spacing: -.03em;
}
.intro-content h2 { max-width: 720px; font-size: clamp(34px, 3.4vw, 54px); line-height: 1.08; }
.intro-content p { margin-top: 28px; max-width: 660px; font-size: 20px; line-height: 1.65; color: var(--muted); }
.intro-points { margin-top: 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.intro-points div {
  min-height: 70px;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  background: #0c1826;
  border: 1px solid rgba(255,255,255,.08);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  transition: .35s ease;
}
.intro-points div::before { content: "✓"; color: var(--blue-2); margin-right: 12px; font-weight: 900; }
.intro-points div:hover { transform: translateY(-4px); border-color: #1597ff; box-shadow: 0 15px 35px rgba(21,151,255,.15); }
.intro-btn { margin-top: 44px; min-width: 300px; max-width: 340px; height: 56px; font-size: 15px; font-weight: 700; border-radius: 10px; padding: 0 22px; }

/* =============================
   Services Preview
============================= */
.services-preview {
  padding: 130px 0;
  background:
    radial-gradient(circle at top right, rgba(21,151,255,.12), transparent 34%),
    linear-gradient(180deg, #061423 0%, #020b14 100%);
}
.services-head { text-align: center; max-width: 900px; margin: 0 auto 55px; }
.services-head h2 { font-size: clamp(34px, 3.4vw, 56px); line-height: 1.08; }
.services-head p { margin-top: 22px; font-size: 21px; line-height: 1.55; color: var(--muted); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8,25,41,.95), rgba(4,15,26,.96));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  transition: .35s ease;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(21,151,255,.65); box-shadow: 0 35px 90px rgba(21,151,255,.13); }
.service-img { height: 191px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: .45s ease; filter: contrast(1.06) saturate(1.08) brightness(.9); }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 30px 30px 34px; }
.service-body h3 { font-size: 28px; line-height: 1.15; font-weight: 900; margin-bottom: 16px; }
.service-body h3::after { content: ""; display: block; width: 42px; height: 3px; margin-top: 14px; background: var(--blue-2); border-radius: 99px; }
.service-body p { font-size: 16px; line-height: 1.6; color: var(--muted); }
.service-body a { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--blue-2); font-size: 16px; font-weight: 800; }
.service-body a span { transition: .25s ease; }
.service-card:hover .service-body a span { transform: translateX(6px); }
.services-action { display: flex; justify-content: center; margin-top: 48px; }
.services-action .btn { min-width: 360px; height: 64px; border-radius: 10px; font-size: 16px; }

/* =============================
   Trust
============================= */
.trust-section {
  position: relative;
  padding: 110px 0 80px;
  overflow: hidden;
  background: #020b14;
}
.trust-bg,
.contact-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/trust-bg.jpg');
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.trust-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,11,20,.98) 0%, rgba(2,11,20,.84) 42%, rgba(2,11,20,.45) 100%),
    linear-gradient(180deg, rgba(2,11,20,.30), rgba(2,11,20,.88));
  z-index: 1;
}
.trust-inner { position: relative; z-index: 2; }
.trust-head { max-width: 860px; margin-bottom: 70px; }
.trust-head h2 { font-size: clamp(38px, 4vw, 66px); line-height: 1.08; }
.trust-head p { margin-top: 28px; max-width: 720px; font-size: 22px; line-height: 1.55; color: var(--muted); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.trust-card {
  min-height: 310px;
  padding: 42px 34px;
  border-radius: 22px;
  background: rgba(8,25,41,.72);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
  transition: .35s ease;
}
.trust-card:hover { transform: translateY(-8px); border-color: #2ba6ff; box-shadow: 0 25px 70px rgba(21,151,255,.18); }
.trust-number { display: block; font-size: 58px; line-height: 1; font-weight: 900; color: #fff; margin-bottom: 18px; letter-spacing: -2px; }
.trust-small { font-size: 40px; letter-spacing: -1px; }
.trust-card h3 { color: var(--blue-2); text-transform: uppercase; letter-spacing: .08em; font-size: 15px; font-weight: 900; margin-bottom: 26px; }
.trust-card h3::after { content: ""; display: block; width: 100%; height: 1px; margin-top: 24px; background: rgba(255,255,255,.16); }
.trust-card p { font-size: 17px; line-height: 1.65; color: var(--muted); }

/* =============================
   Contact
============================= */
.contact-section {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  background: #020b14;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,11,20,.98) 0%, rgba(2,11,20,.90) 45%, rgba(2,11,20,.58) 100%),
    linear-gradient(180deg, rgba(2,11,20,.72), rgba(2,11,20,.96));
  z-index: 1;
}
.contact-inner { position: relative; z-index: 2; }
.contact-head { max-width: 780px; margin-bottom: 64px; }
.contact-head h2 { font-size: clamp(38px, 4vw, 66px); line-height: 1.08; }
.contact-head p { margin-top: 24px; font-size: 20px; line-height: 1.65; color: var(--muted); }
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: start;
}
.contact-info,
.contact-map-card,
.final-cta {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,25,41,.76);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
}
.contact-info {
  overflow: hidden;
  height: auto;
}
.contact-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  padding: 26px 30px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item > img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  flex-shrink: 0;
}
.contact-item small { display: block; font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.contact-item strong { display: block; font-size: 23px; line-height: 1.28; color: #fff; word-break: break-word; overflow-wrap: anywhere; }
.contact-item[href^="mailto:"] strong { white-space: nowrap; word-break: normal; overflow-wrap: normal; }
.contact-item p { margin-top: 8px; color: var(--muted); font-size: 16px; }
.contact-map-card { padding: 34px; }
.contact-map-card h3 { font-size: 28px; margin-bottom: 24px; }
.map-frame {
  height: 330px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.emergency-box {
  margin-top: 26px;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  gap: 22px;
  align-items: center;
  background: rgba(21,151,255,.10);
  border: 1px solid rgba(21,151,255,.26);
}
.emergency-box span {
  min-width: 88px;
  height: 88px;
  border-radius: 18px;
  background: linear-gradient(135deg, #138bec, #179fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
}
.emergency-box h4 { font-size: 24px; margin-bottom: 8px; }
.emergency-box p { color: var(--muted); line-height: 1.55; }
.final-cta {
  margin-top: 34px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-color: rgba(21,151,255,.38);
}
.final-cta > img { width: 86px; height: 86px; object-fit: contain; flex-shrink: 0; }
.final-cta span { color: var(--muted); font-size: 17px; }
.final-cta h3 { margin-top: 8px; font-size: 30px; line-height: 1.2; }
.final-cta .btn { min-width: 280px; height: 62px; border-radius: 10px; }

/* =============================
   Footer
============================= */
.site-footer {
  background: #020b14;
  border-top: 2px solid rgba(21,151,255,.75);
  padding: 80px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .9fr 1fr; gap: 60px; }
.footer-brand img { width: 190px; margin-bottom: 24px; }
.footer-brand p { max-width: 360px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.footer-col h4 { color: var(--blue-2); text-transform: uppercase; letter-spacing: .12em; font-size: 15px; margin-bottom: 16px; }
.footer-col a,
.footer-col span { display: block; color: var(--muted); margin-bottom: 14px; font-size: 16px; line-height: 1.5; transition: .25s ease; }
.footer-col a:hover { color: var(--blue-2); transform: translateX(4px); }
.footer-contact { display: flex !important; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.footer-contact img { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.footer-contact span { margin: 0; line-height: 1.6; color: var(--muted); }
.footer-contact:hover span { color: var(--blue-2); }
.footer-bottom {
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom p,
.footer-bottom a { color: var(--muted); font-size: 15px; }
.footer-bottom div { display: flex; gap: 28px; }
.footer-bottom a:hover { color: var(--blue-2); }

/* =============================
   Responsive
============================= */
@media (max-width: 1200px) {
  .container { width: min(100% - 48px, var(--max)); }
  .site-header { height: 110px; }
  .brand { min-width: 250px; }
  .brand-logo { width: 72px; height: 72px; }
  .brand-text strong { font-size: 42px; }
  .brand-text span { font-size: 10px; }
  .main-nav { gap: 26px; }
  .main-nav a { font-size: 13px; }
  .nav-phone { min-width: 178px; font-size: 14px; }
  .hero { padding-top: 110px; min-height: 830px; }
  .hero-copy { max-width: 660px; }
  .hero-subtitle { font-size: 21px; }
  .hero-features { gap: 22px; }
  .feature-item span { font-size: 14px; }
  .btn { min-width: 240px; height: 62px; font-size: 16px; }
}

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

@media (max-width: 1000px) {
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 30px; }
  .final-cta { flex-direction: column; align-items: flex-start; }
  .final-cta .btn { width: 100%; }
}

@media (max-width: 980px) {
  .site-header { height: 86px; }
  .site-header.scrolled { height: 76px; }
  .nav-wrap { gap: 16px; }
  .brand { min-width: auto; }
  .brand-logo { width: 58px; height: 58px; }
  .brand-text strong { font-size: 34px; }
  .brand-text span { font-size: 9px; }
  .menu-toggle { display: block; }
  .nav-phone { display: none; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(380px, 82vw);
    background: rgba(2,11,20,.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 120px 36px 36px;
    gap: 0;
    transition: .32s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,.4);
  }
  .main-nav.open { right: 0; }
  .main-nav a { width: 100%; padding: 22px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .main-nav a.active::after { display: none; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .hero { min-height: 860px; padding-top: 86px; align-items: flex-end; padding-bottom: 70px; }
  .hero-bg { background-position: 65% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(2,11,20,.96), rgba(2,11,20,.70) 62%, rgba(2,11,20,.35)), linear-gradient(180deg, rgba(2,11,20,.20), rgba(2,11,20,.72)); }
  .hero h1 { font-size: clamp(42px, 8vw, 64px); }
  .hero-subtitle { font-size: 20px; }
  .hero-features { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
  .hero-actions { flex-wrap: wrap; }
  .btn { width: 100%; max-width: 350px; }
  .intro-section { padding: 90px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .intro-image,
  .intro-image img { height: 230px; min-height: 230px; }
}

@media (max-width: 768px) {
  .hero { display: block; min-height: auto; padding-top: 78px; padding-bottom: 0; background: #020b14; }
  .hero-bg { display: none; }
  .hero-mobile-image {
    display: block;
    width: 100%;
    height: 250px;
    background-image: url('../images/hero-slider.png');
    background-size: cover;
    background-position: center top;
  }
  .hero-content { padding: 26px 0 42px; }
  .hero-copy { max-width: 100%; }
  .hero h1 { font-size: 34px; line-height: 1.08; }
  .hero-subtitle { font-size: 16px; }
  .hero-features { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; max-width: none; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--max)); }
  .site-header { height: 78px; }
  .brand-logo { width: 48px; height: 48px; }
  .brand-text strong { font-size: 28px; }
  .brand-text span { font-size: 7px; letter-spacing: .04em; }
  .hero h1 { font-size: 34px; letter-spacing: .02em; }
  .hero-subtitle { font-size: 16px; line-height: 1.55; margin-top: 20px; }
  .hero-subtitle br { display: none; }
 .hero-features {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  max-width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.feature-item span {
  font-size: 13px;
  line-height: 1.25;
}




  .feature-item svg { width: 30px; height: 30px; }

  .hero-actions { margin-top: 34px; gap: 14px; }
  .btn { height: 58px; max-width: none; font-size: 14px; min-width: auto; }
  .btn span { font-size: 24px; }

  .intro-section { padding: 70px 0; }
  .intro-image,
  .intro-image img { min-height: 230px; border-radius: 18px; }
  .intro-badge { width: 130px; height: 130px; left: 20px; bottom: 20px; }
  .intro-badge strong { font-size: 42px; }
  .intro-content h2 { font-size: 29px; line-height: 1.08; letter-spacing: -0.02em; }
  .intro-content p { font-size: 16px; }
  .intro-points { grid-template-columns: 1fr; }
  .intro-btn { min-width: auto; max-width: none; width: 100%; }

  .services-preview { padding: 80px 0; }
  .services-head { text-align: left; margin-bottom: 42px; }
  .services-head h2 { font-size: 34px; }
  .services-head p { font-size: 17px; }
  .services-grid { grid-template-columns: 1fr; gap: 22px; }
  .service-card { border-radius: 18px; }
  .service-img { height: 191px; }
  .service-body { padding: 26px 24px 28px; }
  .service-body h3 { font-size: 25px; }
  .service-body p { font-size: 16px; min-height: auto; }
  .services-action .btn { min-width: auto; width: 100%; height: 58px; font-size: 14px; }

  .trust-section { padding: 70px 0; margin-top: -25px; }
  .trust-bg,
  .contact-bg { background-position: center; }
  .trust-overlay { background: linear-gradient(180deg, rgba(2,11,20,.92), rgba(2,11,20,.96)), rgba(2,11,20,.85); }
  .trust-head { margin-bottom: 42px; }
  .trust-head h2 { font-size: 30px; line-height: 1.08; }
  .trust-head p { font-size: 16px; line-height: 1.7; }
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .trust-card { min-height: auto; padding: 26px 24px; border-radius: 18px; }
  .trust-number { font-size: 52px; line-height: 1; font-weight: 900; letter-spacing: -2px; }
  .trust-small { font-size: 40px; letter-spacing: -1px; }

  .contact-section { padding: 80px 0 60px; }
  .contact-head { margin-bottom: 42px; }
  .contact-head h2 { font-size: 34px; }
  .contact-head p { font-size: 16px; }
  .contact-item { grid-template-columns: 56px 1fr; gap: 16px; padding: 24px 20px; }
  .contact-item > img { width: 54px; height: 54px; }
  .contact-item strong { font-size: 18px; }
  .contact-item[href^="mailto:"] strong { font-size: clamp(12px, 3.55vw, 16px); letter-spacing: -.02em; }
  .contact-map-card { padding: 22px; }
  .map-frame { height: 260px; }
  .emergency-box { flex-direction: column; align-items: flex-start; padding: 22px; }
  .emergency-box span { min-width: 72px; height: 72px; font-size: 28px; }
  .final-cta { padding: 24px; }
  .final-cta > img { width: 54px; height: 54px; }
  .final-cta h3 { font-size: 24px; }

  .site-footer { padding: 60px 0 24px; }
  .footer-brand img { width: 180px; }
  .footer-grid { gap: 30px; }
  .footer-col h4 { margin-bottom: 16px; }
  .footer-col a,
  .footer-col span { margin-bottom: 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; margin-top: 44px; }
}

@media (max-width: 420px) {
  .brand-text strong { font-size: 24px; }
  .brand-logo { width: 44px; height: 44px; }
  .hero h1 { font-size: 32px; }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 18px;
  }

  .feature-item {
    gap: 10px;
  }

  .feature-item svg {
    width: 28px;
    height: 28px;
  }

  .feature-item span {
    font-size: 12px;
    line-height: 1.2;
  }
}















/* ===================================================
   PAGE HERO
=================================================== */

.page-hero{
    position:relative;
    min-height:620px;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding-top:146px;
}

.page-hero-bg{
    position:absolute;
    inset:0;
    background:url("../images/leistungen-hero.jpg") center center/cover;
    z-index:-2;
}

.page-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(90deg,
    rgba(2,11,20,.96) 0%,
    rgba(2,11,20,.84) 30%,
    rgba(2,11,20,.42) 62%,
    rgba(2,11,20,.18) 100%);
    z-index:-1;
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:28px;
    font-size:14px;
    color:rgba(255,255,255,.75);
}

.breadcrumb a{
    transition:.25s;
}

.breadcrumb a:hover{
    color:var(--blue-2);
}

.page-hero-content{
    max-width:760px;
}

.page-hero-content h1{
    font-size:clamp(48px,5vw,76px);
    line-height:1.08;
    font-weight:900;
    letter-spacing:-.03em;
    text-transform:uppercase;
}

.page-hero-content h1 span{
    color:var(--blue-2);
}

.page-hero-content p{
    margin-top:28px;
    max-width:620px;
    font-size:21px;
    line-height:1.7;
    color:var(--muted);
}

.page-hero .hero-actions{
    margin-top:48px;
}









@media(max-width:980px){

.page-hero{
    min-height:520px;
    padding-top:86px;
}

}

@media(max-width:768px){

.page-hero{

    display:block;
    padding-top:78px;
    min-height:auto;
}

.page-hero-bg{

    height:260px;
    position:relative;
}

.page-hero-overlay{

    height:260px;
    position:absolute;
    top:78px;
}

.page-hero-content{

    padding:35px 0 60px;
}

.page-hero-content h1{

    font-size:36px;
}

.page-hero-content p{

    font-size:16px;
}

.breadcrumb{

    margin-top:24px;
    margin-bottom:18px;
}

}











.page-hero-simple {
  padding: 230px 0 110px;
  background:
    linear-gradient(90deg, rgba(2,11,20,.96), rgba(2,11,20,.82)),
    url("../images/trust-bg.jpg") center/cover;
}

.page-hero-simple h1 {
  max-width: 850px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.page-hero-simple p {
  max-width: 720px;
  margin-top: 24px;
  font-size: 21px;
  line-height: 1.65;
  color: var(--muted);
}

.leistungen-page-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #061423 0%, #020b14 100%);
}

.leistungen-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.leistung-page-card {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8,25,41,.95), rgba(4,15,26,.96));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 70px rgba(0,0,0,.25);
}

.leistung-page-card img {
  width: 100%;
  height: 191px;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.08) brightness(.9);
}

.leistung-page-card div {
  padding: 30px;
}

.leistung-page-card h3 {
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.leistung-page-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 14px;
  background: var(--blue-2);
  border-radius: 99px;
}

.leistung-page-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.cta-simple {
  padding: 90px 0;
  background: #020b14;
}

.cta-simple-inner {
  padding: 44px;
  border-radius: 24px;
  border: 1px solid rgba(21,151,255,.35);
  background: rgba(8,25,41,.76);
  text-align: center;
}

.cta-simple h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.cta-simple p {
  margin: 18px auto 30px;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

@media (max-width: 640px) {
  .page-hero-simple {
    padding: 130px 0 70px;
  }

  .page-hero-simple h1 {
    font-size: 36px;
  }

  .page-hero-simple p {
    font-size: 16px;
  }

  .leistungen-page-section {
    padding: 70px 0;
  }

  .leistungen-page-grid {
    grid-template-columns: 1fr;
  }

  .leistung-page-card {
    border-radius: 18px;
  }

  .leistung-page-card div {
    padding: 26px 24px;
  }

  .leistung-page-card h3 {
    font-size: 24px;
  }

  .cta-simple {
    padding: 70px 0;
  }

  .cta-simple-inner {
    padding: 30px 22px;
  }
}




.leistungen-simple-page{
  padding:220px 0 120px;
  background:
    radial-gradient(circle at top right, rgba(21,151,255,.12), transparent 36%),
    linear-gradient(180deg,#020b14 0%,#061423 100%);
}

.leistungen-simple-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:70px;
  align-items:center;
}

.leistungen-simple-image{
  border-radius:24px;
  overflow:hidden;
  min-height:430px;
  box-shadow:0 35px 90px rgba(0,0,0,.42);
  border:1px solid rgba(255,255,255,.10);
}

.leistungen-simple-image img{
  width:100%;
  height:100%;
  min-height:430px;
  object-fit:cover;
  filter:contrast(1.08) saturate(1.1) brightness(.9);
}

.leistungen-simple-content h1{
  font-size:clamp(34px,3.8vw,58px);
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:28px;
}

.leistungen-simple-content p{
  margin-bottom:18px;
  font-size:18px;
  line-height:1.7;
  color:var(--muted);
}

.leistungen-simple-content .btn{
  margin-top:24px;
  max-width:280px;
  height:58px;
  font-size:15px;
  border-radius:10px;
}

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

  .leistungen-simple-page{
    padding:130px 0 80px;
  }

  .leistungen-simple-image,
  .leistungen-simple-image img{
    min-height:280px;
  }
}

@media(max-width:640px){
  .leistungen-simple-page{
    padding:115px 0 70px;
  }

  .leistungen-simple-content h1{
    font-size:32px;
  }

  .leistungen-simple-content p{
    font-size:16px;
  }

  .leistungen-simple-content .btn{
    max-width:none;
    width:100%;
  }
}





.about-simple-page{
  padding:220px 0 120px;
  background:
    radial-gradient(circle at top left, rgba(21,151,255,.12), transparent 36%),
    linear-gradient(180deg,#020b14 0%,#061423 100%);
}

.about-simple-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:center;
}

.about-simple-image{
  border-radius:24px;
  overflow:hidden;
  min-height:520px;
  box-shadow:0 35px 90px rgba(0,0,0,.42);
  border:1px solid rgba(255,255,255,.10);
}

.about-simple-image img{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
  filter:contrast(1.08) saturate(1.1) brightness(.9);
}

.about-simple-content h1{
  font-size:clamp(34px,3.8vw,58px);
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:28px;
}

.about-simple-content p{
  margin-bottom:18px;
  font-size:18px;
  line-height:1.7;
  color:var(--muted);
}

.about-simple-content .btn{
  margin-top:24px;
  max-width:300px;
  height:58px;
  font-size:15px;
  border-radius:10px;
}

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

  .about-simple-page{
    padding:130px 0 80px;
  }

  .about-simple-image,
  .about-simple-image img{
    min-height:300px;
  }
}

@media(max-width:640px){
  .about-simple-page{
    padding:115px 0 70px;
    background:
      linear-gradient(180deg,
        rgba(2,11,20,.54) 0,
        rgba(2,11,20,.42) 42vw,
        rgba(2,11,20,.70) 72vw,
        #020b14 100vw,
        #061423 100%),
      url("../images/certificates/1.jpg") center 80px/100% auto no-repeat;
  }

  .about-simple-image{
    display:none;
  }

  .about-simple-content h1{
    font-size:32px;
  }

  .about-simple-content p{
    font-size:16px;
  }

  .about-simple-content .btn{
    max-width:none;
    width:100%;
  }
}




















.certificates-page{
  position:relative;
  min-height:100vh;
  padding:220px 0 120px;
  overflow:hidden;
  background:#020b14;
}

.cert-bg{
  position:absolute;
  inset:0;
  background:url("../images/certificates/1.jpg") center 30%/cover no-repeat;
  z-index:0;
}

.cert-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(2,11,20,.86),rgba(2,11,20,.58),rgba(2,11,20,.78)),
    linear-gradient(180deg,rgba(2,11,20,.70) 0%,rgba(2,11,20,.42) 42%,rgba(2,11,20,.94) 100%);
  z-index:1;
}

.cert-inner{
  position:relative;
  z-index:2;
  text-align:center;
}

.cert-inner h1{
  font-size:clamp(40px,5vw,72px);
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.03em;
}

.cert-inner p{
  max-width:720px;
  margin:24px auto 70px;
  font-size:20px;
  line-height:1.65;
  color:var(--muted);
}

.certificates-slider{
  width:100%;
  padding:40px 0 80px;
}

.certificates-slider .swiper-slide{
  width:430px;
  height:620px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:24px;
  overflow:hidden;
  background:rgba(8,25,41,.82);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 35px 90px rgba(0,0,0,.45);
  cursor:pointer;
}

.certificates-slider .swiper-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.certificates-slider .swiper-slide:not(.swiper-slide-active){
  opacity:.35;
  filter:blur(.2px) brightness(.75);
}

.cert-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.88);
  padding:30px;
}

.cert-lightbox.active{
  display:flex;
}

.cert-lightbox img{
  max-width:90vw;
  max-height:90vh;
  object-fit:contain;
  border-radius:14px;
  box-shadow:0 30px 90px rgba(0,0,0,.55);
}

.cert-close{
  position:absolute;
  top:26px;
  right:34px;
  width:54px;
  height:54px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(8,25,41,.9);
  color:#fff;
  font-size:38px;
  line-height:1;
  border-radius:50%;
  cursor:pointer;
}

@media(max-width:640px){
  .certificates-page{
    padding:130px 0 80px;
  }

  .cert-bg{
    inset:0 0 auto;
    height:620px;
    background-size:135% auto;
    background-position:center top;
    background-color:#020b14;
  }

  .cert-overlay{
    background:
      linear-gradient(180deg,
        rgba(2,11,20,.78) 0,
        rgba(2,11,20,.54) 250px,
        rgba(2,11,20,.90) 440px,
        #020b14 620px,
        #020b14 100%),
      linear-gradient(90deg,rgba(2,11,20,.80),rgba(2,11,20,.56),rgba(2,11,20,.74));
  }

  .cert-inner p{
    font-size:16px;
    margin-bottom:40px;
  }

  .certificates-slider .swiper-slide{
    width:290px;
    height:430px;
  }
}
