:root {
  --navy: #061846;
  --navy-2: #0B234F;
  --teal: #00A6A6;
  --teal-soft: #E6F7F7;
  --white: #FFFFFF;
  --light: #F4F7FA;
  --border: #D9E2EC;
  --text: #4B5563;
  --dark: #111827;
  --glow: rgba(0, 166, 166, 0.45);
  --gradient: linear-gradient(135deg, #061846 0%, #0B234F 52%, #00A6A6 145%);
  --shadow-soft: 0 20px 56px rgba(6,24,70,0.07);
  --shadow-strong: 0 30px 90px rgba(6,24,70,0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 4px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.brand-logo {
  height: 105px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(0,166,166,0.25);
  font-size: 13px;
  flex: 0 0 auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a {
  transition: color .2s ease, transform .2s ease;
}

.menu a:hover {
  color: var(--teal);
  transform: translateY(-1px);
}

.menu .cta {
  background: var(--teal);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0,166,166,0.24);
}

.menu .flag-link {
  font-size: 22px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 6px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.menu .flag-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,166,166,0.22);
}

.mobile-toggle {
  display: none;
  position: relative;
  z-index: 1002;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 11px 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border-radius: 12px;
  transition: background .2s ease;
}

.mobile-toggle:hover {
  background: var(--teal-soft);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

.mobile-toggle.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu overlay backdrop */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(6,24,70,0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 18% 24%, rgba(0, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.13), transparent 22%),
    radial-gradient(circle at 72% 82%, rgba(0,166,166,0.30), transparent 24%);
  animation: meshMove 12s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
  opacity: 0.8;
}

@keyframes meshMove {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-4%, 3%, 0) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  padding: 100px 24px 88px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.08);
  color: #D9FFFF;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 26px;
}

.hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.84);
  max-width: 690px;
  margin-bottom: 34px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(0,166,166,0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.24);
  color: var(--white);
}

.hero-system {
  position: relative;
  height: 540px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.28);
  overflow: hidden;
}

.hero-system::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 38px 38px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,255,255,0.45);
  box-shadow: 0 0 55px rgba(0,166,166,0.22);
}

.orb.one {
  width: 270px;
  height: 270px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: rotateA 14s linear infinite;
}

.orb.two {
  width: 390px;
  height: 390px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: rotateB 20s linear infinite;
}

.orb.three {
  width: 145px;
  height: 145px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,255,255,0.28), rgba(0,166,166,0.06));
  animation: pulse 2.8s ease-in-out infinite alternate;
}

@keyframes rotateA {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateB {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes pulse {
  from { box-shadow: 0 0 30px rgba(0,166,166,0.20); }
  to { box-shadow: 0 0 90px rgba(0,255,255,0.42); }
}

.node {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #00EDED;
  box-shadow: 0 0 24px rgba(0,255,255,0.9);
}

.node.n1 { top: 92px; left: 50%; }
.node.n2 { top: 245px; right: 82px; }
.node.n3 { bottom: 105px; left: 118px; }
.node.n4 { bottom: 86px; right: 145px; }

.glass-card {
  position: absolute;
  width: 230px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}

.glass-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--white);
}

.glass-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.glass-card.a { top: 38px; left: 34px; }
.glass-card.b { right: 34px; top: 185px; }
.glass-card.c { left: 50px; bottom: 42px; }

.section {
  padding: 100px 24px;
}

.section-light {
  background: var(--light);
}

.section-dark {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(0,166,166,0.20), transparent 24%),
    radial-gradient(circle at 86% 80%, rgba(0,166,166,0.18), transparent 28%);
  pointer-events: none;
}

.container {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}

.heading {
  max-width: 840px;
  margin-bottom: 48px;
}

.heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-dark h2 {
  color: var(--white);
}

.heading p {
  font-size: 18px;
  color: var(--text);
}

.section-dark .heading p {
  color: rgba(255,255,255,0.76);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 20px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(0,166,166,0.12), transparent 35%);
  opacity: 0;
  transition: opacity .25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,166,166,0.38);
  box-shadow: 0 28px 70px rgba(6,24,70,0.12);
}

.card:hover::before {
  opacity: 1;
}

.index {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  margin-bottom: 20px;
}

.card h3 {
  position: relative;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.card p {
  position: relative;
  color: var(--text);
  font-size: 15px;
}

.dark-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  transition: transform .25s ease, background .25s ease;
}

.dark-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.11);
}

.dark-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
}

.dark-card p {
  color: rgba(255,255,255,0.74);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.terminal {
  position: relative;
  min-height: 460px;
  border-radius: 30px;
  background: linear-gradient(145deg, #061846, #0B234F);
  border: 1px solid rgba(0,166,166,0.24);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  padding: 28px;
}

.terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.75;
}

.terminal-line {
  position: relative;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
  margin-bottom: 14px;
  font-size: 14px;
}

.terminal-line strong {
  color: #8CFFFF;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.step {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 0 0 8px var(--teal-soft);
}

.step h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 20px;
}

.step p {
  color: var(--text);
  font-size: 15px;
}

.company-panel {
  padding: 48px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(6,24,70,0.08);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--navy);
  font-weight: 850;
  font-size: 13px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card {
  padding: 42px;
  border-radius: 32px;
  background: var(--gradient);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0,166,166,0.26);
  right: -90px;
  top: -90px;
}

.contact-card h2,
.contact-card p {
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
}

.details {
  padding: 42px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(6,24,70,0.08);
}

.details h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 18px;
}

.details p {
  color: var(--text);
  margin-bottom: 10px;
}

.details-on-dark,
.details-on-dark p {
  color: rgba(255,255,255,0.9);
}
.details-on-dark h3 {
  color: #fff;
}

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  text-align: center;
  padding: 34px 24px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.footer-links a:hover {
  color: var(--teal);
}

.legal-main {
  background: var(--light);
}

.legal-hero {
  background: var(--gradient);
  color: var(--white);
  padding: 82px 24px 54px;
}

.legal-hero .container,
.legal-content {
  max-width: 920px;
}

.legal-hero h1 {
  color: var(--white);
}

.legal-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
}

.legal-content {
  margin: 0 auto;
  padding: 54px 24px 84px;
}

.legal-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--shadow-soft);
}

.legal-panel h2 {
  font-size: 28px;
  margin-top: 30px;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p,
.legal-panel li {
  color: var(--text);
  margin-bottom: 12px;
}

.legal-panel ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.note {
  background: var(--teal-soft);
  color: var(--navy) !important;
  padding: 16px;
  border-radius: 16px;
  font-weight: 700;
}

/* ===== CONTACT FORM ===== */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,166,166,0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .error {
  color: #DC2626;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #DC2626;
}

.form-group.has-error .error {
  display: block;
}

.form-success {
  display: none;
  padding: 20px;
  border-radius: 16px;
  background: var(--teal-soft);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin-top: 16px;
}

.form-success.is-visible {
  display: block;
}

.form-error-global {
  display: none;
  padding: 16px;
  border-radius: 14px;
  background: #FEE2E2;
  color: #DC2626;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}

.form-error-global.is-visible {
  display: block;
}

/* honeypot – hidden from humans */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ===== COOKIE CONSENT BAR ===== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 18px 24px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 -10px 40px rgba(6,24,70,0.25);
  transform: translateY(100%);
  transition: transform .4s ease;
}

.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-bar-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-bar p {
  flex: 1;
  min-width: 260px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

.cookie-bar p a {
  color: var(--teal);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.cookie-btn-accept {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0,166,166,0.25);
}

.cookie-btn-reject {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.18);
}

@media (max-width: 720px) {
  .cookie-bar-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }
}

/* ===== CONTACT FORM LAYOUT (per mobile, dentro contact-grid) ===== */
.contact-form-wrapper {
  padding: 42px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(6,24,70,0.08);
}

.contact-form-wrapper h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 22px;
}

.contact-form-wrapper .btn {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1100px) {
  .hero-inner,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    align-items: center;
  }

  .mobile-toggle {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    width: min(320px, 80vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 96px 28px 40px;
    gap: 2px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    box-shadow: -8px 0 40px rgba(6,24,70,0.1);
    overflow-y: auto;
    display: flex;
    justify-content: flex-start;
  }

  .menu.is-open {
    transform: translateX(0);
  }

  .menu a {
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 16px;
    text-align: left;
    color: var(--navy);
  }

  .menu a:hover {
    background: var(--teal-soft);
    transform: none;
  }

  .menu .cta {
    text-align: center;
    margin-top: 12px;
    padding: 14px 18px;
  }

  .menu .flag-link {
    font-size: 28px;
    text-align: center;
    padding: 14px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
  }

  .menu .flag-link:hover {
    box-shadow: none;
    transform: none;
  }

  .brand span:last-child {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-inner {
    padding: 82px 20px 70px;
  }

  .section {
    padding: 74px 20px;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-system {
    height: auto;
    min-height: 500px;
  }

  .glass-card {
    position: relative;
    inset: auto !important;
    width: auto;
    margin: 18px;
  }

  .hero h1,
  h1 {
    font-size: 42px;
  }

  .company-panel,
  .contact-card,
  .details,
  .legal-panel {
    padding: 30px;
  }
}
