:root {
  --font-sans: Arial, Helvetica, sans-serif;
  --blue: #0e518d;
  --blue-dark: #07355e;
  --red: #fc0a1c;
  --turquoise: #7dbdb5;
  --cyan: #6ec1e4;
  --pale: #e6f0fa;
  --ink: #173047;
  --muted: #587086;
  --line: #cfdfeb;
  --white: #fff;
}

.legal-header { padding: 20px max(24px, calc((100% - 940px) / 2)); border-top: 4px solid var(--turquoise); border-bottom: 1px solid var(--line); }
.legal-header img { width: min(330px, 80vw); }
.legal-page { width: min(940px, calc(100% - 40px)); margin: 0 auto; padding: 64px 0 90px; }
.legal-page h1 { color: var(--blue-dark); font-size: clamp(2.3rem, 5vw, 4rem); }
.legal-page h2 { margin-top: 34px; color: var(--blue); }
.legal-page a:not(.button) { color: var(--blue); text-decoration: underline; }
.admin-body { background: #eef5fa; }
.login-shell { width: min(520px, calc(100% - 32px)); margin: 7vh auto; padding: 38px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 18px 44px rgba(8,61,107,.12); }
.login-shell > img { width: min(330px, 100%); margin-bottom: 32px; }
.login-shell h1 { color: var(--blue-dark); }
.setup-shell { width: min(720px, calc(100% - 32px)); }
.setup-shell fieldset { padding: 20px; border: 1px solid var(--line); border-radius: 12px; }
.setup-shell legend { padding: 0 8px; color: var(--blue); font-weight: 800; }
.success-note { padding: 12px 14px; border-left: 4px solid #17864b; background: #eefaf4; color: #11663a; }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.4;
}

button,
input,
select,
textarea {
  font: inherit;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.brand img,
.footer-brand img,
.legal-header img,
.login-shell > img {
  width: 100%;
  height: auto;
  aspect-ratio: 422 / 100;
  object-fit: contain;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: white;
  color: var(--blue);
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-top: 4px solid var(--turquoise);
  border-bottom: 1px solid rgba(14, 81, 141, 0.12);
  background: #17aaff;
  backdrop-filter: none;
}

.header-inner {
  width: min(1320px, calc(100% - 64px));
  min-height: 106px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(270px, 350px) 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  width: min(330px, 100%);
  padding: 8px 0;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(17px, 2vw, 32px);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
  background: var(--turquoise);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}

.header-phone span {
  color: var(--red);
}

.brand:focus-visible,
.desktop-nav a:focus-visible,
.header-phone:focus-visible,
.button:focus-visible,
.hero-phone:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.mobile-menu {
  display: none;
}

.hero-band {
  padding: 42px max(32px, calc((100% - 1320px) / 2)) 64px;
  background:
    radial-gradient(circle at 7% 12%, rgba(255, 255, 255, 0.35), transparent 25%),
    linear-gradient(135deg, #91cac3, var(--turquoise) 60%, #6dafa9);
}

.hero-card {
  display: grid;
  grid-template-columns: 56% 44%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  background: white;
  box-shadow: 0 24px 64px rgba(8, 61, 107, 0.18);
}

.hero-copy {
  min-height: 540px;
  padding: 64px clamp(42px, 5vw, 76px) 52px;
  background:
    radial-gradient(circle at 0 100%, rgba(110, 193, 228, 0.2), transparent 40%),
    linear-gradient(145deg, var(--blue), var(--blue-dark));
  color: white;
}

.hero-kicker,
.eyebrow,
.card-label {
  margin: 0;
  color: var(--turquoise);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 16px 0 0;
  font-size: clamp(2.55rem, 4vw, 4.7rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.accent-line {
  width: 110px;
  height: 4px;
  margin: 30px 0 24px;
  border-radius: 2px;
  background: var(--turquoise);
}

.hero-intro {
  max-width: 610px;
  margin: 0;
  color: #e9f4fc;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  transition: 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 24px rgba(252, 10, 28, 0.28);
}

.contact-invitation {
  align-self: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-invitation p {
  margin: 0 0 22px;
  color: #e6f0fa;
}

.contact-dialog {
  width: min(820px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(7, 53, 94, 0.38);
}

.contact-dialog::backdrop {
  background: rgba(7, 32, 55, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.dialog-header h2 {
  margin: 6px 0 0;
  color: var(--blue-dark);
}

.dialog-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--pale);
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.contact-dialog .contact-form {
  padding: 28px 32px 34px;
}

.contact-dialog .contact-form > label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-weight: 700;
}

.contact-dialog input,
.contact-dialog textarea,
.contact-dialog select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #a9bfd0;
  border-radius: 8px;
  background: white;
  color: var(--ink);
}

.contact-dialog textarea {
  resize: vertical;
}

.contact-dialog input:focus,
.contact-dialog textarea:focus {
  outline: 3px solid rgba(125, 189, 181, 0.42);
  border-color: var(--blue);
}

.contact-dialog small,
.form-note {
  color: var(--muted);
  font-weight: 400;
}

.privacy-check {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  font-weight: 400 !important;
}

.privacy-check input {
  width: 18px;
  margin-top: 3px;
}

.privacy-check a {
  color: var(--blue);
  text-decoration: underline;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-result {
  padding: 44px 32px;
}

.form-result.success {
  border-left: 6px solid #17864b;
}

.form-error {
  padding: 12px;
  border-radius: 8px;
  background: #fff0f1;
  color: #a3000c;
}

.button-secondary {
  border-color: var(--turquoise);
  color: white;
}

.button-secondary:hover {
  background: rgba(125, 189, 181, 0.16);
}

.hero-phone {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  color: white;
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-phone span {
  color: var(--turquoise);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #fff, var(--pale));
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 18%;
  right: 10%;
  bottom: 15%;
  border-radius: 50%;
  background: rgba(14, 81, 141, 0.12);
  filter: blur(10px);
  transform: rotate(-5deg);
}

.hero-visual img {
  position: relative;
  z-index: 3;
  width: min(64%, 250px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(8, 61, 107, 0.16));
  animation: mascot-float 5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: 1;
  aspect-ratio: 1;
  border: 2px solid rgba(110, 193, 228, 0.62);
  border-radius: 44% 56% 62% 38% / 48% 39% 61% 52%;
}

.orbit-one {
  width: 76%;
  transform: rotate(13deg);
}

.orbit-two {
  width: 60%;
  transform: rotate(-12deg);
  border-color: rgba(125, 189, 181, 0.56);
}

.trust-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px 34px;
  background: white;
}

.trust-item {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(16px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border: 0;
}

.trust-item > span:last-child {
  display: grid;
}

.trust-item strong {
  color: var(--blue);
  font-size: 1.08rem;
}

.trust-icon {
  position: relative;
  width: 52px;
  min-width: 52px;
  height: 52px;
  display: block;
  color: var(--turquoise);
}

.icon-clock {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-clock::before,
.icon-clock::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 9px;
  width: 3px;
  height: 17px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: bottom;
}

.icon-clock::after {
  top: 23px;
  height: 14px;
  transform: rotate(50deg);
}

.icon-award::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 2px;
  width: 30px;
  height: 30px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-award::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 31px;
  width: 24px;
  height: 19px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: skew(-8deg);
}

.icon-laptop::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 38px;
  height: 29px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.icon-laptop::after {
  content: "";
  position: absolute;
  left: 0;
  top: 39px;
  width: 52px;
  height: 7px;
  border: 3px solid currentColor;
  border-radius: 2px 2px 8px 8px;
}

.section {
  width: min(1200px, calc(100% - 48px));
  margin: auto;
  padding: 106px 0;
}

.section-heading {
  max-width: 720px;
}

.eyebrow,
.card-label {
  color: var(--blue);
}

.section-heading h2 {
  margin: 12px 0 18px;
  color: var(--blue-dark);
  font-size: clamp(2.15rem, 3.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}

.service-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8fbfd;
}

.service-number {
  display: block;
  margin-bottom: 40px;
  color: var(--turquoise);
  font-weight: 800;
}

.service-card h3 {
  margin: 10px 0 14px;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.service-card > p:last-child {
  margin: 0;
  color: var(--muted);
}

.special-section {
  padding: 108px 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(110, 193, 228, 0.2), transparent 28%),
    linear-gradient(145deg, var(--blue), var(--blue-dark));
  color: white;
}

.special-inner,
.process-inner,
.contact-card,
.footer-inner {
  width: min(1200px, 100%);
  margin: auto;
}

.special-heading {
  max-width: 760px;
}

.eyebrow.light {
  color: var(--turquoise);
}

.special-heading h2,
.about-copy h2,
.pricing-card h2,
.contact-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.15rem, 3.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.special-heading > p:last-child {
  margin: 0;
  color: #d8ecf9;
  font-size: 1.1rem;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.special-card {
  position: relative;
  min-height: 290px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(125, 189, 181, 0.4);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
}

.solution-code {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--turquoise);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.special-card h3 {
  margin: 24px 0 12px;
  font-size: 1.45rem;
}

.special-card > p {
  max-width: 520px;
  margin: 0;
  color: #dcecf7;
}

.special-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.special-card li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  font-size: 0.78rem;
}

.about-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(230px, 0.45fr);
  gap: clamp(30px, 4vw, 58px);
  padding: clamp(38px, 6vw, 78px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(125, 189, 181, 0.25), transparent 28%),
    #f8fbfd;
}

.about-profile {
  align-self: start;
}

.about-profile img {
  width: 100%;
  height: auto;
  aspect-ratio: 221 / 300;
  object-fit: contain;
  border: 8px solid white;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(8, 61, 107, 0.16);
}

.about-profile p {
  display: grid;
  margin: 18px 0 0;
  color: var(--blue);
  line-height: 1.25;
}

.about-profile strong {
  margin-top: 4px;
  font-size: 1.25rem;
}

.about-copy h2,
.pricing-card h2 {
  color: var(--blue-dark);
}

.about-copy > p:not(.eyebrow, .signature) {
  color: var(--muted);
  font-size: 1.04rem;
}

.signature {
  display: grid;
  margin: 28px 0 0;
  color: var(--blue);
}

.signature strong {
  font-size: 1.25rem;
}

.about-facts {
  display: grid;
  align-content: center;
  gap: 16px;
}

.about-facts div {
  display: grid;
  padding: 22px 24px;
  border-left: 5px solid var(--turquoise);
  border-radius: 0 14px 14px 0;
  background: white;
  box-shadow: 0 10px 24px rgba(8, 61, 107, 0.08);
}

.about-facts strong {
  color: var(--blue);
  font-size: 1.7rem;
}

.about-facts span {
  color: var(--muted);
}

.process-section {
  padding: 108px 24px;
  background: var(--pale);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.process-step {
  padding: 32px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 30px rgba(8, 61, 107, 0.08);
}

.process-step > span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 900;
}

.process-step h3 {
  margin: 26px 0 10px;
  color: var(--blue-dark);
  font-size: 1.3rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 22px 52px rgba(8, 61, 107, 0.1);
}

.pricing-card > div > p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.pricing-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-points li {
  position: relative;
  display: grid;
  padding: 18px 18px 18px 58px;
  border-radius: 12px;
  background: var(--pale);
  color: var(--muted);
}

.pricing-points li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid var(--turquoise);
  border-radius: 50%;
  color: var(--blue);
  font-weight: 900;
}

.pricing-points strong {
  color: var(--blue);
}

.contact-section {
  padding: 48px 24px 0;
  background: linear-gradient(180deg, white 0 20%, var(--turquoise) 20% 100%);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(38px, 6vw, 82px);
  padding: clamp(42px, 6vw, 76px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0, rgba(110, 193, 228, 0.24), transparent 32%),
    linear-gradient(145deg, var(--blue), var(--blue-dark));
  color: white;
  box-shadow: 0 24px 58px rgba(8, 61, 107, 0.24);
}

.contact-copy > p:not(.hero-kicker) {
  max-width: 620px;
  color: #dfedf7;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  font-style: normal;
}

.contact-details div {
  display: grid;
  padding: 15px 18px;
  border: 1px solid rgba(125, 189, 181, 0.38);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-details span {
  color: var(--turquoise);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a {
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(125, 189, 181, 0.38);
  border-radius: 20px;
  background: white;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form label > span[aria-hidden="true"] {
  display: inline;
  color: var(--red);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #aac2d3;
  border-radius: 9px;
  background: #f8fbfd;
  color: var(--ink);
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(110, 193, 228, 0.35);
}

.contact-form .privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 400;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
}

.privacy-check a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

.contact-form .button {
  justify-self: start;
  cursor: pointer;
}

.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  padding: 62px 24px 28px;
  background: var(--turquoise);
  color: var(--blue-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(190px, 0.7fr) minmax(310px, 1fr);
  gap: 24px 42px;
  align-items: center;
}

.footer-brand {
  display: block;
  padding: 10px 18px;
  border-radius: 14px;
  background: white;
}

.footer-inner > p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

.footer-inner nav a {
  text-decoration: underline;
  text-decoration-color: rgba(7, 53, 94, 0.3);
  text-underline-offset: 4px;
}

.footer-hours {
  grid-column: 3;
  grid-row: 1 / span 2;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.footer-hours h2 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.footer-hours dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.footer-hours dl div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 12px;
  align-items: start;
  padding: 9px 10px;
  border-radius: 10px;
  transition:
    background 160ms ease,
    box-shadow 160ms ease;
}

.footer-hours dl div.is-open {
  background: white;
  box-shadow: 0 7px 18px rgba(7, 53, 94, 0.1);
}

.footer-hours dt {
  color: var(--blue);
  font-weight: 700;
}

.footer-hours dd {
  display: grid;
  gap: 5px;
  margin: 0;
}

.opening-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
}

.opening-status::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #7b8993;
}

.is-open .opening-status {
  color: #167345;
}

.is-open .opening-status::before {
  background: #20a966;
  box-shadow: 0 0 0 4px rgba(32, 169, 102, 0.15);
}

.is-closed .opening-status {
  color: #667783;
  font-weight: 700;
}

.footer-hours > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 53, 94, 0.2);
  font-size: 0.86rem;
}

@keyframes mascot-float {
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: minmax(240px, 300px) 1fr auto;
  }
  .desktop-nav {
    gap: 16px;
    font-size: 0.88rem;
  }
  .header-phone {
    font-size: 0;
  }
  .header-phone span {
    font-size: 1.2rem;
  }
  .hero-copy {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    width: calc(100% - 36px);
    min-height: 90px;
    grid-template-columns: 1fr auto;
  }
  .brand {
    width: min(290px, 76vw);
  }
  .desktop-nav,
  .header-phone {
    display: none;
  }
  .mobile-menu {
    position: relative;
    display: block;
  }
  .mobile-menu summary {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 2px solid var(--blue);
    border-radius: 10px;
    cursor: pointer;
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary span {
    width: 21px;
    height: 2px;
    background: var(--blue);
  }
  .mobile-menu nav {
    position: absolute;
    top: 58px;
    right: 0;
    width: min(290px, calc(100vw - 36px));
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    box-shadow: 0 22px 50px rgba(8, 61, 107, 0.2);
  }
  .mobile-menu nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--pale);
    color: var(--blue);
    font-weight: 700;
  }
  .hero-band {
    padding: 28px 18px 48px;
  }
  .hero-card {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero-visual {
    min-height: auto;
  }
  .hero-copy {
    padding: 52px 40px 46px;
  }
  .hero-visual {
    min-height: 390px;
  }
  .hero-visual img {
    width: min(58%, 250px);
  }
  .trust-strip {
    grid-template-columns: 1fr;
    padding: 10px 26px;
  }
  .trust-item {
    min-height: 90px;
    padding: 16px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .special-grid,
  .about-card,
  .pricing-card,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .about-profile {
    width: min(260px, 100%);
  }
  .about-card {
    gap: 38px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-hours {
    grid-column: auto;
    grid-row: auto;
  }
  .footer-brand {
    width: min(330px, 100%);
  }
}

@media (max-width: 560px) {
  .site-header {
    position: relative;
  }
  .header-inner {
    width: calc(100% - 24px);
  }
  .brand {
    width: min(250px, 72vw);
  }
  .hero-card {
    border-radius: 20px;
  }
  .hero-copy {
    padding: 40px 24px;
  }
  .hero-copy h1 {
    font-size: 2.45rem;
  }
  .hero-actions {
    display: grid;
  }
  .button {
    width: 100%;
  }
  .hero-visual {
    min-height: 310px;
  }
  .hero-visual img {
    width: min(62vw, 230px);
  }
  .section {
    width: calc(100% - 32px);
    padding: 76px 0;
  }
  .special-section,
  .process-section {
    padding: 76px 16px;
  }
  .special-card,
  .process-step {
    padding: 26px;
  }
  .contact-section {
    padding-right: 12px;
    padding-left: 12px;
  }
  .contact-card {
    padding: 38px 24px;
    border-radius: 20px;
  }
  .contact-actions {
    display: grid;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-hours dl div {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 2rem;
  }
  .hero-visual {
    min-height: 270px;
  }
  .about-card,
  .pricing-card,
  .contact-card {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* Geschützter Administrationsbereich */
.admin-shell { min-height: 100vh; padding: 46px max(24px, calc((100% - 1240px) / 2)) 80px; background: #eef5fa; }
.admin-header, .admin-panel-heading, .admin-actions { display: flex; align-items: center; }
.admin-header { justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.admin-header h1 { margin: 8px 0; color: var(--blue-dark); font-size: clamp(2rem, 4vw, 3.3rem); }
.admin-header p:last-child, .admin-help { color: var(--muted); }
.admin-actions { gap: 10px; }
.admin-button { min-height: 44px; border-color: var(--blue); color: var(--blue); }
.admin-panel { padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 14px 36px rgba(8, 61, 107, 0.07); }
.admin-panel h2 { margin: 8px 0 22px; color: var(--blue-dark); }
.admin-panel-heading { justify-content: space-between; }
.message-count { min-width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: white; font-weight: 800; }
.admin-empty { padding: 26px; border-radius: 12px; background: var(--pale); color: var(--muted); }
.message-list { display: grid; gap: 10px; }
.message-card { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.message-card summary { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 18px; cursor: pointer; list-style: none; }
.message-card summary::-webkit-details-marker { display: none; }
.message-card summary > span:nth-child(2) { display: grid; }
.message-card small { margin-top: 4px; color: var(--muted); }
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--red); }
.status-in_progress { background: #e39500; }
.status-done { background: #17864b; }
.message-status { padding: 6px 10px; border-radius: 999px; background: var(--pale); color: var(--blue); font-size: 0.78rem; font-weight: 800; }
.message-content { padding: 22px; border-top: 1px solid var(--line); background: #f8fbfd; }
.message-content dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.message-content dl div { min-width: 0; }
.message-content dt { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; }
.message-content dd { margin: 3px 0 0; overflow-wrap: anywhere; }
.message-content a { color: var(--blue); text-decoration: underline; }
.message-text { padding: 18px; white-space: pre-wrap; border-radius: 10px; background: white; }
.delivery-state { color: var(--muted); font-size: 0.9rem; }
.attachment-list { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin: 16px 0; }
.attachment-list a { padding: 7px 10px; border-radius: 7px; background: var(--pale); }
.status-form { display: flex; gap: 12px; align-items: end; }
.status-form label, .admin-form, .admin-form label { display: grid; gap: 8px; }
.admin-settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.admin-form { gap: 18px; }
.admin-form label { color: var(--blue-dark); font-weight: 700; }
.admin-form input, .admin-form select, .status-form select { min-width: 0; padding: 11px 12px; border: 1px solid #a9bfd0; border-radius: 8px; background: white; color: var(--ink); }
.admin-primary { justify-self: start; background: var(--blue); color: white; }
.config-state { padding: 10px 12px; border-left: 4px solid #e39500; background: #fff8e8; }
.config-state.configured { border-color: #17864b; background: #eefaf4; }
.hours-fieldset { padding: 18px; border: 1px solid var(--line); border-radius: 12px; }
.hours-fieldset legend { padding: 0 8px; color: var(--blue); font-weight: 800; }
.form-row.three { grid-template-columns: 1.2fr 1fr 1fr; }

@media (max-width: 850px) {
  .admin-header, .admin-panel-heading { align-items: flex-start; }
  .admin-header, .admin-settings-grid { display: grid; grid-template-columns: 1fr; }
  .message-content dl, .form-row.three { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
