:root{
  --brand-1: #0e1c26;      /* primary */
  --brand-2: #f3d03d;      /* accent */
  --brand-3: #b1b1b1;      /* accent 2 */
  --color-bg: #0e1724;
  --color-text: #fff;
  --color-text-dark: #111;
  --color-text-light: #f3f3f3;
  --nav-header-height: 70px;
  --nav-bg-dark: rgba(2, 2, 2, 0.7);
  --nav-bg-light: rgba(255, 255, 255, 0.7);
  --nav-menu-bg-dark: linear-gradient(to top, #000, #222);
  --nav-menu-bg-light: linear-gradient(to top, #ccc, #fff);
  --logo-fill-accent: #afb4b5; /* optional, if more colors (CREATE CLASS) */
  --logo-fill-accent2: #f3d03d; /* optional, if more colors (CREATE CLASS) */
  --font-main: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-default: 0.8rem;
  --font-weight-regular: 400;
  --font-weight-bold: 600;
  --font-weight-black: 900;
  --space-50: 0.5rem;
  --space-75: 0.75rem;
  --space-100: 1rem;
  --space-150: 1.5rem;
  --space-200: 2rem;
  --space-300: 3rem;
  --space-400: 4rem;

  --fs-1: 0.875rem;
  --fs-2: 1rem;
  --fs-3: 1.125rem;
  --fs-4: clamp(1.4rem, 2.2vw, 1.8rem);
  --fs-5: clamp(2.8rem, 4vw, 3rem);
  --container-maxwidth: 1300px;
  --transition-default: 200ms ease;

  --marquee-height: 150px;   /* change this for taller/shorter strip */
  --marquee-speed: 12s;      /* higher = slower */
}

*, *::before, *::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
	list-style-type: none;
	text-decoration: none;
}

:focus-visible {
    outline: 2px solid var(--brand-2);
    outline-offset: 2px;
}

html {
	scroll-behavior: auto;
}

body {
	font-family: var(--font-main);
    font-optical-sizing: auto;
	font-size: var(--fs-2);
	font-weight: var(--font-weight-regular);
	color: var(--color-text);
    background-color: var(--color-bg);
    
}
body.overflow-hidden {
    overflow: hidden;
}

body[data-nav-theme="dark"] .navbar-header {
    background-color: var(--nav-bg-dark);
    border-bottom: rgba(255, 255, 255, 0.2) 1px solid;
    color: var(--color-text-dark);
}
body[data-nav-theme="light"] .navbar-header {
    background-color: var(--nav-bg-light);
    border-bottom: rgba(0, 0, 0, 0.2) 1px solid;
    color: var(--color-text-light);
}
body[data-nav-theme="dark"] .logo-fill-color {
    fill: var(--color-text-light);
}
body[data-nav-theme="light"] .logo-fill-color {
    fill: var(--color-text-dark);
}
body[data-nav-theme="dark"] .nav-toggle-icon {
    background-color: var(--color-text-light);
}
body[data-nav-theme="dark"] .nav-toggle-icon::after {
    background-color: var(--color-text-light);
}
body[data-nav-theme="dark"] .nav-toggle-icon::before {
    background-color: var(--color-text-light);
}
body[data-nav-theme="light"] .nav-toggle-icon {
    background-color: var(--color-text-dark);
}
body[data-nav-theme="light"] .nav-toggle-icon::after {
    background-color: var(--color-text-dark);
}
body[data-nav-theme="light"] .nav-toggle-icon::before {
    background-color: var(--color-text-dark);
}
body[data-nav-theme="dark"] .navbar-menu {
    background: var(--nav-menu-bg-dark);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
}
body[data-nav-theme="light"] .navbar-menu {
    background: var(--nav-menu-bg-light);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--color-text-dark);
}
body[data-nav-theme="dark"] .navbar-menu ul {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body[data-nav-theme="light"] .navbar-menu ul {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section[data-theme="dark"] .service-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* Dark glow layer to replace the light corner glow */
.section[data-theme="dark"] .service-card::before {
  background:
    radial-gradient(circle at top left, rgba(233, 225, 192, 0.14), transparent 55%);
  opacity: 1;
}

/* Text color tuning for dark cards */
.section[data-theme="dark"] .service-card .service-title {
  color: rgba(255, 255, 255, 0.92);
}

.section[data-theme="dark"] .service-card .service-description {
  color: rgba(255, 255, 255, 0.74);
}

/* Stats pills in dark mode */
.section[data-theme="dark"] .service-stat {
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section[data-theme="dark"] .service-stat dt {
  color: rgba(255, 255, 255, 0.6);
  text-shadow: none;
}

.section[data-theme="dark"] .service-stat dd {
  color: rgba(255, 255, 255, 0.9);
}

.service-card .hex {
  display: block;
  width: clamp(150px, 60%, 220px);
  margin: 0 auto 1.75rem;
}

.service-card .hexIn {
  left: 2%;
}

.service-card .hero-visual-label {
  left: 50%;
  bottom: -2.1rem;
  transform: translateX(-50%);
}

.section[data-theme="dark"] .service-card .hero-visual-label {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(0, 0, 0, 0.9);
  text-shadow: none;
}

a, button {
    cursor: pointer;
    color: inherit;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
}

img, video {
	display: block;
	max-width: 100%;
	height: auto;
	object-fit: cover;
}
.img.is-decorative, .video.is-decorative {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
	-webkit-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
	-ms-user-select: none;
}

/* Cookie banner (small, calm, mobile-first) */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  z-index: 9999;
}

.cookie-banner__card {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 0.8rem;
  background: rgba(11, 13, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  padding: 1.1rem 1.1rem 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner__title {
  margin: 0 0 0.35rem;
  font-weight: 600;
  font-size: 1rem;
}

.cookie-banner__desc {
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  font-size: 0.92rem;
  max-width: 70ch;
}

.cookie-banner__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.cookie-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.65rem 0.85rem;
  border-radius: 0.55rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.92rem;
}

.cookie-btn--primary {
  border-color: rgba(243, 208, 61, 0.55);
  background: rgba(243, 208, 61, 0.22);
}

.cookie-btn--secondary {
  width: fit-content;
  margin-top: 0.65rem;
}

.cookie-btn--ghost {
  background: transparent;
}

.cookie-banner__options {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-option {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.cookie-option input {
  width: 18px;
  height: 18px;
}

.cookie-btn:focus-visible,
.cookie-banner__toggle:focus-visible {
  outline: 2px solid rgba(243, 208, 61, 0.85);
  outline-offset: 3px;
}

/* Less annoying on desktop: keep it tight */
@media (min-width: 992px) {
  .cookie-banner {
    padding: 1.25rem;
  }
}


.navbar-header {
    position: fixed;
    height: var(--nav-header-height);
    top: 0;
    width: 100%;
    background-color: var(--nav-bg);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color var(--transition-default), border-color var(--transition-default);
    z-index: 100;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0.6rem 1.2rem;
    max-width: var(--container-maxwidth);
    gap: var(--space-300);
}

.navbar-menu-container {
    /* align right. use 'margin-right' for left alignment or remove for centered */
    margin-left: auto;
}
.nav-logo svg {
    display: block;
    /*
    WHEN LOGO IS MONOCHROME, SET <path fill="CurrentColor"/>
    REMOVE --logo-fill variables and classes and USE THIS:
    fill: var(--color-text);
    */
    opacity: 0.8;
    transition: opacity var(--transition-default);
}
/*-Remove if logo is monochrome-*/
.logo-fill-color {
    fill: var(--color-text);
    transition: fill var(--transition-default);
}
.logo-fill-accent {
    fill: var(--logo-fill-accent);
}
.logo-fill-accent2 {
    fill: var(--logo-fill-accent2);
}
/*------------------------------*/
.nav-logo svg:hover {
    opacity: 1;
}

.nav-toggle {
    display:flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    touch-action: manipulation;
}
.nav-toggle-icon {
    position: relative;
    width: 25px; /* Adjust size as needed */
    height: 2px;
    background-color: var(--color-text);
    transition: .2s ease-in-out;
}
/* Creating the top and bottom lines with pseudo-elements */
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    display: block;
    position: absolute;
    height: 2px; /* Thickness of the bars */
    width: 100%;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: .2s ease-in-out;
}
/* Positioning the top line */
.nav-toggle-icon::before {
    top: -8px; /* Adjust vertical spacing */
}
/* Positioning the bottom line */
.nav-toggle-icon::after {
    bottom: -8px; /* Adjust vertical spacing */
}
/* Animation for the "X" state when the button is open */
.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background-color: transparent; /* Hide the middle line */
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.navbar-menu {
    visibility: hidden;
    position: fixed;
    top: var(--nav-header-height);
    right: 0;
    width: clamp(250px, 80%, 50%);
    height: 100vh;
    padding: 2.5rem 1.5rem;
    background-color: currentColor;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out, visibility 0.5s ease-in-out;
}
.navbar-menu.is-open {
    transform: translateX(0);
    visibility: visible;
}
.navbar-menu ul {
    font-size: var(--fs-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-item {
    display: flex;
    padding-bottom: 2rem;
    gap: 1rem;
}
.nav-link {
    color: currentColor;
}
.nav-cta {
    text-align: center;
    color: #000;
    padding: 0.6rem 1rem;
    font-weight: var(--font-weight-regular);
    background-color: var(--brand-2);
}

.nav-social-menu {
    display: flex;
    justify-content: space-evenly;
    padding-top: 2rem;

}

/*--------------MAIN----------------------- */

.main-container {

}

.section {

}
    .section--home {
        min-height: 100vh;
        background: radial-gradient(circle at top, #181b24 0, #111522 55%, #020308 100%);
    }
    .hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    }
    .section--leistungen,
    .section--ueber-uns {
        background: linear-gradient(#fff, #ccc);
        color: var(--color-text-dark);
    }
    .section--mangal,
    .section--kontakt {
        background-color: #111;
        color: var(--color-text-light);
    }

.section-inner {
    margin: 0 auto;
    padding: 8rem 1.2rem;
    max-width: var(--container-maxwidth);
}
    .section-inner--home {
        position: relative;
        z-index: 1;
        padding-top: calc(2rem + 70px);
    }
    .section-inner--cta {
    display: grid;
    gap: var(--space-300);
    }
    .section-inner--mangal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-200);
    }

.section-header {
    padding-bottom: var(--space-200);
}

h1 {
    font-size: var(--fs-5);
    font-weight: var(--font-weight-black);
    line-height: 1;
    padding-bottom: var(--space-200);
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.7);
}
h2 {
    font-size: var(--fs-5);
    font-weight: var(--font-weight-bold);
    padding-bottom: var(--space-200);
    line-height: 1;
}

.section--leistungen h2 {
  padding-bottom: var(--space-100)!important;
}

.section-intro {
    font-size: var(--fs-3);
    padding-bottom: var(--space-200);
}

.btn {
    display: inline-block;
    font-size: var(--fs-2);
    text-align: center;
    letter-spacing: 1px;
    padding: 0.6rem 1rem;
    font-weight: var(--font-weight-bold);
    border-radius: 0.2rem;
}
.btn:hover {
  filter: brightness(1.1);
}
.btn-cta { background:
    radial-gradient(circle at 0% 0%, rgba(255, 246, 160, 0.18), transparent 50%),
    linear-gradient(90deg, var(--brand-2), #ffc13ad0); color: #000; }
.btn-cta2 { 
  border: 1px solid rgba(158, 169, 190, 0.5);
  color: #dfe4f2;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.089), transparent 55%);
}

.services-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 1.5rem 1.5rem 1.75rem;
    border-radius: 0.4rem;
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left,
        rgba(160, 157, 155, 0.22),
        transparent 55%);
    opacity: 0.85;
    pointer-events: none;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: var(--fs-4);
    font-weight: 600;
    margin: 0 0 0.35rem;
}

.service-description {
    margin: 0 0 0.9rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgb(92, 92, 92);
}

.ebay-link {
  margin: 0 auto;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-decoration: none;
  color: inherit;
  max-width: 44rem;
  margin: 0 auto;
}

.link-card__meta {
  margin: 0 0 0.2rem;
  font-size: var(--fs-1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5cfd72a6;
}

.link-card__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.link-card__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(90deg, var(--brand-2), #ffc13ad0);;
}

@media (hover: hover) and (pointer: fine) {
  .link-card__icon {
    transition: transform 0.18s ease-out, background 0.18s ease-out, border-color 0.18s ease-out;
  }

  .link-card:hover .link-card__icon {
    transform: translateX(2px);
    filter: brightness(1.1);
    border-color: rgba(255, 255, 255, 0.28);
  }
}

.section--mangal .service-stats {
    margin-bottom: var(--space-200);
}

.about-layout .service-stats {
    margin-top: var(--space-200);
}

.service-stats {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    list-style: none; /* in case some browsers try to show bullets */
}

.service-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 10px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8e96a8;
    background: linear-gradient(to right, rgba(243, 243, 243, 0.87), rgb(247, 247, 247));
    border: 1px solid rgb(255, 255, 255);
}

.service-stat dt {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7e7e7e;
    text-shadow: 0 1px 1px rgb(255, 255, 255);
}

.service-stat dd {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
}

.about-layout {
    display: grid;
    gap: var(--space-400);
}

.about-gallery-wrap[data-carousel-wrap] {
  position: relative;
}

.about-gallery[data-carousel] {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  padding: 0.25rem 1rem 0.75rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.about-gallery[data-carousel]::-webkit-scrollbar {
  display: none;
}

.about-gallery[data-carousel] .media-placeholder {
  height: clamp(220px, 80vw, 420px);
  flex: 0 0 88%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  margin: 0;
}

.about-gallery[data-carousel] .media-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-dots[data-carousel-dots] {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.carousel-dots[data-carousel-dots] button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  cursor: pointer;
}

.carousel-dots[data-carousel-dots] button[aria-current="true"] {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.carousel-dots[data-carousel-dots] button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

@media (min-width: 992px) {
  .about-gallery[data-carousel] .media-placeholder {
    flex-basis: 100%;
  }
}

.carousel-arrow {
  display: none;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  line-height: 1;
}

.carousel-arrow--prev { left: 10px; }
.carousel-arrow--next { right: 10px; }

@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .carousel-arrow { display: inline-flex; align-items: center; justify-content: center; }
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.contact-form {
    display: grid;
    gap: var(--space-200);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-row--inline {
    gap: var(--space-200);
}

.contact-form input,
.contact-form textarea {
    padding: 0.6rem 0.8rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(0, 0, 0, 0.35);
    color: inherit;
}

.section--ueber-uns .contact-form input,
.section--ueber-uns .contact-form textarea {
    border-color: rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
}

.contact-form label {
    font-size: var(--fs-1);
    opacity: 0.9;
}
.media-placeholder {
    display: grid;
    place-items: center;
    min-height: 200px;
    border-radius: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent);
    font-size: var(--fs-1);
    text-align: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b96a5;
  margin-bottom: 0.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  margin-bottom: 1.75rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8e96a8;
}

.hero-stats strong {
  color: #e9edf7;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary {
  border-color: rgba(255, 184, 75, 0.7);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 246, 160, 0.18), transparent 50%),
    linear-gradient(90deg, #ffb84b, #ff4b3a);
  color: #080509;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.btn-ghost {
  border-color: rgba(158, 169, 190, 0.5);
  color: #dfe4f2;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.06), transparent 55%);
}

.hero-visual {
margin: 0 auto;
}

.hero-visual-label {
  visibility: visible!important;
  position: absolute;
  left: 48%;
  bottom: -2.5rem;          /* move inside with a positive % if you prefer overlay */
  transform: translateX(-50%);
  margin: 0;
  padding: 0.45rem 0.75rem;
  border-radius: 0.3rem;
  border: 1px solid rgb(156, 156, 156);
  background: radial-gradient(circle at 0 0, rgb(94, 94, 94), #0f0f0fc0 100%);
  font-size: calc(0.6rem + 0.2vw);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  gap: 0.35rem;
  z-index: 3;
}

.metal-panel {
  width: min(90vw, 350px);
  aspect-ratio: 7 / 4;
  border-radius: 18px;
  box-shadow:
    0 15px 60px rgba(0, 0, 0, 0.952),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotate(-4deg);
}
.metal-plate {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background-image:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.767), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(122, 122, 122, 0.671), transparent 60%),
    linear-gradient(115deg, #8a8568 0%, #565c63 40%, #30343a 100%);
    -webkit-clip-path: url(#Shape);
  clip-path: url(#Shape);
  
}

.metal-panel svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hex-outline {
  fill: none;
  stroke: rgba(173, 173, 173, 0.65);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  animation: outline-fade var(--cycle, 3.5s) linear infinite;
}

.hex-cut {
  stroke-width: 1;
  opacity: 0;
  animation: cut-fade var(--cycle, 3.5s) linear infinite;
}

.hex-laser {
  --len: 900;
  fill: none;
  stroke: url(#laserGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
  filter: drop-shadow(0 0 7px rgba(255, 200, 100, 1));
  animation: laser-draw var(--cycle, 3.5s) linear infinite;
}

@keyframes laser-draw {
  0% {
    stroke-dashoffset: var(--len);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  65% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: var(--len);
    opacity: 0;
  }
}

@keyframes outline-fade {
  0% { opacity: 0; }
  30% { opacity: 0; }
  50% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem 1.5rem;
    }

    /* If there is an odd number of cards, center the last one on its own row */
    .services-grid > .service-card:last-child:nth-child(2n + 1) {
        grid-column: 1 / -1;
        max-width: 32rem;
        justify-self: center;
    }
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 2.75rem;
  }
}

.social-proof {
    margin-top: var(--space-300);
}

.social-proof h3 {
    font-size: var(--fs-4);
    font-weight: 600;
    margin: 0 0 var(--space-150);
}

.testimonial-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-150);
}

.testimonial {
    position: relative;
    padding: 1.5rem 1.5rem 1.75rem;
    border-radius: 0.4rem;
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.testimonial::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left,
        rgba(160, 157, 155, 0.22),
        transparent 55%);
    opacity: 0.85;
    pointer-events: none;
}

.testimonial > * {
    position: relative;
    z-index: 1;
}

.testimonial-text::before {
    content: "★★★★★";
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    color: var(--brand-2);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    margin: 0 0 0.9rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.82);
}

.testimonial-meta {
    margin: 0;
    font-size: var(--fs-1);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8e96a8;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (hover: hover) and (pointer: fine) {
    .testimonial {
        transition: transform 0.18s ease-out,
                    box-shadow 0.18s ease-out,
                    border-color 0.18s ease-out;
    }
    .testimonial:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
        border-color: var(--brand-2);
    }
}

.faq {
  margin-top: 2rem;
}

.faq h3 {
    font-size: var(--fs-4);
    font-weight: 600;
    margin: 4rem 0 var(--space-150) 0;
}


.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.904);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-weight: 700;
  opacity: 0.75;
  transform: translateY(-1px);
}

.faq-item[open] .faq-question::after {
  content: "–";
  opacity: 0.9;
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: rgb(75, 75, 75);
  line-height: 1.55;
  font-size: 0.95rem;
}

.faq-answer p {
  margin: 0.6rem 0 0;
}

.faq-item:focus-within {
  outline: 2px solid rgba(243, 208, 61, 0.6);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    border-color: rgba(255, 255, 255, 0.22);
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(#0b0d13, #05060a);
  color: var(--color-text-light);
}

.site-footer__inner {
  max-width: var(--container-maxwidth);
  margin: 0 auto;
  padding: var(--space-300) 1.2rem var(--space-200);
  display: grid;
  gap: var(--space-200);
}

.site-footer__brand {
  display: grid;
  gap: 0.6rem;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--color-text-light);
}

.site-footer__logo svg {
  width: auto;
  height: 44px;
}

.site-footer .logo-fill-color {
  fill: currentColor !important;
}

.site-footer__slogan {
  margin: 0;
  font-size: var(--fs-2);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-200);
}

.site-footer__title {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__text {
  margin: 0 0 0.75rem;
  font-style: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  list-style: none;
}

.site-footer__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  width: fit-content;

  transition: color var(--transition-default), border-color var(--transition-default);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: var(--space-100);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer__fineprint {
  color: rgba(255, 255, 255, 0.55);
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__link:hover {
    color: var(--brand-2);
    border-color: rgba(243, 208, 61, 0.6);
  }
}

/* =========================
   Legal pages
========================= */

.section--legal {
  background: linear-gradient(#0b0d13, #05060a);
  color: var(--color-text-light);
}

.legal-content {
  max-width: 82ch; /* readable line length */
  display: grid;
}

.legal-content h2 {
  margin: 2rem 0 0;
  font-size: var(--fs-3);
  font-weight: 600;
  color: var(--brand-2)
}

.legal-content p {
  margin: 0 0 1.5rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

.legal-content a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

@media (hover: hover) and (pointer: fine) {
  .legal-content a:hover {
    color: var(--brand-2);
    border-color: rgba(243, 208, 61, 0.6);
  }
}

/* Form disclaimers under submit button */
.form-disclaimer {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.form-security,
.form-consent {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.form-security {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.form-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.form-consent a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

@media (hover: hover) and (pointer: fine) {
  .form-consent a:hover {
    color: var(--brand-2);
    border-color: rgba(243, 208, 61, 0.6);
  }
}
.form-status {
  margin: 0.9rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  font-size: 0.95rem;
}




