:root {
  --green: #00ae34;
  --green-dark: #008b29;
  --blue: #303e5b;
  --blue-soft: #59728a;
  --ink: #1d2937;
  --muted: #647184;
  --line: #dfe6ea;
  --paper: #ffffff;
  --wash: #f3f7f5;
  --shadow: 0 18px 55px rgba(31, 48, 67, .12);
  --radius: 16px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green-dark); text-decoration-thickness: .08em; text-underline-offset: .16em; }
a:hover { color: var(--green); }
button, input, select, textarea { font: inherit; }
h1, h2, h3 { margin: 0 0 .7em; color: var(--blue); line-height: 1.15; }
h1 { font-size: clamp(2.25rem, 5vw, 4.35rem); font-weight: 300; letter-spacing: -.045em; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 350; letter-spacing: -.03em; }
h3 { font-size: 1.28rem; }
p, ul { margin: 0 0 1.15em; }
ul { padding-left: 1.25em; }
.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 900px); margin-inline: auto; }
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--soft { background: var(--wash); }
.section-title { text-align: center; margin-bottom: 44px; }
.section-title span { display: block; margin-bottom: 9px; color: var(--green-dark); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.lead { color: var(--blue-soft); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.eyebrow { color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 24px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: .2s ease;
}
.button:hover { color: #fff; background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); }
.button--ghost { color: var(--green-dark); background: transparent; }
.button--light { color: var(--blue); background: #fff; border-color: #fff; }
.button--light:hover { color: #fff; background: transparent; border-color: #fff; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 2000; padding: 8px 14px; color: #fff; background: var(--blue); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.topbar { color: #edf4f8; background: var(--blue); font-size: .82rem; }
.topbar__inner { display: flex; justify-content: flex-end; gap: 26px; min-height: 39px; align-items: center; }
.topbar a { color: #fff; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(48,62,91,.1); backdrop-filter: blur(12px); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 96px; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 180px; }
.main-nav ul { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.main-nav li { position: relative; }
.main-nav a { display: block; padding: 12px 13px; color: var(--blue); font-size: .94rem; font-weight: 700; text-decoration: none; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--green-dark); }
.main-nav a[aria-current="page"]::after { content: ""; position: absolute; right: 13px; bottom: 4px; left: 13px; height: 2px; background: var(--green); }
.main-nav .submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  display: block;
  min-width: 245px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: translateY(8px);
  transition: .18s ease;
}
.main-nav li:hover > .submenu, .main-nav li:focus-within > .submenu { visibility: visible; opacity: 1; transform: translateY(0); }
.main-nav .submenu a { padding: 8px 10px; font-size: .88rem; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; color: #fff; background: var(--blue); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; transition: .2s; }

.hero { position: relative; min-height: clamp(520px, 70vh, 760px); overflow: hidden; color: #fff; background: #18253b; }
.hero__slides, .hero__slide, .hero__overlay { position: absolute; inset: 0; }
.hero__slide { opacity: 0; background-position: center; background-size: cover; transform: scale(1.025); transition: opacity 1s ease, transform 7s ease; }
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__overlay { background: linear-gradient(90deg, rgba(17,31,54,.78), rgba(17,31,54,.28) 62%, rgba(17,31,54,.12)); }
.hero__content { position: relative; z-index: 2; display: grid; align-content: center; min-height: clamp(520px, 70vh, 760px); padding-block: 80px; }
.hero__panel { max-width: 760px; }
.hero h1 { margin: 0 0 20px; color: #fff; font-weight: 700; letter-spacing: -.055em; }
.hero h1 span { display: block; color: #74e092; font-weight: 300; }
.hero .lead { max-width: 700px; color: #f2f6f8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__dots { position: absolute; right: 0; bottom: 25px; left: 0; z-index: 3; display: flex; justify-content: center; gap: 9px; }
.hero__dot { width: 11px; height: 11px; padding: 0; border: 2px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; }
.hero__dot.is-active { background: var(--green); border-color: var(--green); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; display: flex; flex-direction: column; min-height: 270px; padding: 28px; overflow: hidden; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 25px rgba(30,48,67,.06); text-decoration: none; transition: .25s ease; }
.service-card:hover { color: var(--ink); border-color: rgba(0,174,52,.4); box-shadow: var(--shadow); transform: translateY(-6px); }
.service-card__icon { display: grid; width: 52px; height: 52px; margin-bottom: 22px; place-items: center; color: #fff; background: var(--green); border-radius: 14px; font-size: 1.45rem; font-weight: 800; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .96rem; }
.service-card__more { margin-top: auto; color: var(--green-dark); font-size: .9rem; font-weight: 800; }

.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: clamp(35px, 7vw, 90px); align-items: center; }
.split__visual { min-height: 420px; overflow: hidden; background: var(--blue); border-radius: 28px; box-shadow: var(--shadow); }
.split__visual img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.callout { padding: clamp(28px, 4vw, 55px); color: #fff; background: var(--blue); border-radius: 26px; }
.callout h2, .callout p { color: #fff; }

.logo-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.logo-strip img { width: 100%; max-width: 150px; max-height: 65px; margin: auto; object-fit: contain; filter: grayscale(1); opacity: .72; transition: .2s; }
.logo-strip img:hover { filter: grayscale(0); opacity: 1; }

.page-hero { position: relative; min-height: 340px; display: grid; place-items: center; color: #fff; background: var(--blue) center / cover; isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(24,38,62,.94), rgba(24,38,62,.55)); }
.page-hero h1 { margin: 12px 0; color: #fff; }
.page-hero p { margin: 0; color: #edf4f8; font-size: 1.15rem; }
.breadcrumbs { color: rgba(255,255,255,.75); font-size: .85rem; }
.breadcrumbs a { color: #fff; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: clamp(34px, 6vw, 80px); align-items: center; }
.content-grid img { width: 100%; border: 10px solid #fff; border-radius: 18px; box-shadow: var(--shadow); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.feature { padding: 26px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--green); border-radius: 12px; }
.feature h3 { margin-bottom: 8px; }
.feature p { margin: 0; color: var(--muted); }

.prose { color: #344152; }
.prose h2 { margin-top: 1.65em; margin-bottom: .6em; font-size: clamp(1.55rem, 2.5vw, 2.15rem); }
.prose h3 { margin-top: 1.4em; }
.prose li { margin-bottom: .45em; }
.prose img { margin: 25px auto; border-radius: 12px; }
.prose--center { text-align: center; }
.legal { font-size: .96rem; }
.legal h2 { padding-top: 18px; border-top: 1px solid var(--line); }

.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner-card { display: flex; flex-direction: column; min-height: 250px; padding: 22px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.partner-card img { width: 100%; height: 105px; margin-bottom: 18px; object-fit: contain; }
.partner-card h3 { margin: 0 0 6px; font-size: 1rem; }
.partner-card a { margin-top: auto; font-size: .87rem; }

.news-list { display: grid; gap: 20px; }
.news-item { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 25px rgba(30,48,67,.05); }
.news-item summary { display: grid; grid-template-columns: 180px 1fr auto; gap: 24px; align-items: center; min-height: 150px; padding: 0 26px 0 0; cursor: pointer; list-style: none; }
.news-item summary::-webkit-details-marker { display: none; }
.news-item summary img { width: 180px; height: 150px; object-fit: cover; }
.news-item time { display: block; color: var(--green-dark); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.news-item h2 { margin: 5px 0; font-size: 1.35rem; }
.news-item summary p { margin: 0; color: var(--muted); font-size: .93rem; }
.news-item__plus { display: grid; width: 40px; height: 40px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; font-size: 1.3rem; }
.news-item[open] .news-item__plus { transform: rotate(45deg); }
.news-item__body { padding: 32px; border-top: 1px solid var(--line); }
.news-item__body img { max-width: 440px; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0; }
.contact-card { padding: 26px; color: var(--ink); background: var(--wash); border-radius: 14px; text-align: center; text-decoration: none; }
.contact-card strong { display: block; color: var(--blue); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: clamp(25px, 5vw, 48px); background: var(--wash); border-radius: 20px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--blue); font-weight: 750; }
.field input:not([type="checkbox"]), .field select, .field textarea { width: 100%; padding: 13px 15px; color: var(--ink); background: #fff; border: 1px solid #becad1; border-radius: 8px; }
.field input:not([type="checkbox"]):focus, .field textarea:focus { outline: 3px solid rgba(0,174,52,.2); border-color: var(--green); }
.field input[type="checkbox"] { width: 1.1em; height: 1.1em; margin: 0 .4em 0 0; accent-color: var(--green); vertical-align: -.15em; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: .88rem; }

.site-footer { color: #dbe5eb; background: #26354c; }
.site-footer__main { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 60px; padding: 58px 0; }
.site-footer h2 { color: #fff; font-size: 1.15rem; font-weight: 750; }
.site-footer p { margin-bottom: .5em; }
.site-footer a { color: #fff; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer__bottom { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: .84rem; }
.site-footer__bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 15px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.quick-actions { position: fixed; right: 18px; bottom: 18px; z-index: 700; display: grid; gap: 8px; }
.quick-actions a { display: grid; width: 48px; height: 48px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; box-shadow: 0 8px 25px rgba(0,0,0,.2); text-decoration: none; font-weight: 850; }
.empty-state { padding: 34px; text-align: center; background: var(--wash); border-radius: 16px; }

@media (max-width: 1020px) {
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 96px 0 auto 0; max-height: calc(100vh - 96px); padding: 20px; overflow: auto; visibility: hidden; opacity: 0; background: #fff; border-top: 1px solid var(--line); transform: translateY(-15px); transition: .2s ease; }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav ul { display: block; }
  .main-nav a { padding: 11px; }
  .main-nav a[aria-current="page"]::after { display: none; }
  .main-nav .submenu { position: static; display: block; min-width: 0; padding: 0 0 8px 18px; visibility: visible; opacity: 1; border: 0; box-shadow: none; transform: none; }
  .main-nav .submenu a { color: var(--blue-soft); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-strip { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 30px), var(--content)); }
  .topbar { display: none; }
  .site-header__inner { min-height: 78px; }
  .brand img { width: 140px; }
  .main-nav { inset-block-start: 78px; max-height: calc(100vh - 78px); }
  .hero, .hero__content { min-height: 610px; }
  .hero__overlay { background: rgba(20,34,55,.66); }
  .service-grid, .feature-grid, .split, .content-grid, .site-footer__main, .contact-form { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
  .site-footer__main { gap: 30px; }
  .news-item summary { grid-template-columns: 110px 1fr; gap: 16px; padding-right: 16px; }
  .news-item summary img { width: 110px; height: 130px; }
  .news-item__plus { display: none; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 55px 0; }
  .service-grid, .partner-grid { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .news-item summary { grid-template-columns: 1fr; padding: 0; }
  .news-item summary img { width: 100%; height: 170px; }
  .news-item summary > div { padding: 0 18px 20px; }
  .news-item__body { padding: 22px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
  .topbar, .site-header, .quick-actions, .site-footer, .hero__dots, .button { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .page-hero { min-height: auto; padding: 25px 0; color: #000; background: none; }
  .page-hero::before { display: none; }
  .page-hero h1, .page-hero p { color: #000; }
  .section { padding: 25px 0; }
}

/* Live-Auftritt: kantige, kompakte Gestaltung der aktuellen Website */
@font-face {
  font-family: "fontello";
  src: url("../fonts/fontello.woff2") format("woff2"), url("../fonts/fontello.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^="icon-"]::before, [class*=" icon-"]::before {
  display: inline-block;
  width: 1em;
  margin-right: .3em;
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  text-transform: none;
  speak: none;
}
.icon-location::before { content: "\e800"; }
.icon-phone::before { content: "\e806"; }
.icon-cloud::before { content: "\e808"; }
.icon-lock::before { content: "\e809"; }
.icon-download::before { content: "\e819"; }
.icon-facebook::before { content: "\f09a"; }
.icon-menu::before { content: "\f0c9"; }
.icon-mail-alt::before { content: "\f0e0"; }
.icon-sitemap::before { content: "\f0e8"; }
.icon-ticket::before { content: "\f145"; }
.icon-xing::before { content: "\f168"; }
.icon-instagram::before { content: "\f16d"; }
.icon-cubes::before { content: "\f1b3"; }
.icon-history::before { content: "\f1da"; }
.icon-chart-pie::before { content: "\f200"; }
.icon-connectdevelop::before { content: "\f20e"; }

body {
  color: #666;
  background: #333;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
}
h1, h2, h3 { color: #1d1d1d; text-transform: uppercase; }
.container { width: min(calc(100% - 70px), 1155px); }
.narrow { width: min(calc(100% - 70px), 1030px); }
.section { padding: 35px 0 70px; }
.section--soft { background: transparent; }
.section-title { margin: 0 auto 45px; }
.section-title span { color: #00ae34; }
.section-title h2 { margin: 0; font-size: 30px; font-weight: 700; }
.lead { color: #59728a; font-size: 1.08rem; }
.eyebrow { color: #00ae34; }
.button { min-height: 0; padding: 13px 30px; border: 0; border-radius: 0; background: #00af34; font-size: 14px; text-transform: uppercase; }
.button:hover { background: #1d1d1d; transform: none; }
.button--ghost { color: #fff; background: #00af34; }
.button--light { color: #fff; background: #00af34; }

.topbar { color: #1d1d1d; background: #fff; font-size: 12px; }
.topbar__inner { justify-content: flex-start; min-height: 45px; gap: 55px; }
.topbar__inner > span::before, .topbar__inner > a::before { color: #00b036; font-size: 15px; }
.topbar a { color: #1d1d1d; }
.topbar__socials { display: flex; gap: 5px; margin-left: auto; }
.topbar__socials a { display: grid; width: 25px; height: 25px; place-items: center; overflow: hidden; color: #1d1d1d; background: #e8e8e8; border-radius: 3px; text-decoration: none; }
.topbar__socials a::before { width: auto; margin: 0; }
.topbar__socials a:hover { color: #fff; background: #1d1d1d; }
.site-header { position: sticky; top: 0; color: #fff; background: #1d1d1d; border: 0; backdrop-filter: none; }
.site-header__inner { position: relative; min-height: 105px; }
.brand { position: absolute; top: 0; left: 0; z-index: 15; display: block; width: 285px; text-align: center; }
.brand img { width: 243px; height: 121px; margin: 14px auto 7px; object-fit: contain; }
.main-nav { width: 100%; }
.main-nav > ul { justify-content: flex-end; gap: 35px; padding-left: 330px; }
.main-nav a { padding: 15px 0; color: #fff; font-size: 14px; font-weight: 600; text-transform: uppercase; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: #00b036; }
.main-nav a[aria-current="page"]::after { display: none; }
.main-nav .submenu { top: 45px; left: 50%; min-width: 180px; margin-left: -90px; padding: 10px 0; background: #1d1d1d; border: 1px solid rgba(0,176,54,.5); border-bottom: 5px solid #00b036; border-radius: 0; box-shadow: 0 5px 6px rgba(0,0,0,.25); }
.main-nav .submenu a { padding: 6px 9px; color: #fff; font-size: 13px; text-align: center; text-transform: none; }
.main-nav .submenu a:hover { color: #fff; background: rgba(255,255,255,.2); }
.menu-toggle { background: #00af34; border-radius: 0; }

main { position: relative; z-index: 5; margin-bottom: 325px; background: #f2f3f7; box-shadow: 0 5px 5px rgba(0,0,0,.75); }
.hero { min-height: 700px; background: #aaa; border-bottom: 5px solid #00b036; }
.hero__content { justify-items: center; align-content: center; min-height: 700px; text-align: center; }
.hero__overlay { background: rgba(0,0,0,.06); }
.hero__panel { position: relative; display: inline-block; max-width: 650px; padding: 35px 65px; background:
  linear-gradient(#00af36,#00af36) left top / 40px 3px no-repeat,
  linear-gradient(#00af36,#00af36) left top / 3px 40px no-repeat,
  linear-gradient(#00af36,#00af36) right top / 40px 3px no-repeat,
  linear-gradient(#00af36,#00af36) right top / 3px 40px no-repeat,
  linear-gradient(#00af36,#00af36) left bottom / 40px 3px no-repeat,
  linear-gradient(#00af36,#00af36) left bottom / 3px 40px no-repeat,
  linear-gradient(#00af36,#00af36) right bottom / 40px 3px no-repeat,
  linear-gradient(#00af36,#00af36) right bottom / 3px 40px no-repeat;
  text-shadow: 2px 1px 1px rgba(0,0,0,.6);
}
.hero__headline { margin: 0; color: #fff; font-family: "Arial Narrow", "Segoe UI", sans-serif; font-size: 58px; font-weight: 600; line-height: 1.1; text-transform: uppercase; letter-spacing: 0; }
.hero__headline span { display: block; margin-top: 2px; color: #fff; font-size: 26px; font-weight: 300; text-transform: none; }
.hero__dots, .hero__actions, .hero .eyebrow, .hero .lead { display: none; }

.home-title h1, .page-title h1 { margin: 0 auto 55px; padding: 0 35px; color: #00ae34; font-size: 50px; font-weight: 300; line-height: 1.2; text-align: center; text-transform: uppercase; letter-spacing: 0; }
.home-title h1 span, .page-title h1 span { display: block; margin-top: 0; color: #59728a; font-size: 25px; text-transform: none; }
.home #main > .section:first-of-type { padding-top: 45px; }
.home .section-title h2 { font-size: 30px; }

.service-grid { grid-template-columns: repeat(3, 300px); justify-content: center; gap: 35px 34px; max-width: 1155px; margin-inline: auto; }
.service-card { display: grid; grid-template-columns: 75px 1fr; grid-template-rows: 70px 1fr; min-height: 170px; padding: 30px; color: #666; background: #fff; border: 0; border-radius: 0; box-shadow: none; text-align: left; cursor: pointer; transition: .5s ease; }
.service-card:hover { color: #666; border: 0; box-shadow: 0 20px 20px rgba(0,0,0,.2); transform: translateY(-20px); }
.service-card__icon { display: block; width: 75px; height: 70px; margin: 0; color: #00ae34; background: transparent; border-radius: 0; font-size: 58px; line-height: 70px; }
.service-card__icon::before { width: auto; margin: 0; }
.service-card h3 { align-self: center; margin: 0; padding-left: 15px; color: #1d1d1d; font-size: 20px; font-weight: 700; text-transform: none; }
.service-card p { grid-column: 1 / -1; margin: 20px 0 0; color: #666; font-size: 13px; line-height: 1.4; }
.service-card__more { display: none; }

.bigbox-section { padding-top: 0; }
.bigbox { position: relative; max-width: 1030px; margin: 35px auto; color: #ccc; }
.bigbox__bg { position: absolute; inset: 25px 0; background: #00af34; }
.bigbox__inner { position: relative; z-index: 1; max-width: 870px; margin: 0 auto; padding: 80px; color: #ccc; background: #1d1d1d; box-shadow: 0 0 25px 2px rgba(0,0,0,.25); }
.bigbox__inner h2 { margin: 0 0 45px; color: #fff; font-size: 40px; font-weight: 300; text-align: center; }
.bigbox__inner p { line-height: 1.5; }
.bigbox__link { margin: 55px 0 0 !important; text-align: center; }
.bigbox__link a { display: inline-block; padding: 14px 31px; color: #fff; background: #00af34; font-weight: 600; text-decoration: none; text-transform: uppercase; }
.bigbox__link a:hover { color: #1d1d1d; background: #fff; }

.logo-strip { grid-template-columns: repeat(6, 1fr); gap: 25px; }
.logo-strip img { max-height: 80px; filter: none; opacity: 1; }
.page-hero { min-height: 200px; background-position: center; border-bottom: 5px solid #00b036; }
.page-hero::before { background: rgba(0,0,0,.08); }
.page-title { padding-top: 35px; }
.page-title .breadcrumbs { margin-bottom: 22px; color: #777; font-size: 12px; }
.page-title .breadcrumbs a { color: #00ae34; }
.content-grid { grid-template-columns: 70fr 30fr; gap: 30px; max-width: 1030px; margin-inline: auto; align-items: start; }
.content-grid h2 { margin-top: 0; font-size: 25px; }
.content-grid img { border: 7px solid #fff; border-radius: 0; box-shadow: none; }
.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 35px; max-width: 960px; margin: 0 auto; }
.feature { min-height: 170px; padding: 30px; background: #fff; border: 0; border-radius: 0; transition: .5s ease; }
.feature:hover { box-shadow: 0 20px 20px rgba(0,0,0,.2); transform: translateY(-12px); }
.feature h3 { color: #1d1d1d; font-size: 20px; text-transform: none; }
.feature p { color: #666; font-size: 13px; }
.callout { padding: 55px 70px; color: #ccc; background: #1d1d1d; border-radius: 0; box-shadow: 25px 25px 0 #00af34; }
.callout h2 { font-size: 30px; font-weight: 300; }
.prose h2 { color: #1d1d1d; font-size: 25px; text-transform: none; }

.partner-grid { grid-template-columns: repeat(4, 230px); justify-content: center; gap: 16px 12px; }
.partner-card { min-height: 250px; padding: 10px; background: #fff; border: 0; border-radius: 0; transition: .5s ease; }
.partner-card:hover { box-shadow: 0 20px 20px rgba(0,0,0,.2); transform: translateY(-15px); }
.partner-card h3 { font-size: 14px; text-transform: none; }

.news-list { gap: 30px; max-width: 1030px; }
.news-item { background: transparent; border: 0; border-radius: 0; box-shadow: none; transition: .4s ease; }
.news-item:hover, .news-item[open] { background: #fff; box-shadow: 0 0 7px rgba(0,0,0,.25); }
.news-item summary { grid-template-columns: 150px 1fr auto; min-height: 100px; padding: 0 20px 0 0; }
.news-item summary img { width: 150px; height: 100px; border: 2px solid #fff; }
.news-item h2 { margin: 2px 0; font-size: 18px; font-weight: 600; text-transform: none; }
.news-item time { font-size: 11px; letter-spacing: 0; }
.news-item__plus { width: 28px; height: 28px; background: #00af34; border-radius: 0; }
.news-item__body { padding: 30px; }

.contact-card, .contact-form { background: #fff; border-radius: 0; }
.contact-card strong { color: #1d1d1d; }
.field label { color: #1d1d1d; }

.site-footer { position: fixed; inset: auto 0 0; z-index: 1; height: 325px; color: #fff; background: #333; font-size: 14px; }
.site-footer__main { position: relative; grid-template-columns: 270px 270px 1fr; gap: 0; max-width: 1155px; padding: 53px 35px; }
.site-footer__main::after { content: ""; position: absolute; top: 67px; right: 40px; width: 260px; height: 138px; background: url("../img/logo-footer.png") center / cover no-repeat; }
.site-footer h2 { margin: 0 0 15px; color: #fff; font-size: 16px; text-transform: uppercase; }
.site-footer__main > div { padding-right: 50px; }
.site-footer__bottom { position: absolute; right: 0; bottom: 0; left: 0; padding: 20px 0; color: #ccc; background: #1d1d1d; border: 0; }
.site-footer__bottom a { color: #ccc; }
.site-footer__bottom .container { align-items: center; }
.footer-socials { display: flex; gap: 5px; margin-left: auto; }
.footer-socials a { display: grid; width: 25px; height: 25px; place-items: center; color: #fff; background: rgba(255,255,255,.1); border-radius: 3px; text-decoration: none; }
.footer-socials a::before { width: auto; margin: 0; }
.footer-socials a:hover { color: #1d1d1d; background: #fff; }

.quick-actions { right: 0; bottom: 106px; gap: 0; align-items: end; }
.quick-actions a { position: relative; display: block; width: auto; height: 29px; margin-left: auto; padding: 7px 5px 0 30px; color: #fff; border-radius: 0; box-shadow: 0 0 7px rgba(0,0,0,.3); font-size: 11px; font-weight: 400; line-height: 1; text-align: left; text-transform: uppercase; }
.quick-actions a:hover { color: #1d1d1d; background: #fff !important; }
.quick-actions i { position: absolute; top: 8px; left: 4px; font-style: normal; font-size: 16px; }
.quick-actions__ticket { width: 110px !important; background: #00af35 !important; }
.quick-actions__download { width: 145px !important; background: #007122 !important; }
.quick-actions__mail { width: 80px !important; background: #00932c !important; }

@media (max-width: 1085px) {
  .site-header__inner { min-height: 96px; }
  .brand { width: 194px; }
  .brand img { width: 163px; height: 81px; margin: 6px auto 7px; }
  .main-nav > ul { padding-left: 200px; gap: 22px; }
  .hero, .hero__content { min-height: 500px; }
  .hero__headline { font-size: 46px; }
  .hero__headline span { font-size: 21px; }
  .service-grid { grid-template-columns: repeat(2, 300px); }
  .partner-grid { grid-template-columns: repeat(3, 230px); }
}

@media (max-width: 935px) {
  .topbar { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { position: fixed; inset: 96px 0 auto 0; max-height: calc(100vh - 96px); padding: 10px 20px 25px; background: #414141; border: 0; }
  .main-nav > ul { padding: 0; }
  .main-nav a { padding: 9px 20px; border-top: 1px solid #4b4b4b; }
  .main-nav .submenu { position: static; min-width: 0; margin: 0; padding: 6px 0 8px 15px; background: transparent; border: 0; box-shadow: none; }
  .main-nav .submenu a { text-align: left; }
  .hero, .hero__content { min-height: 450px; }
  .hero__headline { font-size: 42px; }
  .home-title h1, .page-title h1 { font-size: 40px; }
  main { margin-bottom: 277px; }
  .site-footer { height: 277px; }
  .site-footer__main { padding: 35px; }
  .site-footer__main::after { display: none; }
  .quick-actions { display: none; }
}

@media (max-width: 700px) {
  .container, .narrow { width: min(calc(100% - 40px), 1030px); }
  .hero, .hero__content { min-height: 300px; }
  .hero__panel { padding: 10px 20px; background: none; }
  .hero__headline { font-size: 30px; }
  .hero__headline span { font-size: 17px; }
  .home-title h1, .page-title h1 { padding-inline: 0; font-size: 35px; }
  .home-title h1 span, .page-title h1 span { font-size: 20px; }
  .service-grid, .feature-grid, .content-grid { grid-template-columns: 1fr; }
  .service-card { width: min(100%, 420px); margin-inline: auto; }
  .bigbox { margin-inline: 10px; }
  .bigbox__inner { padding: 30px; }
  .bigbox__inner h2 { font-size: 30px; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 230px)); }
  main { margin-bottom: 0; box-shadow: none; }
  .site-footer { position: static; height: auto; }
  .site-footer__main { grid-template-columns: 1fr; gap: 25px; padding: 30px 20px 90px; }
  .site-footer__main > div { padding: 0; }
  .site-footer__bottom { position: static; }
}

@media (max-width: 480px) {
  .site-header__inner { min-height: 84px; }
  .brand { width: 165px; }
  .brand img { width: 150px; height: 75px; }
  .main-nav { inset-block-start: 84px; max-height: calc(100vh - 84px); }
  .hero, .hero__content { min-height: 250px; }
  .service-grid, .partner-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; text-align: center; }
  .service-card__icon { margin: auto; }
  .service-card h3 { padding: 10px 0 0; }
  .page-hero { min-height: 150px; }
}
