@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/cdn/aquaman/ressurser/fonts/montserrat-400.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/cdn/aquaman/ressurser/fonts/montserrat-600.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/cdn/aquaman/ressurser/fonts/montserrat-700.woff2") format("woff2");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/cdn/aquaman/ressurser/fonts/opensans-400.woff2") format("woff2");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/cdn/aquaman/ressurser/fonts/opensans-600.woff2") format("woff2");
}

:root {
  --aq-dark: #0b253a;
  --aq-main: #006994;
  --aq-light: #48cae4;
  --aq-accent: #caf0f8;
  --aq-orange: #ff8c00;
  --aq-text: #243447;
  --aq-muted: #5f6f7d;
  --aq-border: #e5e7eb;
  --aq-font-body: "Open Sans", Arial, sans-serif;
  --aq-font-heading: "Montserrat", Arial, sans-serif;
  --aq-font-brand: "Myriad Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8fafc;
  color: var(--aq-text);
  font-family: var(--aq-font-body);
  line-height: 1.6;
}

body.aq-theme {
  min-width: 320px;
}

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

img,
picture {
  display: block;
  max-width: 100%;
}

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

.aq-container {
  width: min(100% - 2rem, 1232px);
  margin: 0 auto;
}

.aq-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.aq-glass-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(11, 37, 58, 0.95);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px);
}

.aq-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.aq-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 0;
}

.aq-logo-box {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.aq-logo-box img {
  width: auto;
  height: 2.5rem;
  object-fit: contain;
}

.aq-brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  font-family: var(--aq-font-brand);
  line-height: 0.93;
  text-transform: uppercase;
}

.aq-brand-copy strong {
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.aq-brand-copy span {
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.aq-desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-family: var(--aq-font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.aq-desktop-nav a,
.aq-nav-trigger {
  transition: color 0.16s ease, transform 0.16s ease;
}

.aq-desktop-nav a:hover,
.aq-nav-group:hover .aq-nav-trigger {
  color: var(--aq-light);
}

[data-portal-page-layout="aquaman_home_seasonal"] .aq-desktop-nav > a[href="/"] {
  color: var(--aq-light);
}

.aq-nav-group {
  position: relative;
  padding: 1rem 0;
}

.aq-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: default;
}

.aq-dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  width: 18rem;
  overflow: hidden;
  border-radius: 0.65rem;
  background: #fff;
  color: #1f2937;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(0.5rem);
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.aq-nav-group:hover .aq-dropdown,
.aq-nav-group:focus-within .aq-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.aq-dropdown h3 {
  margin: 0;
  padding: 0.55rem 0.8rem;
  background: rgba(72, 202, 228, 0.22);
  color: var(--aq-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aq-dropdown h3.aq-secondary {
  background: #f3f4f6;
  color: #6b7280;
}

.aq-dropdown a {
  display: block;
  border-bottom: 1px solid #f0f2f5;
  padding: 0.75rem 1rem;
  color: #374151;
  font-weight: 500;
}

.aq-dropdown a:hover {
  background: var(--aq-accent);
  color: var(--aq-dark);
}

.aq-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--aq-light);
  font-size: 1.08rem;
  font-weight: 700;
}

.aq-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--aq-orange);
  color: var(--aq-dark);
  cursor: pointer;
  font-family: var(--aq-font-heading);
  font-weight: 700;
  line-height: 1;
  padding: 0.78rem 1.3rem;
  transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.aq-button:hover {
  background: #f07800;
  box-shadow: 0 12px 28px rgba(255, 140, 0, 0.28);
  transform: translateY(-1px);
}

.aq-mobile-actions {
  display: none;
}

.aq-mobile-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  list-style: none;
}

.aq-mobile-menu[open] .aq-mobile-summary {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 90;
}

.aq-mobile-summary::-webkit-details-marker {
  display: none;
}

.aq-mobile-summary > .aq-button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  font-size: 0;
  padding: 0;
}

.aq-mobile-summary > .aq-button::before {
  display: block;
  width: 2rem;
  height: 2rem;
  background: currentColor;
  content: "";
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16M4 12h16M4 18h16'/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.aq-mobile-summary > .aq-button:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.aq-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  min-height: 100dvh;
  place-items: center;
  overflow-y: auto;
  padding: 6rem 1.5rem 2rem;
  background: var(--aq-dark);
  color: #fff;
}

.aq-mobile-links {
  display: grid;
  width: min(100%, 24rem);
  gap: 1.1rem;
  text-align: center;
}

.aq-mobile-links a {
  font-family: var(--aq-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.aq-mobile-section-title {
  margin-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  color: var(--aq-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aq-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 50vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--aq-dark);
  color: #fff;
  text-align: center;
}

.aq-hero--home {
  min-height: 100vh;
  align-items: center;
  padding: 0;
}

.aq-hero--subpage {
  height: 50vh;
  min-height: 400px;
  padding: 0;
}

.aq-hero picture,
.aq-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.aq-hero-bg {
  object-fit: cover;
}

.aq-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(11, 37, 58, 0.7), rgba(11, 37, 58, 0.6));
  content: "";
}

.aq-hero--home::after {
  background: linear-gradient(to bottom, rgba(11, 37, 58, 0.4), rgba(11, 37, 58, 0.2), rgba(248, 250, 252, 0.9));
}

.aq-hero-content {
  width: min(100%, 1280px);
  padding-inline: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.64);
}

.aq-hero--subpage .aq-hero-content {
  padding-top: 5rem;
}

.aq-hero h1 {
  margin: 0;
  font-family: var(--aq-font-heading);
  font-size: clamp(2.35rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.25;
}

.aq-hero--subpage h1 {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  line-height: 1.25;
}

.aq-hero p {
  max-width: 56rem;
  margin: 1rem auto 0;
  font-size: clamp(1.125rem, 2.4vw, 1.875rem);
  font-weight: 700;
  line-height: 1.625;
}

.aq-hero-lead {
  max-width: 56rem;
  margin: 1rem auto 0;
  font-size: clamp(1.125rem, 2.4vw, 1.875rem);
  font-weight: 700;
  line-height: 1.625;
}

.aq-hero-lead p {
  max-width: none;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.aq-hero-lead a {
  color: var(--aq-light);
  transition: color 0.16s ease;
}

.aq-hero-lead a:hover {
  color: var(--aq-accent);
  text-decoration: underline;
}

.aq-hero--subpage p,
.aq-hero--subpage .aq-hero-lead {
  max-width: 42rem;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.625;
}

.aq-hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  padding-bottom: 0;
  text-shadow: none;
}

.aq-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 4rem;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  background: var(--aq-orange);
  color: var(--aq-dark);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  font-family: var(--aq-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.55;
  padding: 1rem 2rem;
  transition: background 0.16s ease, transform 0.16s ease;
}

.aq-hero-button:hover {
  background: #ea6f00;
  transform: translateY(-2px);
}

.aq-icon,
.aq-service-icon,
.aq-feature-icon,
.aq-contact-icon,
.aq-info-icon,
.aq-process-icon,
.aq-usp-icon,
.aq-certificate-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--aq-main);
}

.aq-svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.aq-section {
  padding: 4rem 0;
}

.aq-services {
  position: relative;
  z-index: 20;
  margin-top: -6rem;
  padding-bottom: 5rem;
}

.aq-services-inner {
  padding: 0;
}

.aq-section-heading {
  margin: 0 0 1.5rem;
  color: var(--aq-dark);
  font-family: var(--aq-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
}

.aq-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.aq-home-service-grid {
  gap: 2rem;
}

.aq-service-card {
  display: flex;
  min-height: 12.5rem;
  flex-direction: column;
  border: 1px solid var(--aq-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.aq-service-card--home {
  position: relative;
  min-height: 26.7rem;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 0;
  backdrop-filter: blur(12px);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.aq-service-card--home:hover {
  border-color: var(--aq-light);
  box-shadow: 0 0 0 2px var(--aq-light), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.035);
}

.aq-service-card--featured {
  box-shadow: 0 0 0 4px rgba(72, 202, 228, 0.3), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.aq-service-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border-bottom-left-radius: 0.5rem;
  background: var(--aq-orange);
  color: var(--aq-dark);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
  padding: 0.25rem 0.75rem;
}

.aq-service-visual {
  position: relative;
  display: flex;
  height: 16rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(202, 240, 248, 0.3);
}

.aq-service-icon {
  color: var(--aq-main);
}

.aq-service-icon .aq-svg {
  width: 8rem;
  height: 8rem;
}

.aq-service-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: var(--aq-dark);
  font-family: var(--aq-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.aq-service-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.5rem;
}

.aq-service-summary {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.625;
}

.aq-service-card:not(.aq-service-card--home):hover {
  border-color: var(--aq-main);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
  transform: translateY(-2px);
}

.aq-service-card h2,
.aq-service-card h3 {
  margin: 0 0 0.5rem;
  color: var(--aq-dark);
  font-family: var(--aq-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.aq-service-card p {
  margin: 0 0 1.2rem;
  color: var(--aq-muted);
  font-size: 0.95rem;
}

.aq-card-link {
  margin-top: auto;
  color: var(--aq-main);
  font-weight: 700;
}

.aq-service-card--home .aq-card-link {
  display: flex;
  align-items: center;
  border-top: 1px solid #f3f4f6;
  color: var(--aq-main);
  font-size: 0.875rem;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.aq-link-arrow::before {
  content: "\2192";
  display: inline-block;
  transition: transform 0.16s ease;
}

.aq-service-card--home:hover .aq-link-arrow::before {
  transform: translateX(0.25rem);
}

.aq-content-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
}

[data-portal-variant="main_copy"] {
  display: grid;
  grid-column: span 2;
  gap: 2rem;
}

.aq-article {
  color: #4b5563;
}

.aq-article--home {
  max-width: none;
}

.aq-article h1,
.aq-article h2 {
  margin: 0 0 1rem;
  color: var(--aq-dark);
  font-family: var(--aq-font-heading);
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  line-height: 1.15;
}

.aq-article p {
  margin: 0 0 1rem;
}

.aq-article ul {
  margin: 0 0 1.25rem 1.25rem;
}

.aq-article li {
  margin: 0.4rem 0;
}

.aq-features {
  background: #fff;
  padding: 5rem 0;
}

.aq-feature-heading {
  margin-bottom: 4rem;
  text-align: center;
}

.aq-feature-heading h2 {
  margin: 0;
  color: var(--aq-dark);
  font-family: var(--aq-font-heading);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}

.aq-feature-rule {
  display: block;
  width: 5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--aq-orange);
  margin: 1rem auto 0;
}

.aq-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.aq-feature-card {
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.16s ease;
}

.aq-feature-card:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.aq-feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: var(--aq-accent);
  color: var(--aq-main);
  margin: 0 auto 1rem;
}

.aq-feature-icon .aq-svg {
  width: 2rem;
  height: 2rem;
}

.aq-feature-card h3 {
  margin: 0 0 0.5rem;
  color: #1f2937;
  font-family: var(--aq-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
}

.aq-feature-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

.aq-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 0;
}

.aq-process-step {
  display: flex;
  gap: 1rem;
}

.aq-process-step h3 {
  margin: 0 0 0.25rem;
  color: var(--aq-dark);
  font-family: var(--aq-font-heading);
  font-size: 1.125rem;
}

.aq-process-step p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.45;
}

.aq-process-icon {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--aq-main);
  color: #fff;
}

.aq-process-icon .aq-svg {
  width: 1.5rem;
  height: 1.5rem;
}

.aq-certificate-block {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.aq-certificate-block h3 {
  margin: 0 0 0.35rem;
  color: var(--aq-dark);
  font-family: var(--aq-font-heading);
  font-size: 1.05rem;
}

.aq-certificate-block p {
  margin: 0 0 0.9rem;
  color: var(--aq-muted);
  font-size: 0.92rem;
}

.aq-certificate-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.aq-certificate-links a {
  display: flex;
  width: 4rem;
  flex-direction: column;
  align-items: center;
  color: #6b7280;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.aq-certificate-file {
  position: relative;
  display: inline-flex;
  width: 3rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  background: #f9fafb;
  transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.aq-certificate-file::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-bottom-left-radius: 0.25rem;
  background: #fee2e2;
  content: "";
}

.aq-certificate-link-icon {
  color: #9ca3af;
  transition: color 0.16s ease;
}

.aq-certificate-link-icon .aq-svg {
  width: 1.5rem;
  height: 1.5rem;
}

.aq-certificate-links a:hover {
  color: var(--aq-dark);
}

.aq-certificate-links a:hover .aq-certificate-file {
  border-color: var(--aq-main);
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.aq-certificate-links a:hover .aq-certificate-link-icon {
  color: var(--aq-main);
}

.aq-certificate-label {
  margin-top: 0.25rem;
}

.aq-season-banner {
  position: relative;
  overflow: hidden;
  background: var(--aq-dark);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.aq-season-banner h2 {
  margin: 0 0 1rem;
  font-family: var(--aq-font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

.aq-season-banner p {
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: var(--aq-accent);
}

.aq-season-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.aq-season-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.aq-season-chip,
.aq-season-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1rem;
}

.aq-season-chip:hover,
.aq-season-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.aq-season-banner--winter .aq-season-primary {
  border-color: transparent;
  background: var(--aq-orange);
  color: var(--aq-dark);
  box-shadow: 0 10px 22px rgba(255, 133, 0, 0.24);
  padding: 0.75rem 2rem;
}

.aq-season-banner--winter .aq-season-primary:hover {
  border-color: transparent;
  background: #ea6f00;
  transform: translateY(-2px);
}

.aq-season-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  font-size: 0.875rem;
  gap: 1rem;
}

.aq-season-link {
  color: var(--aq-light);
  font-weight: 700;
}

.aq-season-link:hover {
  text-decoration: underline;
}

.aq-season-separator {
  color: rgba(209, 213, 219, 0.3);
}

.aq-info-box {
  border-left: 4px solid var(--aq-main);
  border-radius: 1rem;
  background: rgba(202, 240, 248, 0.35);
  padding: 2rem;
}

.aq-info-box h2,
.aq-info-box h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--aq-dark);
  font-family: var(--aq-font-heading);
  font-size: 1.25rem;
}

.aq-info-icon .aq-svg {
  width: 1.5rem;
  height: 1.5rem;
}

.aq-info-body p {
  margin-bottom: 1rem;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.55;
}

.aq-info-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.aq-info-list strong {
  display: block;
  color: var(--aq-dark);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.aq-info-list p {
  margin: 0;
  color: #374151;
  line-height: 1.55;
}

.aq-info-box--compliance .aq-info-summary {
  margin: 0 0 1rem;
  color: var(--aq-muted);
}

.aq-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.aq-info-action {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border: 1px solid var(--aq-main);
  border-radius: 999px;
  color: var(--aq-main);
  font-weight: 800;
  text-decoration: none;
}

.aq-info-action:first-child {
  background: var(--aq-main);
  color: #fff;
}

.aq-info-action--muted {
  border-color: var(--aq-border);
  color: var(--aq-muted);
}

.aq-sidebar-card {
  position: sticky;
  top: 7rem;
  border: 1px solid var(--aq-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.12);
  padding: 2rem;
}

.aq-sidebar-card h2 {
  margin: 0 0 0.5rem;
  color: var(--aq-dark);
  font-family: var(--aq-font-heading);
  font-size: 1.5rem;
  line-height: 1.2;
}

.aq-sidebar-card p {
  color: var(--aq-muted);
  font-size: 0.92rem;
  margin: 0 0 1.5rem;
}

.aq-usp-list {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 2rem;
  padding: 0;
  list-style: none;
}

.aq-usp-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #374151;
  font-weight: 400;
}

.aq-usp-icon {
  color: #22c55e;
}

.aq-usp-icon .aq-svg {
  width: 1.25rem;
  height: 1.25rem;
}

.aq-sidebar-primary {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  background: var(--aq-orange);
  box-shadow: 0 10px 22px rgba(255, 133, 0, 0.24);
  color: var(--aq-dark);
  font-weight: 700;
  padding: 1rem;
  text-align: center;
  transition: background 0.16s ease, transform 0.16s ease;
}

.aq-sidebar-primary:hover {
  background: #ea6f00;
  transform: translateY(-0.25rem);
}

.aq-sidebar-price {
  color: var(--aq-orange);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 1rem 0 0.25rem;
}

.aq-sidebar-card .aq-sidebar-price-note {
  color: #6b7280;
  font-size: 0.75rem;
  font-style: italic;
  margin: 0 0 1.5rem;
}

.aq-sidebar-phone {
  margin-top: 1rem;
  text-align: center;
}

.aq-sidebar-phone p {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
}

.aq-sidebar-phone a,
.aq-sidebar-phone strong {
  color: var(--aq-main);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.16s ease;
}

.aq-sidebar-phone a:hover {
  color: var(--aq-dark);
}

.aq-gallery-section {
  background: #f8fafc;
  padding: 5rem 0;
}

.aq-gallery-card {
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.12);
  padding: clamp(2rem, 4vw, 3rem);
}

.aq-gallery-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.aq-gallery-heading .aq-section-heading {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
}

.aq-gallery-card .portal-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.aq-gallery-card .portal-gallery-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.aq-gallery-card .portal-gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 4 / 3;
  border: 0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
  cursor: zoom-in;
}

.aq-gallery-card .portal-gallery-item[hidden],
.aq-gallery-card .portal-gallery-item:nth-child(n + 3) {
  display: none;
}

.aq-gallery-card .portal-gallery[data-portal-gallery-ready="true"] .portal-gallery-item:nth-child(n + 3) {
  display: block;
}

.aq-gallery-card .portal-gallery[data-portal-gallery-ready="true"] .portal-gallery-item[hidden] {
  display: none;
}

.aq-gallery-card .portal-gallery-item picture,
.aq-gallery-card .portal-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.aq-gallery-card .portal-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.aq-gallery-card .portal-gallery-item:hover img {
  transform: scale(1.02);
}

.aq-gallery-card .portal-gallery-track-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.aq-gallery-card .portal-gallery-track-button {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--aq-main);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 105, 148, 0.22);
  padding: 0;
}

.aq-gallery-card .portal-gallery-track-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.aq-gallery-card .portal-gallery-track-dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 0;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
}

.aq-gallery-card .portal-gallery-track-dot--active,
.aq-gallery-card .portal-gallery-track-dot[aria-current="true"] {
  background: var(--aq-main);
}

.aq-gallery-card .portal-gallery-track-dot:nth-child(even) {
  display: none;
}

.aq-gallery-card .portal-gallery-lightbox[hidden] {
  display: none;
}

.aq-gallery-card .portal-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.aq-gallery-card .portal-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 23, 35, 0.86);
  border: 0;
}

.aq-gallery-card .portal-gallery-stage {
  position: relative;
  z-index: 1;
  width: min(72rem, 94vw);
  color: #fff;
}

.aq-gallery-card .portal-gallery-stage img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #06141d;
  border-radius: 0.75rem;
}

.aq-gallery-card .portal-gallery-close,
.aq-gallery-card .portal-gallery-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #fff;
  background: rgba(0, 105, 148, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.aq-gallery-card .portal-gallery-close {
  top: 0.75rem;
  right: 0.75rem;
}

.aq-gallery-card .portal-gallery-arrow--prev {
  top: 50%;
  left: 0.75rem;
}

.aq-gallery-card .portal-gallery-arrow--next {
  top: 50%;
  right: 0.75rem;
}

.aq-gallery-card .portal-gallery-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  color: #fff;
}

.aq-owner-card {
  float: left;
  width: min(12rem, 42vw);
  margin: 0 1.5rem 1rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

.aq-owner-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.aq-owner-card figcaption {
  background: var(--aq-dark);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 0.45rem;
}

.aq-contact {
  background: #f8fafc;
  padding: 5rem 0;
}

.aq-contact-card {
  display: grid;
  grid-template-columns: minmax(16rem, 2fr) minmax(0, 3fr);
  max-width: 56rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.16);
}

.aq-contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: var(--aq-main);
  color: #fff;
  padding: clamp(1.6rem, 4vw, 2.5rem);
}

.aq-contact-info::after {
  position: absolute;
  right: -1.25rem;
  bottom: 1.75rem;
  width: 10rem;
  height: 5.8rem;
  color: rgba(255, 255, 255, 0.14);
  content: "";
  background: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 92' fill='none' stroke='black' stroke-width='10' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 14c18 18 34 18 52 0s34-18 52 0 34 18 52 0'/%3E%3Cpath d='M4 46c18 18 34 18 52 0s34-18 52 0 34 18 52 0'/%3E%3Cpath d='M4 78c18 18 34 18 52 0s34-18 52 0 34 18 52 0'/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.aq-contact-info h2 {
  margin: 0 0 1rem;
  font-family: var(--aq-font-brand);
  font-size: 1.6rem;
  font-weight: 700;
}

.aq-contact-info p {
  color: var(--aq-accent);
}

.aq-contact-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.aq-contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.aq-contact-icon .aq-svg {
  width: 1.25rem;
  height: 1.25rem;
}

.aq-contact-copy {
  min-width: 0;
}

.aq-contact-line .aq-contact-copy > span {
  display: block;
  color: var(--aq-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aq-contact-line strong {
  display: block;
  font-size: 1.2rem;
}

.aq-form-panel {
  padding: clamp(1.6rem, 4vw, 2.5rem);
}

.aq-form-panel h2 {
  margin: 0 0 1.25rem;
  color: var(--aq-dark);
  font-family: var(--aq-font-heading);
  font-size: 1.6rem;
}

.aq-form-panel form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aq-form-panel label {
  display: grid;
  gap: 0.35rem;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aq-form-panel label:has(select),
.aq-form-panel label:has(textarea),
.aq-form-panel button[type="submit"] {
  grid-column: 1 / -1;
}

.aq-form-panel input,
.aq-form-panel select,
.aq-form-panel textarea {
  width: 100%;
  border: 1px solid var(--aq-border);
  border-radius: 0.35rem;
  background: #f9fafb;
  color: #1f2937;
  padding: 0.9rem;
  outline: none;
  text-transform: none;
}

.aq-form-panel input[type="hidden"] {
  display: none;
}

.aq-form-panel textarea {
  min-height: 8rem;
  resize: vertical;
}

.aq-form-panel input:focus,
.aq-form-panel select:focus,
.aq-form-panel textarea:focus {
  border-color: var(--aq-main);
  box-shadow: 0 0 0 3px rgba(0, 105, 148, 0.12);
}

.aq-form-panel button[type="submit"] {
  border: 0;
  border-radius: 0.65rem;
  background: var(--aq-dark);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  padding: 1rem;
  transition: background 0.16s ease, transform 0.16s ease;
}

.aq-form-panel button[type="submit"]:hover {
  background: var(--aq-main);
  transform: translateY(-1px);
}

.aq-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--aq-dark);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.aq-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: var(--aq-font-brand);
  font-size: 1.2rem;
  font-weight: 700;
}

.aq-footer-brand .aq-logo-box {
  width: 2.5rem;
  height: 2.5rem;
}

.aq-footer-brand img {
  height: 2rem;
}

.aq-footer p {
  margin: 0 auto 2rem;
  max-width: 42rem;
  color: #a8b3bf;
}

.aq-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 44rem;
  margin: 0 auto 3rem;
  text-align: left;
}

.aq-footer h3 {
  color: var(--aq-light);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aq-footer ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  color: #a8b3bf;
  list-style: none;
}

.aq-footer-grid > div:nth-child(2) ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.aq-footer a:hover {
  color: var(--aq-light);
}

.aq-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin: -1rem 0 1.5rem;
  color: #a8b3bf;
  font-size: 0.85rem;
}

.aq-footer-legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.aq-footer-legal button:hover {
  color: var(--aq-light);
}

.aq-footer-bottom {
  color: #a8b3bf;
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .aq-desktop-nav {
    display: none;
  }

  .aq-mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .aq-mobile-phone {
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    padding: 0.58rem 0.8rem;
    font-size: 0.9rem;
  }

  .aq-nav-inner {
    min-height: 64px;
    gap: 0.9rem;
  }

  .aq-brand-copy strong {
    font-size: 1.05rem;
  }

  .aq-brand-copy span {
    font-size: 0.96rem;
  }
}

@media (max-width: 820px) {
  .aq-card-grid,
  .aq-gallery-card .portal-gallery-track,
  .aq-content-shell,
  .aq-contact-card,
  .aq-footer-grid,
  .aq-process-grid,
  .aq-feature-grid {
    grid-template-columns: 1fr;
  }

  .aq-services {
    margin-top: -4rem;
  }

  .aq-sidebar-card {
    position: static;
  }

  .aq-owner-card {
    float: none;
    width: min(14rem, 100%);
    margin: 0 0 1.25rem;
  }

  .aq-feature-grid {
    gap: 2rem;
  }

  .aq-footer-grid > div:nth-child(2) ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aq-container.aq-content-shell {
    width: min(100% - 3rem, 1232px);
  }

  [data-portal-variant="main_copy"] {
    grid-column: auto;
  }

  .aq-gallery-card {
    padding: 1.5rem;
  }
}

@media (max-width: 540px) {
  .aq-container {
    width: min(100% - 2rem, 1232px);
  }

  .aq-logo-box {
    width: 2.5rem;
    height: 2.5rem;
  }

  .aq-logo-box img {
    height: 2rem;
  }

  .aq-brand {
    gap: 0.55rem;
  }

  .aq-brand-copy strong {
    font-size: 0.92rem;
    letter-spacing: 0.04em;
  }

  .aq-brand-copy span {
    font-size: 0.82rem;
    letter-spacing: 0.07em;
  }

  .aq-mobile-actions {
    gap: 0.45rem;
  }

  .aq-mobile-phone {
    padding: 0.5rem 0.62rem;
    font-size: 0.82rem;
  }

  .aq-phone:not(.aq-mobile-phone) {
    display: none;
  }

  .aq-hero--home {
    min-height: 100vh;
    align-items: flex-end;
    padding: 7rem 0 5rem;
  }

  .aq-hero-content {
    padding-inline: 1.5rem;
  }

  .aq-container.aq-content-shell {
    width: min(100% - 3rem, 1232px);
  }

  .aq-hero--home .aq-hero-content {
    transform: translateY(-2.5rem);
  }

  .aq-hero h1 {
    font-size: 2.25rem;
    line-height: 1.25;
  }

  .aq-hero--subpage h1 {
    font-size: 1.875rem;
    line-height: 1.25;
  }

  .aq-hero p,
  .aq-hero-lead {
    font-size: 1.125rem;
    line-height: 1.625;
  }

  .aq-hero-actions {
    margin-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .aq-hero-button {
    width: 100%;
  }

  .aq-service-card--home {
    min-height: 24rem;
  }

  .aq-service-visual {
    height: 14rem;
  }

  .aq-service-icon .aq-svg {
    width: 6rem;
    height: 6rem;
  }

  .aq-contact-card {
    border-radius: 1rem;
  }

  .aq-form-panel form {
    grid-template-columns: 1fr;
  }
}
