* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #041017;
  color: #eef8f8;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(30, 215, 180, 0.08), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(6, 156, 214, 0.12), transparent 20%);
  pointer-events: none;
  z-index: -2;
}

.topo-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.topo-layer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('contours.svg');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.04;
  filter: invert(1) brightness(1.1);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0) 100%);
}

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

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

/* ─── Scroll Nav ────────────────────────────────────────────────────────── */
.scroll-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(4, 16, 23, 0.98), rgba(4, 16, 23, 0.95));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
  backdrop-filter: blur(4px);
}

.scroll-nav.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  color: #eef8f8;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.scroll-nav-link:hover {
  transform: translateY(-2px);
  background: rgba(32, 208, 180, 0.15);
  color: #6ee7ff;
}

/* ─── Header / Nav ──────────────────────────────────────────────────────── */
.site-header {
  padding: 1rem 24px 0;
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.brand img {
  width: 280px;
  height: auto;
  filter: invert(1) brightness(2);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #eef8f8;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 3rem 24px 4rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: #6ee7ff;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.1;
  max-width: 20ch;
}

.hero-copy p {
  max-width: 50ch;
  margin: 1.5rem 0 0;
  line-height: 1.8;
  color: #cde7e9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #20d0b4, #1a8ce0);
  color: #041017;
}

.hero-btn-secondary {
  border: 1px solid rgba(255,255,255,0.12);
  color: #eef8f8;
  background: rgba(255,255,255,0.05);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(32, 208, 180, 0.18);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 500px;
  background: linear-gradient(180deg, rgba(5, 15, 24, 0.96), rgba(6, 16, 25, 0.88));
  border: 1px solid rgba(255,255,255,0.07);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
}

.hero-card-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(2, 10, 16, 0.75);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-card-overlay h2 {
  margin: 0 0 0.65rem;
  font-size: 1.7rem;
}

.hero-card-overlay p {
  margin: 0;
  color: #d7e8ea;
  line-height: 1.7;
}

/* ─── Sections ──────────────────────────────────────────────────────────── */
.section {
  padding-block: 3.5rem;
  padding-inline: max(24px, env(safe-area-inset-left));
  padding-inline-end: max(24px, env(safe-area-inset-right));
}

.section-head {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-content {
  max-width: 1180px;
  margin: 0 auto;
  line-height: 1.75;
  color: #d2e4e8;
}

.section-head .tag {
  display: inline-block;
  margin-bottom: 1rem;
  color: #6ee7ff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.1;
  text-align: center;
}

/* ─── Service Cards ─────────────────────────────────────────────────────── */
.services-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card-container {
  perspective: 1000px;
}

.image-container {
  overflow: hidden;
}

.service-card-container:hover .service-card-image {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.service-card {
  position: relative;
  width: 100%;
  height: 450px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.service-card.flipped {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-front {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.16);
}

.card-back {
  transform: rotateY(180deg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.16);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  will-change: transform;
  transform-origin: center;
}

.card-front h3 {
  margin: 0;
  padding: 1.2rem 1.5rem 0;
  font-size: 1.25rem;
}

.card-front p {
  margin: 0;
  padding: 0.8rem 1.5rem 1.5rem;
  line-height: 1.85;
  color: #c8e5e8;
}

.card-back h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.2rem;
  color: #20d0b4;
}

.card-back p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
  color: #eef8f8;
  font-size: 0.9rem;
}

.card-back ul {
  margin: 0;
  padding-left: 1rem;
  list-style: none;
}

.card-back li {
  margin-bottom: 0.4rem;
  line-height: 1.4;
  color: #c8e5e8;
  font-size: 0.85rem;
  position: relative;
}

.card-back li::before {
  content: "✓";
  position: absolute;
  left: -1rem;
  color: #20d0b4;
  font-weight: bold;
}

.btn-more {
  margin-top: auto;
  margin-bottom: 1rem;
  align-self: center;

  display: flex;
  align-items: center;
  gap: 0.4rem;

  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: rgba(32, 208, 180, 0.12);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-icon-more {
  width: 18px;
  height: 18px;
}

/* ─── About & Contact Cards ─────────────────────────────────────────────── */
.about-card,
.contact-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 40px rgba(0,0,0,0.16);
}

.about-card {
  display: grid;
  gap: 2rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-content p {
  margin: 0 0 1rem 0;
  line-height: 1.7;
  color: #d2eaed;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 3px solid rgba(32, 208, 180, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ─── Contact Section ───────────────────────────────────────────────────── */
.contact-card-copy h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.1;
}

.contact-card-copy p {
  margin: 0;
  line-height: 1.85;
  color: #d2eaed;
}

.contact-card {
  display: grid;
  gap: 1.6rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  height: 100%;
  align-content: space-between;
}

.contact-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

.contact-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(4, 16, 23, 0.9));
  color: white;
}

.contact-image-overlay h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.contact-image-overlay p {
  margin: 0 0 1.25rem 0;
  line-height: 1.6;
  font-size: 0.95rem;
  opacity: 0.95;
}

.contact-features {
  display: grid;
  gap: 0.75rem;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ─── Contact Form ──────────────────────────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.95rem;
  color: #a8dede;
  font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #eef8f8;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #20d0b4;
  background: rgba(255,255,255,0.08);
}

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

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #20d0b4, #1a8ce0);
  color: #041017;
  font-weight: 700;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
}

.contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(32,208,180,0.22);
}

/* ─── Custom Select Dropdown ────────────────────────────────────────────── */
.custom-select {
  position: relative;
  user-select: none;
  width: 100%;
  min-width: 0;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #eef8f8;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.custom-select-trigger:focus {
  outline: none;
  border-color: #20d0b4;
  background: rgba(255,255,255,0.08);
}

.custom-select.open .custom-select-trigger {
  border-color: #20d0b4;
  background: rgba(255,255,255,0.08);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-select-value {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 1rem;
  color: #eef8f8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select-value.placeholder {
  color: rgba(238, 248, 248, 0.4);
}

.custom-select-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: rgba(238, 248, 248, 0.5);
  transition: transform 0.25s ease, color 0.2s ease;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
  color: #20d0b4;
}

/* Disabled state */
.custom-select.custom-select-disabled .custom-select-trigger {
  cursor: not-allowed;
  opacity: 0.45;
}

/* Dropdown panel */
.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 200;
  background: #0a2130;
  border: 1px solid #20d0b4;
  border-top: none;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  overflow: hidden;
  max-height: 0;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease;
  /* Subtle inset shadow at top to blend with trigger */
  box-shadow: 0 16px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(32,208,180,0.12);
  scrollbar-width: thin;
  scrollbar-color: rgba(32,208,180,0.3) transparent;
}

.custom-select-dropdown::-webkit-scrollbar {
  width: 4px;
}
.custom-select-dropdown::-webkit-scrollbar-thumb {
  background: rgba(32,208,180,0.3);
  border-radius: 4px;
}

.custom-select.open .custom-select-dropdown {
  max-height: 260px;
  opacity: 1;
  pointer-events: auto;
}

.custom-select-option {
  padding: 0.82rem 1rem;
  font-size: 0.95rem;
  color: #c8e5e8;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover {
  background: rgba(32, 208, 180, 0.12);
  color: #eef8f8;
  padding-left: 1.35rem;
}

.custom-select-option.selected {
  background: rgba(32, 208, 180, 0.18);
  color: #20d0b4;
  font-weight: 600;
}

.custom-select-option.selected::after {
  content: "✓";
  float: right;
  font-size: 0.85rem;
}

/* ─── Contact Actions ───────────────────────────────────────────────────── */
.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 1.5rem;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #eef8f8;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(32,208,180,0.22);
}

.contact-btn-primary {
  background: linear-gradient(135deg, #20d0b4, #1a8ce0);
  color: #041017;
  border: none;
}

.contact-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #eef8f8;
}

.btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 24px 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: #9fc8cb;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a,
.site-footer a {
  color: #eef8f8;
  text-decoration: none;
}

.footer-links a:hover {
  color: #20d0b4;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 2.4rem;
  }

  .hero-card {
    min-height: 320px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-image-card {
    min-height: 320px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .about-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    width: 180px;
    height: 180px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section,
  .site-footer {
    padding-inline: max(18px, env(safe-area-inset-left));
    padding-inline-end: max(18px, env(safe-area-inset-right));
  }

  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 0.45rem 0.65rem;
    font-size: 0.82rem;
    text-align: center;
    white-space: nowrap;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .hero-btn {
    min-width: 0;
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
  }

  .hero-card-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-card,
  .contact-card {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-inline: auto;
  }

  .contact-layout,
  .contact-actions {
    width: 100%;
  }

  .contact-btn {
    justify-content: center;
    width: 100%;
  }

  .scroll-nav {
    gap: 0.35rem;
    padding: 0.35rem 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    min-height: auto;
  }

  .scroll-nav-link {
    padding: 0.35rem 0.5rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

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

/* ─── Form Status Message ────────────────────────────────────────────────── */
.form-status {
  display: none;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.form-status-success {
  display: block;
  background: rgba(32, 208, 180, 0.12);
  border: 1px solid rgba(32, 208, 180, 0.4);
  color: #20d0b4;
}

.form-status-error {
  display: block;
  background: rgba(220, 60, 60, 0.1);
  border: 1px solid rgba(220, 60, 60, 0.35);
  color: #ff7b7b;
}

/* Submit button disabled state */
.contact-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ─── Legal Sections ─────────────────────────────────────────────────────── */
.section-legal {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.legal-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.legal-card .section-head {
  text-align: left;
  margin-bottom: 1.5rem;
}

.legal-card .section-head h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.section-content h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1rem;
  color: #6ee7ff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-content h3:first-child {
  margin-top: 0;
}

.section-content p {
  margin: 0 0 0.9rem;
  line-height: 1.75;
  color: #c8dfe2;
  font-size: 0.95rem;
}

.section-content a {
  color: #20d0b4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-content a:hover {
  color: #6ee7ff;
}

.legal-list {
  margin: 0.5rem 0 1rem 0;
  padding-left: 1.2rem;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding: 0.3rem 0;
  color: #c8dfe2;
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-list li::before {
  content: "–";
  position: absolute;
  left: -1.2rem;
  color: #20d0b4;
}

/* ─── Form Consent Text ──────────────────────────────────────────────────── */
.form-consent {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: rgba(168, 222, 222, 0.6);
  line-height: 1.5;
}

.form-consent a {
  color: rgba(110, 231, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent a:hover {
  color: #6ee7ff;
}

/* ─── Cookie Notice ──────────────────────────────────────────────────────── */
.cookie-notice {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  background: rgba(10, 33, 48, 0.96);
  border: 1px solid rgba(32, 208, 180, 0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  font-size: 0.875rem;
  color: #c8dfe2;
  max-width: calc(100vw - 3rem);
}

.cookie-notice-close {
  padding: 0.35rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(32,208,180,0.4);
  background: rgba(32,208,180,0.1);
  color: #20d0b4;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.cookie-notice-close:hover {
  background: rgba(32,208,180,0.2);
}

@media (max-width: 680px) {
  .legal-card {
    padding: 1.5rem;
  }

  .cookie-notice {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    white-space: normal;
    bottom: 1rem;
  }
}
