:root {
  --sapphire: #0b3a7a;
  --sapphire-mid: #1a4b9c;
  --cyan-glass: #5ec8e8;
  --cyan-soft: #7ad4f0;
  --white-glow: #f4f9ff;
  --indigo-deep: #0a1630;
  --indigo-mid: #1b2750;
  --glass: rgba(244, 249, 255, 0.08);
  --glass-strong: rgba(94, 200, 232, 0.14);
  --text: #e8f1ff;
  --text-muted: #a8bdd9;
  --border: rgba(122, 212, 240, 0.28);
  --radius: 2px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --shadow-deep: 0 24px 60px rgba(10, 22, 48, 0.55);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(94, 200, 232, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(26, 75, 156, 0.45), transparent 50%),
    linear-gradient(165deg, var(--indigo-deep) 0%, #0d1f45 45%, var(--indigo-mid) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

a {
  color: var(--cyan-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--white-glow);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white-glow);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }

ul, ol { padding-left: 1.2rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(10, 22, 48, 0.72);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white-glow);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--cyan-soft);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cyan-soft);
}

@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 22, 48, 0.96);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-nav.is-open { max-height: 320px; }
  .site-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem 1.4rem;
    gap: 0.85rem;
  }
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 22, 48, 0.92) 8%, rgba(11, 58, 122, 0.55) 48%, rgba(10, 22, 48, 0.35) 100%),
    linear-gradient(to top, rgba(10, 22, 48, 0.88), transparent 45%);
}

.hero__sheen {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 18px,
      rgba(122, 212, 240, 0.035) 18px,
      rgba(122, 212, 240, 0.035) 19px
    );
  pointer-events: none;
  animation: sheen-drift 18s linear infinite;
}

@keyframes sheen-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-40px); }
}

.hero__panel {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.5rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--cyan-soft);
  margin: 0 0 1.1rem;
  letter-spacing: -0.02em;
}

.hero__lead {
  max-width: 34rem;
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.hero h1 {
  max-width: 18ch;
  margin: 0 0 1rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.section--glass {
  margin: 1.5rem auto;
  max-width: calc(var(--max) + 2rem);
  padding: 3rem 1.75rem;
  background: linear-gradient(145deg, rgba(26, 75, 156, 0.28), rgba(10, 22, 48, 0.55));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(244, 249, 255, 0.08);
  backdrop-filter: blur(10px);
}

.section__head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section__head p,
.section__cta {
  color: var(--text-muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan-glass);
  margin-bottom: 0.65rem;
}

.section__grid--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 800px) {
  .section__grid--split { grid-template-columns: 1fr; }
}

.media-frame {
  margin: 0;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-deep), inset 0 0 40px rgba(94, 200, 232, 0.08);
  overflow: hidden;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(94, 200, 232, 0.12), transparent 40%);
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.price-line {
  color: var(--cyan-soft);
  font-weight: 500;
  margin: 1rem 0;
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--cyan-glass);
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.offer-list__item a {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  color: inherit;
  background: var(--glass);
  border: 1px solid transparent;
  border-left: 2px solid var(--cyan-glass);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.offer-list__item a:hover {
  background: var(--glass-strong);
  border-color: var(--border);
}

.offer-list__title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white-glow);
}

.offer-list__short {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.offer-list__meta {
  color: var(--cyan-soft);
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .offer-list__item a {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.resonance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.resonance li {
  padding: 1.4rem 1.2rem;
  background: linear-gradient(160deg, rgba(244, 249, 255, 0.06), rgba(11, 58, 122, 0.2));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.resonance li::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(94, 200, 232, 0.35);
  opacity: 0.7;
}

@media (max-width: 800px) {
  .resonance { grid-template-columns: 1fr; }
}

.quote {
  margin: 0;
  padding: 2rem 1.75rem;
  border-left: 3px solid var(--cyan-glass);
  background: rgba(11, 58, 122, 0.25);
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--white-glow);
}

.quote footer {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--crystal {
  color: var(--indigo-deep);
  background: linear-gradient(135deg, var(--cyan-soft), #b8ecf8 45%, var(--cyan-glass));
  box-shadow: 0 0 0 1px rgba(244, 249, 255, 0.25), 0 10px 28px rgba(94, 200, 232, 0.28);
}

.btn--crystal:hover {
  color: var(--indigo-deep);
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--white-glow);
  background: transparent;
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--cyan-soft);
  color: var(--cyan-soft);
}

.crystal-wave {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(244, 249, 255, 0.65);
  pointer-events: none;
  animation: crystal-expand 0.9s ease-out forwards;
}

@keyframes crystal-expand {
  from {
    transform: scale(0.2);
    opacity: 0.9;
  }
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 1.5rem;
}

.page-hero--media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
}

@media (max-width: 800px) {
  .page-hero--media { grid-template-columns: 1fr; }
}

.page-hero p {
  color: var(--text-muted);
  max-width: 40rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 800px) {
  .service-grid { grid-template-columns: 1fr; }
}

.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--glass);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: var(--cyan-glass);
  transform: translateY(-2px);
  color: inherit;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card__body {
  padding: 1.25rem;
}

.service-card__body h2 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}

.service-card__body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 800px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid var(--border);
  background: rgba(11, 58, 122, 0.2);
  overflow: hidden;
}

.blog-card:hover {
  border-color: var(--cyan-soft);
  color: inherit;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.2rem;
}

.blog-card__meta {
  font-size: 0.82rem;
  color: var(--cyan-glass);
  margin-bottom: 0.4rem;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
}

.includes {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.includes li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.includes li::before {
  content: "◇ ";
  color: var(--cyan-glass);
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}

.process-steps li {
  counter-increment: step;
  padding: 1.5rem 1.4rem 1.5rem 4.5rem;
  position: relative;
  background: linear-gradient(120deg, rgba(94, 200, 232, 0.08), rgba(10, 22, 48, 0.35));
  border: 1px solid var(--border);
}

.process-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.1rem;
  top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cyan-soft);
}

.process-steps h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

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

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(10, 22, 48, 0.45);
  border: 1px solid var(--border);
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--white-glow);
  background: rgba(244, 249, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--cyan-glass);
  outline-offset: 1px;
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
  border-color: #f07178;
}

.field-error,
.form-status--error {
  color: #f8a0a6;
  font-size: 0.88rem;
  margin: 0;
}

.form-status--success {
  color: #8ee0b5;
  font-size: 0.92rem;
  margin: 0.5rem 0 0;
}

.legal-content {
  max-width: 46rem;
}

.legal-content h2 {
  margin-top: 2.2rem;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.error-page {
  min-height: 55vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.error-page p {
  color: var(--text-muted);
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  background: rgba(10, 22, 48, 0.65);
  padding: 2.5rem 1.25rem 1.5rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 2rem;
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white-glow);
  margin-bottom: 0.4rem;
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 0.35rem;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer__legal a {
  text-decoration: none;
  color: var(--text-muted);
}

.site-footer__legal a:hover {
  color: var(--cyan-soft);
}

.site-footer__copy {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(122, 212, 240, 0.15);
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 800px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  max-width: 560px;
  margin: 0 auto;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(145deg, rgba(27, 39, 80, 0.96), rgba(10, 22, 48, 0.98));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(12px);
}

.cookie-banner__inner {
  display: grid;
  gap: 0.9rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.section__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
