:root {
  --green-950: #09231a;
  --green-900: #0d3024;
  --green-800: #123c2f;
  --green-700: #1d5946;
  --green-600: #2f725b;
  --green-500: #4e8b68;
  --lime: #b8d96b;
  --lime-light: #dceba5;
  --cream: #f1efe5;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #15372c;
  --muted: #687871;
  --line: #dfe5df;
  --amber: #dca843;
  --red: #d35b50;
  --shadow-sm: 0 10px 28px rgba(12, 46, 34, 0.09);
  --shadow-md: 0 24px 60px rgba(8, 38, 27, 0.16);
  --shadow-lg: 0 40px 90px rgba(5, 27, 19, 0.28);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-800);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.eyebrow-light {
  color: var(--lime-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -1.7px;
  line-height: 1.06;
}

h2 {
  font-size: clamp(38px, 4.2vw, 57px);
}

p {
  color: var(--muted);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(13, 48, 36, 0.08);
  background: rgba(251, 250, 246, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(251, 250, 246, 0.97);
  box-shadow: 0 12px 38px rgba(8, 38, 27, 0.09);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  width: 188px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.desktop-nav a,
.app-link {
  position: relative;
  color: #496159;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green-600);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.app-link:hover,
.app-link:focus-visible {
  color: var(--green-800);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.language-toggle {
  display: flex;
  gap: 2px;
  padding: 4px;
  border: 0;
  border-radius: 8px;
  color: #8b9893;
  background: #edf0eb;
  cursor: pointer;
}

.language-toggle span {
  padding: 4px 6px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
}

.language-toggle .active {
  color: var(--green-800);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(18, 60, 47, 0.1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--green-800);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 11px 24px rgba(18, 60, 47, 0.2);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--green-700);
  box-shadow: 0 16px 30px rgba(18, 60, 47, 0.25);
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 10px 17px;
  border-radius: 8px;
  box-shadow: none;
  font-size: 12px;
}

.button-lime {
  color: var(--green-950);
  background: var(--lime);
  box-shadow: 0 16px 34px rgba(2, 18, 12, 0.28);
}

.button-lime:hover,
.button-lime:focus-visible {
  color: var(--green-950);
  background: #cce681;
  box-shadow: 0 20px 42px rgba(2, 18, 12, 0.34);
}

.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(5, 27, 19, 0.93) 0%, rgba(7, 35, 25, 0.86) 40%, rgba(10, 45, 32, 0.54) 66%, rgba(9, 38, 28, 0.16) 100%),
    linear-gradient(180deg, rgba(9, 34, 25, 0.06) 50%, rgba(5, 25, 18, 0.86) 100%),
    url("assets/golf-course-hero.svg");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 72% 25%, rgba(240, 221, 158, 0.28), transparent 31%),
    linear-gradient(110deg, transparent 55%, rgba(219, 204, 151, 0.08) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 105px;
  background: linear-gradient(180deg, transparent 0%, var(--paper) 100%);
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 120px;
  left: -200px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 217, 107, 0.12), transparent 68%);
  filter: blur(5px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.98fr);
  align-items: center;
  gap: 76px;
  padding-top: 148px;
  padding-bottom: 138px;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  max-width: 670px;
  color: var(--white);
  font-size: clamp(55px, 6vw, 84px);
  text-shadow: 0 10px 40px rgba(4, 20, 14, 0.22);
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 32px;
  color: rgba(241, 245, 237, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

.text-link span:last-child {
  transition: transform 0.2s ease;
}

.text-link:hover span:last-child,
.text-link:focus-visible span:last-child {
  transform: translateX(4px);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.92);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 31px;
  color: rgba(235, 242, 235, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.trust-row > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-row i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--lime-light);
  background: rgba(184, 217, 107, 0.12);
  font-size: 10px;
  font-style: normal;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 610px;
  margin-left: auto;
}

.visual-halo {
  position: absolute;
  inset: 7% -8% -2% 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 235, 174, 0.26), transparent 67%);
  filter: blur(22px);
}

.course-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.hero-visual:hover .course-card {
  box-shadow: 0 48px 100px rgba(3, 20, 13, 0.4);
  transform: perspective(1200px) rotateY(-1.5deg) rotateX(0deg) translateY(-4px);
}

.course-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 19px;
  border-bottom: 1px solid #e8eee9;
  color: var(--ink);
}

.course-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.course-title img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.course-title > div {
  display: flex;
  flex-direction: column;
}

.course-topbar strong {
  font-size: 13px;
}

.course-topbar small {
  color: #84928c;
  font-size: 9px;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 20px;
  color: var(--green-600);
  background: #e9f3eb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.live-dot i {
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #4da275;
  box-shadow: 0 0 0 4px rgba(77, 162, 117, 0.12);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(77, 162, 117, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(77, 162, 117, 0); }
}

.course-map {
  position: relative;
  height: 405px;
  overflow: hidden;
  background: #cfe0c8;
}

.course-map svg {
  width: 100%;
  height: 100%;
}

.course-map .map-contour {
  fill: none;
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 60;
  stroke-linecap: round;
}

.course-map .map-contour-two {
  stroke-width: 85;
  opacity: 0.56;
}

.course-map .fairway {
  fill: none;
  stroke: #7eaa69;
  stroke-width: 60;
  stroke-linecap: round;
  opacity: 0.97;
}

.course-map .fairway.thin {
  stroke: #9bb982;
  stroke-width: 37;
  opacity: 0.83;
}

.course-map .green {
  fill: #5d8d53;
}

.course-map .green-two {
  fill: #729d62;
}

.course-map .bunker {
  fill: #e8ddbd;
}

.course-map .group {
  stroke: var(--white);
  stroke-width: 3;
  filter: drop-shadow(0 4px 5px rgba(18, 60, 47, 0.22));
}

.course-map .good { fill: #39775a; }
.course-map .warning { fill: var(--amber); }
.course-map .delayed { fill: var(--red); }

.course-map text {
  fill: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-anchor: middle;
}

.pace-alert {
  position: absolute;
  z-index: 4;
  right: 17px;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 35px rgba(25, 59, 46, 0.2);
  backdrop-filter: blur(10px);
}

.alert-icon {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: #f8e3df;
  font-size: 12px;
  font-weight: 800;
}

.pace-alert div {
  display: flex;
  flex-direction: column;
}

.pace-alert strong {
  font-size: 10px;
}

.pace-alert small {
  color: #89958f;
  font-size: 8px;
}

.course-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
}

.course-stats div {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #edf0ed;
  text-align: center;
}

.course-stats div:last-child {
  border: 0;
}

.course-stats strong {
  font-size: 18px;
}

.course-stats span {
  color: #85928d;
  font-size: 8px;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 42px rgba(3, 24, 16, 0.26);
  backdrop-filter: blur(13px);
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 10px;
}

.floating-card small {
  color: #86948e;
  font-size: 8px;
}

.privacy-chip {
  bottom: 58px;
  left: -36px;
  padding: 12px 15px;
}

.marshal-chip {
  top: 104px;
  right: -30px;
  padding: 12px 15px;
}

.chip-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-700);
  background: #e6f0e6;
  font-size: 12px;
  font-weight: 800;
}

.chip-pulse {
  position: relative;
  width: 11px;
  height: 11px;
  margin: 0 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(220, 168, 67, 0.15);
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: 58px;
  left: 50%;
  display: grid;
  width: 34px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 30px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 10px;
  background: var(--white);
  animation: scrollCue 1.8s infinite;
}

@keyframes scrollCue {
  0% { opacity: 0; transform: translateY(-7px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(8px); }
}

.value-strip {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(18, 60, 47, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.value-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 108px;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.value-grid > div:last-child {
  border-right: 0;
}

.value-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: var(--green-700);
  background: #e8efe6;
  font-size: 21px;
}

.value-grid div > div {
  display: flex;
  flex-direction: column;
}

.value-grid strong {
  font-size: 14px;
}

.value-grid small {
  color: var(--muted);
  font-size: 11px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 56px;
}

.split-heading p,
.centered-heading p {
  margin-bottom: 0;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 282px;
  overflow: hidden;
  padding: 33px 28px;
  border: 1px solid #e6eae5;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 217, 107, 0.18), transparent 70%);
  content: "";
}

.feature-card:hover {
  border-color: #d7dfd6;
  box-shadow: 0 22px 50px rgba(21, 55, 44, 0.1);
  transform: translateY(-6px);
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 12px;
  color: var(--green-800);
  background: #e9f0e9;
  font-size: 22px;
}

.feature-card h3,
.step h3,
.benefit h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.35;
}

.feature-card p,
.step p,
.benefit p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.75;
}

.showcase {
  padding-top: 18px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 82px;
}

.showcase-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 26px;
  background-image:
    linear-gradient(180deg, rgba(9, 38, 28, 0.03), rgba(9, 38, 28, 0.44)),
    url("assets/golf-course-hero.svg");
  background-position: 72% center;
  background-size: cover;
  box-shadow: var(--shadow-md);
}

.showcase-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  content: "";
}

.showcase-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  color: var(--white);
  background: rgba(9, 38, 28, 0.72);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
}

.showcase-badge > span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184, 217, 107, 0.14);
}

.showcase-copy h2 {
  margin-bottom: 25px;
}

.showcase-copy > p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.85;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list > span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #455f55;
  font-size: 13px;
  font-weight: 700;
}

.check-list i {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--green-700);
  background: #e6efe5;
  font-size: 11px;
  font-style: normal;
}

.how {
  overflow: hidden;
  background: var(--cream);
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 67px;
  text-align: center;
}

.centered-heading p {
  margin-top: 18px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  text-align: center;
}

.steps::before {
  position: absolute;
  top: 153px;
  right: 17%;
  left: 17%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd3c9 15%, #cbd3c9 85%, transparent);
  content: "";
}

.step {
  position: relative;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: 7px;
  left: 12px;
  color: #aebbb2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.phone {
  position: relative;
  width: 178px;
  height: 294px;
  margin: 0 auto 29px;
  overflow: hidden;
  padding: 28px 17px 15px;
  border: 7px solid #1b3129;
  border-radius: 29px;
  background: var(--white);
  box-shadow: 0 20px 42px rgba(31, 54, 46, 0.16);
}

.phone-top {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 12px;
  border-radius: 0 0 10px 10px;
  background: #1b3129;
  transform: translateX(-50%);
}

.mini-logo {
  width: 38px;
  height: 38px;
  margin: 10px auto 19px;
  border-radius: 11px;
}

.qr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 91px;
  height: 91px;
  margin: auto;
  padding: 7px;
  gap: 5px;
  background: #f3f5f1;
}

.qr i {
  background: var(--green-800);
}

.qr i:nth-child(2),
.qr i:nth-child(4),
.qr i:nth-child(8) {
  border: 3px solid var(--green-800);
  background: transparent;
}

.phone small {
  color: #8b9792;
  font-size: 8px;
}

.scan > small {
  display: block;
  margin-top: 13px;
}

.permission {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 46px;
}

.permission-icon {
  display: grid;
  width: 61px;
  height: 61px;
  margin-bottom: 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-800);
  background: #e8f1e9;
  font-size: 28px;
}

.permission strong {
  font-size: 12px;
}

.permission small {
  margin: 5px 0 24px;
}

.permission button {
  padding: 8px 27px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: var(--green-800);
  font-size: 9px;
}

.route {
  padding: 20px 0 0;
  background: #edf3e9;
}

.route svg {
  width: 100%;
  height: 100%;
}

.route path {
  fill: none;
  stroke: #7fa56d;
  stroke-width: 18;
  stroke-linecap: round;
}

.route circle {
  fill: var(--green-800);
  stroke: var(--white);
  stroke-width: 3;
}

.finish {
  position: absolute;
  top: 34px;
  right: 15px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-size: 9px;
  font-weight: 800;
}

.privacy {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 35%, rgba(184, 217, 107, 0.12), transparent 28%),
    linear-gradient(120deg, var(--green-950), var(--green-800));
}

.privacy::after {
  position: absolute;
  right: -180px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.privacy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
  gap: 112px;
}

.privacy-visual {
  position: relative;
  display: grid;
  height: 470px;
  place-items: center;
}

.shield {
  position: relative;
  z-index: 3;
  display: grid;
  width: 182px;
  height: 214px;
  place-items: center;
  background: linear-gradient(145deg, #5f987a, #2c654b);
  clip-path: polygon(50% 0, 90% 18%, 82% 75%, 50% 100%, 18% 75%, 10% 18%);
  filter: drop-shadow(0 30px 25px rgba(0, 0, 0, 0.25));
}

.shield::before {
  position: absolute;
  inset: 9px;
  background: var(--green-900);
  clip-path: inherit;
  content: "";
}

.shield span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--lime);
  font-size: 31px;
  font-weight: 800;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.orbit-one {
  width: 355px;
  height: 355px;
}

.orbit-two {
  width: 475px;
  height: 475px;
}

.privacy-tag {
  position: absolute;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
}

.tag-one { top: 73px; left: 4px; }
.tag-two { top: 170px; right: -14px; }
.tag-three { bottom: 70px; left: 24px; }

.privacy-copy h2 {
  color: var(--white);
}

.privacy-copy > p {
  margin: 26px 0 31px;
  color: #b9ccc3;
  font-size: 16px;
  line-height: 1.8;
}

.privacy-copy ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-copy li {
  display: flex;
  gap: 13px;
}

.privacy-copy li > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: rgba(184, 217, 107, 0.14);
  font-size: 11px;
}

.privacy-copy li div {
  display: flex;
  flex-direction: column;
}

.privacy-copy li strong {
  font-size: 14px;
}

.privacy-copy li small {
  margin-top: 2px;
  color: #a9bdb4;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit {
  min-height: 245px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  transition: background 0.2s ease;
}

.benefit:last-child {
  border-right: 0;
}

.benefit:hover {
  background: var(--white);
}

.benefit > span {
  color: var(--green-600);
  font-size: 10px;
  font-weight: 800;
}

.benefit h3 {
  margin-top: 28px;
}

.cta {
  padding-top: 22px;
}

.cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 330px;
  overflow: hidden;
  padding: 64px 68px;
  border-radius: 24px;
  color: var(--white);
  background-image:
    linear-gradient(100deg, rgba(7, 35, 25, 0.96) 0%, rgba(12, 55, 39, 0.86) 55%, rgba(11, 48, 35, 0.48) 100%),
    url("assets/golf-course-hero.svg");
  background-position: center 46%;
  background-size: cover;
  box-shadow: var(--shadow-md);
}

.cta-card::after {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 2;
}

.cta-copy {
  max-width: 710px;
}

.cta-card h2 {
  color: var(--white);
  font-size: clamp(38px, 4.2vw, 54px);
}

.cta-card p {
  margin: 16px 0 0;
  color: #bed0c7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  margin-left: 45px;
}

.cta-mail {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
}

footer {
  margin-top: 112px;
  padding: 74px 0 31px;
  background: #e9ede7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 55px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand-wrap p {
  max-width: 340px;
  margin-bottom: 0;
  color: #708079;
  font-size: 13px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 6px;
  font-size: 12px;
}

.footer-grid a:not(.brand) {
  color: #66776f;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-grid a:not(.brand):hover,
.footer-grid a:not(.brand):focus-visible {
  color: var(--green-800);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #d4dcd5;
  color: #7f8c87;
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(184, 217, 107, 0.9);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a,
  .app-link {
    font-size: 12px;
  }

  .brand-logo {
    width: 170px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
    gap: 48px;
  }

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

@media (max-width: 960px) {
  .nav-wrap {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-nav {
    position: fixed;
    z-index: 90;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(18, 60, 47, 0.08);
    background: rgba(251, 250, 246, 0.99);
    box-shadow: 0 30px 50px rgba(8, 38, 27, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .desktop-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid #e5e9e4;
    font-size: 14px;
  }

  .desktop-nav a::after {
    display: none;
  }

  .site-header.menu-open .desktop-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-actions {
    margin-left: auto;
  }

  .app-link {
    display: none;
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(90deg, rgba(5, 27, 19, 0.93) 0%, rgba(7, 35, 25, 0.82) 54%, rgba(8, 40, 29, 0.5) 100%),
      linear-gradient(180deg, rgba(9, 34, 25, 0.05) 50%, rgba(5, 25, 18, 0.88) 100%),
      url("assets/golf-course-hero.svg");
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 72px;
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-visual {
    max-width: 650px;
    margin: 0 auto;
  }

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

  .value-grid > div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-grid > div:last-child {
    border-bottom: 0;
  }

  .split-heading,
  .showcase-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .split-heading {
    align-items: start;
  }

  .split-heading p {
    max-width: 720px;
  }

  .showcase-image {
    min-height: 480px;
  }

  .showcase-copy {
    max-width: 720px;
  }

  .privacy-grid {
    gap: 30px;
  }

  .privacy-copy {
    max-width: 720px;
  }

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

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    align-items: flex-start;
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 84px 0;
  }

  .brand-logo {
    width: 150px;
  }

  .nav-actions .button-small {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .hero-grid {
    gap: 55px;
    padding-top: 132px;
    padding-bottom: 135px;
  }

  .hero h1 {
    font-size: clamp(49px, 14vw, 67px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .trust-row {
    gap: 13px 18px;
  }

  .course-card {
    transform: none;
  }

  .hero-visual:hover .course-card {
    transform: translateY(-3px);
  }

  .course-map {
    height: 330px;
  }

  .privacy-chip {
    bottom: -27px;
    left: 12px;
  }

  .marshal-chip {
    top: 84px;
    right: -3px;
  }

  .scroll-cue {
    display: none;
  }

  .value-strip {
    margin-top: -30px;
  }

  .split-heading {
    gap: 26px;
    margin-bottom: 42px;
  }

  .feature-grid,
  .steps,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .showcase-image {
    min-height: 420px;
    background-position: 67% center;
  }

  .steps {
    gap: 62px;
  }

  .steps::before {
    display: none;
  }

  .privacy-visual {
    height: 420px;
  }

  .orbit-two {
    width: 395px;
    height: 395px;
  }

  .tag-one { left: 0; }
  .tag-two { right: 0; }
  .tag-three { left: 12px; }

  .benefit,
  .benefit:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .cta-card {
    min-height: 390px;
    padding: 48px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand-wrap {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 460px) {
  .brand-logo {
    width: 136px;
  }

  .language-toggle span {
    padding: 4px 5px;
  }

  .hero-grid {
    padding-top: 121px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .course-map {
    height: 280px;
  }

  .course-topbar {
    padding: 13px;
  }

  .course-title img {
    width: 28px;
    height: 28px;
  }

  .pace-alert {
    right: 9px;
    bottom: 9px;
    padding: 9px 10px;
  }

  .course-stats {
    padding: 14px 5px;
  }

  .marshal-chip {
    display: none;
  }

  .privacy-chip {
    left: 6px;
  }

  .value-grid > div {
    padding: 21px;
  }

  .showcase-image {
    min-height: 350px;
  }

  .privacy-visual {
    height: 370px;
  }

  .shield {
    width: 150px;
    height: 178px;
  }

  .orbit-one {
    width: 285px;
    height: 285px;
  }

  .orbit-two {
    width: 340px;
    height: 340px;
  }

  .privacy-tag {
    padding: 8px 10px;
    font-size: 9px;
  }

  .tag-one { top: 50px; }
  .tag-two { top: 145px; }
  .tag-three { bottom: 54px; }

  .cta-card {
    padding: 44px 24px;
  }

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

  .footer-brand-wrap {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
