:root {
  --navy: #0b1b2b;
  --sea: #0b6b6f;
  --aqua: #24b6b0;
  --sand: #f4efe8;
  --cloud: #f6f9fb;
  --ink: #1b2a35;
  --muted: #5d6b76;
  --accent: #ff8a3d;
  --accent-dark: #e0702c;
  --border: rgba(15, 23, 42, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --nav-height: 56px;
}

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

body {
  font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(120deg, #f7fbff 0%, #e7f4f7 45%, #fdf7ef 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(36, 182, 176, 0.12), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(255, 138, 61, 0.12), transparent 40%),
    radial-gradient(circle at 75% 80%, rgba(11, 107, 111, 0.10), transparent 45%);
  z-index: -1;
}

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

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

main {
  padding-top: var(--nav-height);
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 0;
  height: 56px;
  width: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10vw;
  border-bottom: 1px solid #cdcdcd;
  z-index: 20000;
}

.nav-logo {
  height: 52px;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 500;
  color: #000;
}

.nav-links a {
  padding: 14px 16px;
}

.nav-cta {
  background: transparent;
  color: inherit;
  font-weight: 600;
}

.lang-switch {
  display: flex;
  gap: 6px;
  background: rgba(11, 27, 43, 0.06);
  padding: 4px;
  border-radius: 999px;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 600;
}

.lang-btn.active {
  background: white;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.hero {
  padding: 18px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 107, 111, 0.12);
  color: var(--sea);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  color: var(--navy);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
}

.hero-form {
  background: white;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.form-label {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  color: var(--navy);
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-row input {
  flex: 1 1 220px;
  height: 44px;
  max-height: 44px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
}

.mapshare-helper {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 13px;
  color: var(--muted);
}

.mapshare-helper summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}

.mapshare-helper summary::-webkit-details-marker {
  display: none;
}

.mapshare-helper summary::after {
  content: "›";
  display: inline-block;
  margin-left: 6px;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.mapshare-helper[open] summary::after {
  transform: rotate(-90deg);
}

.mapshare-helper ol {
  margin: 10px 0 0 18px;
  display: grid;
  gap: 6px;
}

.form-error {
  margin-top: 6px;
  color: #c2410c;
  font-weight: 600;
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  height: 44px;
  max-height: 44px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 24px rgba(255, 138, 61, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(255, 138, 61, 0.35);
}

.btn-outline {
  border: 1px solid rgba(15, 23, 42, 0.2);
  color: var(--navy);
  background: white;
}

.btn-ghost {
  background: rgba(11, 27, 43, 0.06);
  color: var(--navy);
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video,
.hero-video-fallback {
  width: min(350px, 90vw);
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.28);
  background: white;
  display: block;
  object-fit: cover;
}

.hero-video-fallback {
  display: none;
}

.map-card {
  background: var(--navy);
  color: white;
  padding: 22px;
  border-radius: var(--radius-lg);
  width: min(420px, 90vw);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
}

.map-badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
}

.map-pill {
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}

.map-body {
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(36, 182, 176, 0.25), rgba(255, 138, 61, 0.15));
  position: relative;
  overflow: hidden;
}

.map-line {
  position: absolute;
  width: 150%;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  top: 40%;
  left: -20%;
  transform: rotate(-6deg);
}

.map-line:nth-child(2) {
  top: 60%;
  transform: rotate(3deg);
}

.map-line:nth-child(3) {
  top: 75%;
  transform: rotate(-2deg);
}

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: white;
}

.map-dot-main {
  top: 45%;
  left: 58%;
  box-shadow: 0 0 0 6px rgba(255, 138, 61, 0.4);
}

.map-dot-ghost {
  top: 62%;
  left: 40%;
  opacity: 0.5;
}

.map-footer {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-orb {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}

.orb-one {
  background: rgba(36, 182, 176, 0.35);
  top: -30px;
  right: 0;
}

.orb-two {
  background: rgba(255, 138, 61, 0.35);
  bottom: -20px;
  left: 0;
  animation-delay: 1.5s;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.6);
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 8px;
  color: var(--navy);
}

.section-header p {
  color: var(--muted);
  max-width: 520px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: white;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card.premium {
  border: 2px solid rgba(255, 138, 61, 0.4);
  background: linear-gradient(140deg, rgba(255, 138, 61, 0.08), white 60%);
}

.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.pricing-card ul li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--aqua);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.faq-item {
  background: white;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--navy);
}

.faq-item p {
  color: var(--muted);
  line-height: 1.5;
}

.cta-card {
  background: var(--navy);
  color: white;
  padding: 34px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.35);
}

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

.footer {
  padding: 32px 0 48px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  margin-top: 6px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 14px 0 40px;
  }
  .hero-form {
    padding: 16px;
  }
  .form-row {
    flex-direction: column;
  }
  .form-row input,
  .form-row .btn {
    width: 100%;
  }
  .cta-card {
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .hero-video {
    display: none;
  }
  .hero-video-fallback {
    display: block;
  }
}
