:root {
  --blue: #0757a6;
  --blue-dark: #073d72;
  --blue-soft: #eaf4fb;
  --orange: #ef7508;
  --orange-soft: #fff1e5;
  --green: #6eb51e;
  --green-soft: #eef8e5;
  --ink: #17344d;
  --muted: #5d6b76;
  --cream: #fbfcfa;
  --white: #fff;
  --line: #dde8ec;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--white); font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 999; background: var(--blue-dark); color: white; padding: 12px 18px; border-radius: 8px; }
.skip-link:focus { top: 20px; }
.section-inner, .header-inner, .hero-inner { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(221,232,236,.9); backdrop-filter: blur(12px); }
.header-inner { height: 116px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 190px; display: block; }
.brand img { width: 100%; height: auto; display: block; }
.desktop-nav { display: flex; align-items: center; gap: 8px; }
.nav-group { position: relative; display: flex; flex: 0 0 178px; align-items: center; justify-content: center; border-radius: 12px; }
.nav-group > a { display: block; width: 100%; padding: 15px 12px; text-align: center; font-size: .94rem; font-weight: 700; }
.nav-group:hover, .nav-group:focus-within { background: var(--blue-soft); }
.submenu { position: absolute; top: calc(100% + 4px); left: 50%; min-width: 210px; padding: 8px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 16px 38px rgba(7,61,114,.13); opacity: 0; visibility: hidden; transform: translate(-50%, 6px); transition: .2s ease; }
.nav-group:hover .submenu, .nav-group:focus-within .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.submenu a { display: block; padding: 10px 12px; border-radius: 8px; font-size: .9rem; }
.submenu a:hover, .submenu a:focus { background: var(--blue-soft); color: var(--blue); }
.mobile-nav { display: none; position: relative; }

.hero { min-height: 720px; display: grid; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, #fff 55%, #f2f8fb); }
.hero-inner { padding: 86px 0 100px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; position: relative; z-index: 2; }
.eyebrow, .section-kicker { color: var(--blue); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 800; margin: 0 0 18px; }
.hero h1 { font-size: clamp(3.4rem, 6vw, 5.9rem); line-height: .96; letter-spacing: -.055em; margin: 0; color: var(--blue-dark); }
.hero h1 span { color: var(--orange); }
.hero-text { max-width: 630px; font-size: 1.22rem; line-height: 1.7; color: var(--muted); margin: 30px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 54px; padding: 0 24px; border-radius: 999px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover, .button:focus { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 10px 24px rgba(7,87,166,.2); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 13px 28px rgba(7,61,114,.26); }
.button-secondary { background: white; color: var(--blue); border: 1px solid #c9dbe6; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 42px; color: var(--muted); font-size: .86rem; font-weight: 700; }
.trust-row span::before { content: "●"; color: var(--green); font-size: .7rem; margin-right: 8px; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-shape-one { width: 350px; height: 350px; right: -150px; top: 30px; background: var(--orange-soft); }
.hero-shape-two { width: 180px; height: 180px; left: -80px; bottom: -50px; background: var(--green-soft); }
.strength-panel { min-height: 500px; padding: 46px 44px 34px; position: relative; overflow: hidden; border: 1px solid #dce9ef; border-radius: 38px; background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,247,251,.94)); box-shadow: 0 30px 70px rgba(7,61,114,.12); }
.strength-panel::before { content: ""; position: absolute; width: 310px; height: 310px; right: -135px; top: -145px; border: 56px solid rgba(7,87,166,.07); border-radius: 50%; }
.strength-panel::after { content: ""; position: absolute; width: 170px; height: 170px; left: -90px; bottom: -100px; border: 38px solid rgba(110,181,30,.09); border-radius: 50%; }
.strength-label { margin: 0 0 27px; position: relative; z-index: 2; color: var(--blue); font-size: .76rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.strength-stack { position: relative; z-index: 2; display: grid; gap: 13px; }
.strength-card { min-height: 92px; padding: 20px 22px; border-radius: 19px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 10px; background: white; border: 1px solid rgba(221,232,236,.95); box-shadow: 0 10px 25px rgba(23,52,77,.07); transition: transform .2s, box-shadow .2s; }
.strength-card:nth-child(2) { transform: translateX(16px); }
.strength-card:hover { transform: translateX(5px); box-shadow: 0 15px 30px rgba(23,52,77,.11); }
.strength-card:nth-child(2):hover { transform: translateX(21px); }
.strength-card span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: white; font-size: .72rem; font-weight: 900; }
.strength-card strong { font-size: 1.35rem; color: var(--blue-dark); }
.strength-card small { color: var(--muted); font-size: .84rem; font-weight: 700; }
.strength-card-blue span { background: var(--blue); }
.strength-card-orange span { background: var(--orange); }
.strength-card-green span { background: var(--green); }
.strength-note { position: relative; z-index: 2; margin: 26px 0 0; text-align: right; color: var(--muted); font-size: .94rem; font-style: italic; font-weight: 800; }
.strength-dot { position: absolute; z-index: 3; display: block; border-radius: 50%; }
.strength-dot-blue { width: 12px; height: 12px; right: 54px; top: 52px; background: var(--blue); }
.strength-dot-orange { width: 19px; height: 19px; right: 24px; top: 82px; background: var(--orange); }
.strength-dot-green { width: 15px; height: 15px; right: 66px; top: 96px; background: var(--green); }

.intro-section { padding: 120px 0; }
.split-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; }
h2 { color: var(--blue-dark); font-size: clamp(2.55rem, 4vw, 4.25rem); line-height: 1.06; letter-spacing: -.045em; margin: 0; }
.lead { font-size: 1.35rem; line-height: 1.55; color: var(--ink); font-weight: 700; }
.intro-copy > p:not(.lead), .shop-copy > p:not(.lead) { color: var(--muted); line-height: 1.75; }
.text-link { display: inline-flex; gap: 10px; margin-top: 18px; color: var(--blue); font-weight: 800; border-bottom: 2px solid #b5d5e8; padding-bottom: 5px; }
.text-link span, .service-card a span { transition: transform .2s; }
.text-link:hover span, .service-card a:hover span { transform: translateX(4px); }

.services-section { padding: 115px 0 130px; background: #f6fafc; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 70px; margin-bottom: 54px; }
.section-heading > p { max-width: 390px; color: var(--muted); line-height: 1.7; margin: 0 0 8px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 390px; padding: 34px; border-radius: 26px; position: relative; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 22px 50px rgba(20,54,76,.12); }
.card-blue { background: var(--blue-soft); } .card-orange { background: var(--orange-soft); } .card-green { background: var(--green-soft); }
.card-number { position: absolute; right: 24px; top: 18px; font-size: 3.7rem; font-weight: 900; opacity: .08; }
.card-media { height: 205px; margin: -34px -34px 30px; overflow: hidden; background: #dfeaf0; }
.card-media img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .45s ease; }
.service-card-with-image:hover .card-media img { transform: scale(1.035); }
.service-card-with-image .card-number { z-index: 2; color: white; opacity: .88; font-size: 2.4rem; text-shadow: 0 2px 14px rgba(7, 31, 55, .38); }
.service-card:not(.service-card-with-image) { padding-top: 82px; }
.service-card h3 { font-size: 1.45rem; margin: 0 0 16px; color: var(--blue-dark); }
.service-card p { color: var(--muted); line-height: 1.65; margin: 0; }
.service-card a { display: flex; gap: 8px; margin-top: auto; padding-top: 28px; color: var(--blue-dark); font-weight: 800; }

.shop-section { padding: 130px 0; }
.shop-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.shop-visual { min-height: 530px; position: relative; border-radius: 45% 55% 48% 52%; background: linear-gradient(145deg, #eff7fb, #fff7ef); }
.shop-card { width: 235px; height: 315px; border-radius: 22px; position: absolute; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; color: white; box-shadow: 0 25px 50px rgba(23,52,77,.2); }
.shop-card span { font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
.shop-card b { font-size: 1.55rem; line-height: 1.2; }
.shop-card-one { background: var(--blue); left: 72px; top: 70px; transform: rotate(-9deg); }
.shop-card-two { background: var(--orange); right: 64px; top: 130px; transform: rotate(10deg); }
.shop-dot { position: absolute; border-radius: 50%; }
.dot-blue { width: 22px; height: 22px; background: var(--blue); right: 30px; top: 70px; }.dot-orange { width: 38px; height: 38px; background: var(--orange); left: 24px; bottom: 70px; }.dot-green { width: 28px; height: 28px; background: var(--green); right: 42px; bottom: 55px; }
.shop-copy .lead { margin-top: 26px; }
.shop-copy .button { margin-top: 22px; }

.contact-section { padding: 0 0 110px; }
.contact-box { padding: 64px 72px; border-radius: 32px; background: var(--blue-dark); color: white; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; position: relative; overflow: hidden; }
.contact-box::after { content: ""; position: absolute; right: -80px; top: -100px; width: 300px; height: 300px; border: 50px solid rgba(110,181,30,.22); border-radius: 50%; }
.contact-box h2 { color: white; font-size: clamp(2.4rem, 4vw, 3.8rem); }
.section-kicker.light { color: #9ed7f5; }
.contact-box > div { position: relative; z-index: 2; }
.contact-box p:not(.section-kicker) { font-size: 1.15rem; line-height: 1.6; margin: 0 0 26px; color: #d7e6ef; }
.button-white { background: white; color: var(--blue-dark); }

.site-footer { background: #f3f7f7; }
.footer-main { padding: 70px 0 56px; display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 80px; }
.footer-brand img { width: 230px; height: auto; mix-blend-mode: multiply; }
.footer-main p { color: var(--muted); line-height: 1.6; }
.footer-main h3 { margin: 8px 0 18px; color: var(--blue-dark); font-size: 1rem; }
.footer-main > div:not(.footer-brand) a { display: block; margin: 0 0 12px; color: var(--muted); }
.footer-main a:hover { color: var(--blue); }
.footer-bottom { padding: 22px 0 30px; border-top: 1px solid #d8e2e3; display: flex; justify-content: space-between; gap: 24px; font-size: .84rem; color: var(--muted); }
.footer-bottom div { display: flex; gap: 24px; }
.back-to-top { position: fixed; right: 28px; bottom: 28px; z-index: 45; display: none; align-items: center; gap: 8px; min-height: 50px; padding: 0 18px; border: 0; border-radius: 999px; background: var(--blue-dark); color: white; font: inherit; font-weight: 800; box-shadow: 0 12px 30px rgba(7, 61, 114, .24); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease, background .2s ease; }
.back-to-top:hover, .back-to-top:focus-visible { background: var(--blue); transform: translateY(-2px); }
.back-to-top:focus-visible { outline: 3px solid rgba(110, 181, 30, .55); outline-offset: 3px; }

@media (min-width: 981px) and (hover: hover) {
  .back-to-top { display: inline-flex; }
  .back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .back-to-top.is-visible:hover, .back-to-top.is-visible:focus-visible { transform: translateY(-2px); }
}

@media (max-width: 1280px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav summary { width: 46px; height: 46px; border-radius: 50%; background: var(--blue-soft); display: grid; align-content: center; gap: 5px; padding: 0 12px; cursor: pointer; list-style: none; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { display: block; height: 2px; background: var(--blue-dark); border-radius: 2px; }
  .mobile-nav-panel { position: absolute; right: 0; top: 58px; width: min(330px, calc(100vw - 32px)); max-height: calc(100vh - 140px); max-height: calc(100dvh - 140px); overflow-y: auto; background: white; padding: 12px; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 18px 40px rgba(7,61,114,.16); }
  .mobile-nav-panel a { display: block; padding: 13px 14px; border-radius: 9px; font-weight: 700; }
  .mobile-nav-panel a:hover { background: var(--blue-soft); }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 10px; }
  .hero-copy { max-width: 720px; }
  .strength-panel { width: min(560px, 100%); margin: 30px auto 0; }
  .split-layout, .shop-layout { gap: 55px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
}

@media (max-width: 720px) {
  .section-inner, .header-inner, .hero-inner { width: min(100% - 32px, 1180px); }
  .header-inner { height: 96px; }.brand { width: 154px; }
  .hero { min-height: auto; }.hero-inner { padding: 68px 0 78px; }.hero h1 { font-size: clamp(3.05rem, 14vw, 4.4rem); }.hero-text { font-size: 1.08rem; }
  .strength-panel { min-height: 0; padding: 38px 30px 30px; margin-top: 12px; }
  .trust-row { gap: 11px 20px; margin-top: 34px; }
  .intro-section, .shop-section { padding: 86px 0; }.services-section { padding: 86px 0 94px; }
  .split-layout, .shop-layout, .contact-box { grid-template-columns: 1fr; gap: 36px; }
  .section-heading { display: block; }.section-heading > p { margin-top: 26px; }
  .shop-visual { min-height: 430px; order: 2; }.shop-card { width: 190px; height: 260px; padding: 24px; }.shop-card-one { left: 28px; top: 60px; }.shop-card-two { right: 28px; top: 115px; }.shop-card b { font-size: 1.25rem; }
  .contact-section { padding-bottom: 72px; }.contact-box { padding: 44px 28px; gap: 26px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 55px 0 40px; }.footer-bottom { flex-direction: column; }.footer-bottom div { flex-wrap: wrap; gap: 14px 20px; }
}

@media (max-width: 460px) {
  .hero-actions .button { width: 100%; }
  .strength-card { grid-template-columns: 38px 1fr; padding: 17px; }
  .strength-card small { grid-column: 2; }
  .strength-card:nth-child(2) { transform: none; }
  .shop-card-one { left: 10px; }.shop-card-two { right: 8px; }
}

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

/* TYPO3 content elements */
.page-content { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 100px 0; }
.page-content > .frame:not(.frame-type-div) { width: min(900px, 100%); margin-bottom: 42px; padding: clamp(30px, 4vw, 54px); border: 1px solid rgba(11, 88, 160, .08); border-radius: 26px; box-shadow: 0 14px 34px rgba(7, 61, 114, .055); }
.page-content > :nth-child(odd of .frame:not(.frame-type-div)) { margin-left: 0; margin-right: auto; background: linear-gradient(135deg, #f4f9fd, #fbfdff); border-left: 4px solid rgba(11, 88, 160, .28); text-align: left; }
.page-content > :nth-child(even of .frame:not(.frame-type-div)) { margin-left: auto; margin-right: 0; background: linear-gradient(135deg, #fffaf4, #fffdf9); border-right: 4px solid rgba(238, 116, 16, .30); text-align: right; }
.page-content > :nth-child(even of .frame:not(.frame-type-div)) ul,
.page-content > :nth-child(even of .frame:not(.frame-type-div)) ol { display: inline-block; max-width: 100%; text-align: left; }
.page-content > .frame.frame-type-div { width: 100%; margin: 68px 0; padding: 0; }
.page-content > .frame.frame-type-div hr { height: 2px; margin: 0; border: 0; background: linear-gradient(90deg, transparent, rgba(11, 88, 160, .28) 25%, rgba(238, 116, 16, .32) 75%, transparent); }
.page-content .frame:last-child { margin-bottom: 0; }
.page-content h1, .page-content h2, .page-content h3 { color: var(--blue-dark); }
.page-content h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -.045em; }
.page-content h2 { font-size: clamp(2rem, 3.4vw, 3.25rem); }
.page-content h3 { font-size: 1.45rem; }
.page-content p, .page-content li { color: var(--muted); font-size: 1.06rem; line-height: 1.75; }
.page-content img { max-width: 100%; height: auto; border-radius: 22px; }
.page-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.page-content .textmedia { gap: 40px; }
.subpage-stage { padding: 86px 0 72px; background: linear-gradient(135deg, #fff 55%, #f2f8fb); }
.subpage-stage-inner { position: relative; }
.subpage-stage-with-image { padding: 64px 0; overflow: hidden; }
.subpage-stage-with-image .subpage-stage-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr); align-items: center; gap: clamp(42px, 7vw, 92px); }
.subpage-stage-copy { position: relative; z-index: 2; }
.subpage-stage-with-image .subpage-stage-copy { padding: 22px 0; }
.subpage-stage h1 { font-size: clamp(3rem, 6vw, 5rem); line-height: 1; letter-spacing: -.05em; color: var(--blue-dark); margin: 0; }
.subpage-stage p { max-width: 720px; font-size: 1.2rem; color: var(--muted); line-height: 1.7; }
.subpage-shop-button { margin-top: 14px; }
.subpage-stage-media { margin: 0; aspect-ratio: 5 / 3; overflow: hidden; position: relative; z-index: 1; border: 1px solid rgba(7, 87, 166, .11); border-radius: 32px; background: var(--white); box-shadow: 0 24px 58px rgba(7, 61, 114, .14); }
.subpage-stage-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .38); }
.subpage-stage-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.subpage-overview { padding: 84px 0 96px; background: #f6fafc; }
.subpage-overview-heading { margin-bottom: 42px; }
.subpage-overview-heading .section-kicker { margin-bottom: 12px; }
.subpage-overview-heading h2 { max-width: 760px; margin: 0; color: var(--blue-dark); font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: 1.08; letter-spacing: -.04em; }
.subpage-overview .service-card { min-height: 340px; }
.menu-card-title { font-size: 1.45rem; margin: 0 0 16px; color: var(--blue-dark); }
.menu-card-abstract { color: var(--muted); line-height: 1.65; margin: 0; }
.service-grid > .service-card:nth-child(9n + 1),
.service-grid > .service-card:nth-child(9n + 6),
.service-grid > .service-card:nth-child(9n + 8) { background: var(--blue-soft); }
.service-grid > .service-card:nth-child(9n + 2),
.service-grid > .service-card:nth-child(9n + 4),
.service-grid > .service-card:nth-child(9n + 9) { background: var(--orange-soft); }
.service-grid > .service-card:nth-child(9n + 3),
.service-grid > .service-card:nth-child(9n + 5),
.service-grid > .service-card:nth-child(9n + 7) { background: var(--green-soft); }

@media (max-width: 720px) {
  .subpage-stage { padding: 62px 0 58px; }
  .subpage-stage-with-image .subpage-stage-inner { grid-template-columns: 1fr; gap: 30px; }
  .subpage-stage-with-image .subpage-stage-copy { padding: 0; }
  .subpage-stage-media { width: 100%; border-radius: 24px; }
  .subpage-overview { padding: 68px 0 76px; }
  .subpage-overview-heading { margin-bottom: 32px; }
  .card-media { height: clamp(190px, 52vw, 300px); }
  .page-content { width: min(100% - 32px, 1180px); padding: 72px 0; }
  .page-content > .frame:not(.frame-type-div) { width: 100%; margin: 0 0 28px; padding: 28px 24px; text-align: left; border-right-width: 1px; border-left: 4px solid rgba(11, 88, 160, .24); }
  .page-content > :nth-child(even of .frame:not(.frame-type-div)) ul,
  .page-content > :nth-child(even of .frame:not(.frame-type-div)) ol { display: block; }
  .page-content > .frame.frame-type-div { margin: 48px 0; }
}
