@font-face {
  font-family: 'PP Neue Montreal';
  src: url('https://assets.website-files.com/6009ec8cda7f305645c9d91b/60176f9bb43e36419997ecfe_PPNeueMontreal-Book.otf')
    format('opentype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'PP Neue Montreal';
  src: url('https://assets.website-files.com/6009ec8cda7f305645c9d91b/60176f9b39c5673e51a86f5a_PPNeueMontreal-Medium.otf')
    format('opentype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'PP Mondwest';
  src: url('/PPMondwest-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'PP Neue Montreal', system-ui, -apple-system, sans-serif;
  color: #0c4a6e;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 45%, #e0f2fe 100%);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.page::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='%230EA5E9' fill-opacity='0.06'%3E%3Cpath d='M30 70a11 11 0 0 1-1-21.9A13 13 0 0 1 54 50a9 9 0 0 1-1 20H30z'/%3E%3Cpath d='M95 118a9 9 0 0 1-.8-17.9A10.5 10.5 0 0 1 114 102a7.3 7.3 0 0 1-.8 16H95z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 55%, transparent 100%);
}

.brand-logo {
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #fff;
  color: #0c4a6e;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow:
    0 1px 2px 0 rgba(5, 26, 36, 0.1),
    0 4px 12px 0 rgba(5, 26, 36, 0.08),
    0 16px 30px 0 rgba(5, 26, 36, 0.08),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease;
}

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-logo svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.lang-toggle {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 9999px;
  background: #fff;
  color: #0c4a6e;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow:
    0 1px 2px 0 rgba(5, 26, 36, 0.1),
    0 4px 12px 0 rgba(5, 26, 36, 0.08),
    0 16px 30px 0 rgba(5, 26, 36, 0.08),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease;
}

.lang-toggle:hover {
  transform: scale(1.02);
}

.lang-flag {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  border-radius: 9999px;
}

.lang-code {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lang-sep {
  color: rgba(12, 74, 110, 0.3);
}

.lang-switch {
  color: rgba(12, 74, 110, 0.6);
}

.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 3rem;
}

.hero-inner {
  max-width: 40rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-family: ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0369a1;
}

.eyebrow-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: #0ea5e9;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #075985;
  font-weight: 500;
}

.hero h1 span {
  color: #0ea5e9;
  font-family: 'PP Mondwest', Georgia, serif;
}

.hero p {
  margin: 1.25rem auto 0;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #0c4a6e;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 9999px;
  background: #0ea5e9;
  color: #f0f9ff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow:
    0 1px 2px 0 rgba(5, 26, 36, 0.1),
    0 4px 4px 0 rgba(5, 26, 36, 0.09),
    0 9px 6px 0 rgba(5, 26, 36, 0.05),
    0 17px 7px 0 rgba(5, 26, 36, 0.01),
    0 26px 7px 0 rgba(5, 26, 36, 0),
    inset 0 2px 8px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease;
  animation: ctaPulse 2.2s ease-out infinite;
}

.btn-primary:hover {
  transform: scale(1.02);
}

.copy-status {
  display: none;
  font-size: 0.8rem;
  color: #0369a1;
  font-weight: 500;
}

.offer-note {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0369a1;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.footer-inner p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #0c4a6e;
}

.footer-inner .muted {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(12, 74, 110, 0.6);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #fff;
  color: #0c4a6e;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow:
    0 1px 2px 0 rgba(5, 26, 36, 0.1),
    0 4px 12px 0 rgba(5, 26, 36, 0.08),
    0 16px 30px 0 rgba(5, 26, 36, 0.08),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease;
}

.footer-badge:hover {
  transform: scale(1.02);
}

.footer-badge span:first-child {
  color: rgba(12, 74, 110, 0.6);
}

@keyframes ctaPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(14, 165, 233, 0.5),
      0 1px 2px 0 rgba(5, 26, 36, 0.1),
      0 4px 4px 0 rgba(5, 26, 36, 0.09);
  }
  70% {
    box-shadow:
      0 0 0 14px rgba(14, 165, 233, 0),
      0 1px 2px 0 rgba(5, 26, 36, 0.1),
      0 4px 4px 0 rgba(5, 26, 36, 0.09);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(14, 165, 233, 0),
      0 1px 2px 0 rgba(5, 26, 36, 0.1),
      0 4px 4px 0 rgba(5, 26, 36, 0.09);
  }
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-badge {
    align-self: center;
  }
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.contact-modal[hidden] {
  display: none;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 165, 233, 0.4);
  backdrop-filter: blur(4px);
}

.contact-dialog {
  position: relative;
  width: 100%;
  max-width: 30rem;
  border-radius: 1.75rem;
  background: #fff;
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(5, 26, 36, 0.25);
}

.contact-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 9999px;
  background: transparent;
  color: rgba(12, 74, 110, 0.6);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-close:hover {
  background: rgba(12, 74, 110, 0.05);
  color: #0c4a6e;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
}

.contact-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0c4a6e;
}

.contact-expert {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(12, 74, 110, 0.6);
}

.contact-subtitle {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(12, 74, 110, 0.7);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-field label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(12, 74, 110, 0.8);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(12, 74, 110, 0.15);
  border-radius: 1rem;
  background: #f0f9ff;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.875rem;
  color: #0c4a6e;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-field textarea {
  resize: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #0ea5e9;
  background: #fff;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(12, 74, 110, 0.4);
}

.contact-error {
  margin: 0;
  font-size: 0.875rem;
  color: #dc2626;
}

.contact-submit {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 9999px;
  background: #0ea5e9;
  color: #f0f9ff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-submit:hover:not(:disabled) {
  transform: scale(1.02);
}

.contact-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.contact-success {
  padding: 2rem 0;
  text-align: center;
}

.contact-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 9999px;
  background: #0ea5e9;
}

.contact-success-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0c4a6e;
}

.contact-success-message {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: rgba(12, 74, 110, 0.7);
}

.contact-success .contact-submit {
  width: auto;
  margin-top: 1.75rem;
}
