* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navy: #1f2a44;
  --blue: #2f6db3;
  --light-blue: #6fafe7;
  --gray: #6b7280;
  --light-gray: #f5f7fa;
  --gray-transparent: rgb(245 247 250 / 60%);
}

a {
  text-decoration: none;
}

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Buttons */
.btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.btn_primary {
  background: var(--blue);
  color: white;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.btn_primary:hover {
  background: #1e4a8f;
}

.btn_secondary {
  color: var(--blue);
  border: 1px solid var(--blue);
  transition:
    all 0.3s ease,
    transform 0.2s ease;
}

.btn_secondary:hover {
  background: var(--blue);
  color: white;
}

/* Header */
header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: white;
}
.header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
}
.nav a:last-child {
  color: white;
}
.nav .nav_login {
  color: #8993a2;
  font-weight: 400;
}
.nav .nav_login:hover {
  color: var(--blue);
}
.logo {
  max-width: 340px;
  width: 100%;
  height: 70px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mobile Menu */
.mobile_menu {
  display: none;
}

.hamburger {
  width: 25px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--navy);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.golf-texture {
  background-image:
    linear-gradient(var(--gray-transparent), var(--gray-transparent)),
    url(./assets/golf-texture.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Hero */

.hero {
  /* background: url(./assets/golf-texture.jpg); */
}
.hero_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0;
}

.hero_content h1 {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 600;
}

.hero_content p {
  color: var(--gray);
  margin: 20px 0;
}

.hero_features span {
  display: block;
  white-space: nowrap;
}

.hero_content .hero_features {
  width: fit-content;
  max-width: 100%;
  margin: 20px auto;
  text-align: center;
}

.hero_features span + span {
  margin-top: 4px;
}

.hero_features span + span::before {
  content: "";
}

.hero_buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  width: fit-content;
}

.hero_content .hero_button_note {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

/* hero image */

.hero_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Trust */
.trust {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  font-size: 14px;
  color: var(--gray);
}

/* Steps section*/
.steps_wrapper {
  text-align: center;
  padding: 100px 0;
}

.steps_wrapper h2 {
  font-size: 2em;
}

.steps_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Social Proof Section */
.social_proof {
  background-color: var(--light-gray);
}
.social_proof_wrapper {
  text-align: center;
  padding: 100px 0;
}

.social_proof_wrapper h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  color: var(--navy);
}

.reviews_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.review_card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  min-height: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.stars {
  margin-bottom: 20px;
}

.star {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
}

.review_text {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
  flex: 1;
}

.user_info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user_logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e8f0f9;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.user_name {
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
}

.user_position {
  color: var(--gray);
  font-size: 13px;
  margin-top: 2px;
}

/* Features */
.feature_section {
  padding: 56px 0;
}

.feature_intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 0 28px;
  text-align: center;
}

.section_kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.feature_intro h2 {
  color: var(--navy);
  font-size: 36px;
  font-weight: 650;
  line-height: 1.15;
  margin-bottom: 18px;
}

.feature_intro > p:not(.section_kicker) {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.55;
  margin: 0 auto;
}

.feature_intro .feature_intro_link {
  color: var(--blue);
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  margin-top: 18px;
}

.feature_content_wrapper {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
}
.feature:nth-child(even) {
  background: white;
  padding: 32px;
}
.feature:nth-child(even) .feature_content_wrapper {
  flex-direction: row-reverse;
}
.feature {
  margin-bottom: 60px;
}
.feature:last-child {
  margin-bottom: 0;
}

.feature_img {
  flex: 0 1 640px;
  max-width: 640px;
  width: 100%;
  background: var(--light-gray);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.feature_img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;	
}
.feature_content {
  flex: 0 1 420px;
  max-width: 420px;
}
.feature_content p {
  margin: 20px 0;
}

.feature_content ul {
  margin-left: 40px;
}
.feature_content ul li {
  margin-bottom: 8px;
}

/* Organizer Story */
.organizer_story {
  padding: 96px 0;
  color: white;
  background: var(--navy);
  border-top: 6px solid var(--light-blue);
}

.organizer_story_wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 90px;
  align-items: start;
}

.organizer_story_kicker {
  margin-bottom: 14px;
  color: var(--light-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.organizer_story h2 {
  max-width: 570px;
  margin-bottom: 22px;
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.organizer_story_lead {
  max-width: 540px;
  margin-bottom: 34px;
  color: #dbeafe;
  font-size: 21px;
  line-height: 1.55;
}

.organizer_story_label {
  margin-bottom: 14px;
  color: white;
  font-size: 15px;
  font-weight: 700;
}

.organizer_story ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.organizer_story li {
  position: relative;
  padding-left: 18px;
  color: #e5edf7;
  font-size: 16px;
  line-height: 1.45;
}

.organizer_story li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--light-blue);
  border-radius: 50%;
}

.organizer_story_message {
  padding-left: 42px;
  border-left: 1px solid rgb(111 175 231 / 45%);
}

.organizer_story_message > p {
  margin-bottom: 20px;
  color: #e5edf7;
  font-size: 17px;
  line-height: 1.65;
}

.organizer_story_message .organizer_story_conclusion {
  margin-top: 30px;
  margin-bottom: 0;
  padding: 20px 0 20px 24px;
  color: white;
  font-size: 22px;
  font-weight: 700;
  border-left: 4px solid var(--light-blue);
  line-height: 1.5;
}

/* DEMO SECTION */
.demo {
  background-color: var(--light-gray);
}
.demo_wrapper {
  text-align: center;
  padding: 100px 0;
}

.demo_wrapper h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--navy);
}

.demo_video {
  margin-bottom: 40px;
  max-width: 560px;
  height: 315px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(31, 42, 68, 0.18);
}

.demo_video iframe,
.demo_video img {
  width: 100%;
  height: 100%;
}

.demo_video img {
  display: block;
  object-fit: cover;
}

.demo_video_link {
  display: block;
  height: 100%;
}

.demo_wrapper p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.demo_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.demo_features {
  margin: 0;
  max-width: none !important;
}

.demo_chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.demo_chips_primary {
  margin-top: 20px;
}

.demo_chips span {
  padding: 7px 12px;
  color: var(--navy);
  background: white;
  border: 1px solid rgb(107 114 128 / 24%);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.demo_chips_primary span {
  color: var(--blue);
  background: #f0f7ff;
  border-color: rgb(47 109 179 / 30%);
}

/* More Than Tournament Software */
.group_platform {
  scroll-margin-top: 96px;
  padding: 92px 0;
  background: white;
  border-top: 1px solid rgb(47 109 179 / 16%);
  border-bottom: 1px solid rgb(47 109 179 / 16%);
}

.group_platform_wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
  align-items: start;
}

.group_platform_kicker {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.group_platform h2 {
  max-width: 500px;
  color: var(--navy);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.group_platform_message {
  padding-left: 42px;
  border-left: 4px solid var(--light-blue);
}

.group_platform_message > p {
  max-width: 630px;
  margin-bottom: 18px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.65;
}

.group_platform_message .group_platform_bridge {
  margin-bottom: 26px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.group_platform_contrast {
  margin-bottom: 30px;
}

.group_platform_contrast p {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.group_platform_contrast p:last-child {
  margin-bottom: 0;
  color: var(--blue);
  font-weight: 700;
}

.group_platform_message .group_platform_signature {
  margin-top: 30px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

/* PRICING SECTION */
.pricing_wrapper {
  text-align: center;
  padding: 50px 0 100px 0;
}

.pricing_wrapper h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--navy);
}

.pricing_intro {
  max-width: 760px;
  margin: 0 auto 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.pricing_intro_sub {
  max-width: 640px;
  margin: 0 auto 70px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
}

.pricing_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  /* gap: 30px; */
  /* max-width: 1000px; */
  /* margin: 0 auto; */
}

.pricing_card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 40px 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.pricing_card hr {
  margin: 25px 0;
}

.pricing_card.featured {
  transform: scale(1.099);
  background-color: white;
  width: 90%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  /* border: 2px solid var(--blue); */
  z-index: 2;
}

.popular_badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing_header {
  text-align: left;
}

.pricing_header h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.subtitle {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing_journey {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 22px;
}

.price {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
  gap: 4px;
  flex-wrap: wrap;
}

.currency {
  font-size: 20px;
  color: var(--gray);
  font-weight: 500;
}

.amount {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.period {
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}

.pricing_action {
  margin-bottom: 36px;
  text-align: left;
}
.pricing_action a {
  display: inline-block;
}

.pricing_features_group {
  margin-bottom: 25px;
  text-align: left;
}

.pricing_features_group:last-child {
  margin-bottom: 0;
}

.features_group_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing_features_group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing_points ul {
  margin-left: 15px;
}

.pricing_points li {
  font-size: 14px;
  text-align: left;
  margin-bottom: 8px;
}

.pricing_features_group li {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.pricing_features_group li:before {
  content: "✓";
  color: var(--navy);
  font-weight: bold;
  margin-right: 12px;
  font-size: 16px;
}

/* Playbook Promo */
.playbook_promo {
  scroll-margin-top: 96px;
  padding: 90px 0;
  background: #f0f7ff;
  border-top: 1px solid rgb(47 109 179 / 18%);
  border-bottom: 1px solid rgb(47 109 179 / 18%);
}

.playbook_promo_wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 90px;
  align-items: center;
}

.playbook_promo_kicker {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.playbook_promo h2 {
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.playbook_promo_intro > p:last-child {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.65;
}

.playbook_promo_topics {
  padding-left: 42px;
  border-left: 4px solid var(--light-blue);
}

.playbook_topics_label {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.playbook_promo_topics ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.playbook_promo_topics li {
  padding: 12px 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 1px solid rgb(47 109 179 / 16%);
}

.playbook_promo_link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
  transition: color 0.2s ease, gap 0.2s ease;
}

.playbook_promo_link:hover {
  gap: 14px;
  color: var(--navy);
}

/* .pricing_points li:before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  margin-right: 12px;
  font-size: 16px;
} */

/* FREQUENT QUESTION */
.faq {
  background-color: var(--light-gray);
}
.frequent_question_wrapper {
  text-align: center;
  padding: 100px 0;
}

.frequent_question_wrapper h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 60px;
  color: var(--navy);
}

.faq_accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq_item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.faq_item.active {
  border-color: var(--blue);
}

.faq_question {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq_question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  flex: 1;
}

.faq_toggle {
  font-size: 24px;
  font-weight: 300;
  color: var(--blue);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f7ff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 20px;
}

.faq_item.active .faq_toggle {
  background: var(--blue);
  color: white;
  transform: rotate(135deg);
}

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq_item.active .faq_answer {
  max-height: 400px;
}

.faq_answer p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0 30px 24px 30px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 100px 20px;
}

.cta h2 {
  font-size: 36px;
}
.cta p {
  margin: 30px 0;
  font-size: 18px;
}

/* Footer */
footer {
  background: var(--light-gray);
  padding: 60px 20px 20px 20px;
  font-size: 14px;
}

.footer_wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: end;
  gap: 40px;
}
.footer_logo {
  width: 270px;
  height: 70px;
}
.footer_logo + p {
  margin: 15px 0;
}
.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer_wrapper > div strong {
  color: var(--navy);
}

footer a {
  color: var(--gray);
  display: block;
  margin: 8px 0;
}

.footer_wrapper a.footer-external {
  color: #2f6db3;
  font-weight: 600;
}

.footer_wrapper a.footer-external::after {
  content: " \2197";
  display: inline-block;
  margin-left: 2px;
  color: currentColor;
  font-size: 0.85em;
  font-weight: 700;
}

.footer_wrapper a.footer-external:hover {
  color: var(--navy);
}
.copyright {
  text-align: center;
  margin-top: 56px;
  padding: 24px 0 20px;
  color: #8a94a3;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
  white-space: nowrap;
}

.copyright a {
  display: inline;
  margin: 0;
  color: inherit;
}

@media (max-width: 480px) {
  .copyright {
    margin-right: -20px;
    margin-left: -20px;
    white-space: normal;
  }

  .pricing_wrapper h2 {
    font-size: 30px;
  }

  .pricing_intro {
    font-size: 16px;
  }

  .pricing_intro_sub {
    margin-bottom: 48px;
  }

  .pricing_action a {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 940px) {
  .header_wrapper {
    padding: 10px 0;
  }
  .logo {
    width: 30%;
  }
  /* Tablet zone: 4-col reviews and 3-col pricing get too cramped here,
     so collapse the marketing grids before they break. */
  .reviews_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .pricing_cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing_card.featured {
    transform: none;
    width: 100%;
  }
  .user_info {
    gap: 10px;
  }
  .user_name {
    font-size: 13px;
  }
  .user_position {
    font-size: 11px;
  }
}

@media (min-width: 481px) {
  #features,
  #how-it-works {
    scroll-margin-top: 120px;
  }
}

@media (max-width: 768px) {
  .hero_wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    padding: 48px 0;
  }

  .hero_content,
  .hero_image {
    min-width: 0;
    max-width: 100%;
  }

  .hero_content h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .hero_content p {
    line-height: 1.5;
  }

  .hero_content .hero_features {
    width: fit-content;
    max-width: 100%;
    font-size: 15px;
    text-align: center;
  }

  .hero_features span {
    display: block;
    white-space: nowrap;
  }

  .hero_features span + span::before {
    content: "";
  }

  .hero_buttons {
    max-width: 100%;
  }

  .trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .hero_image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .golf-texture {
    background-attachment: scroll;
  }

  .feature_content_wrapper,
  .feature:nth-child(even) .feature_content_wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .feature_section {
    padding: 48px 0;
  }

  .feature_img,
  .feature_content {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .feature {
    margin-bottom: 44px;
  }

  .feature:nth-child(even) {
    padding: 24px 0;
  }

  .organizer_story {
    padding: 72px 0;
  }

  .organizer_story_wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .organizer_story_message {
    padding-top: 36px;
    padding-left: 0;
    border-top: 1px solid rgb(111 175 231 / 45%);
    border-left: 0;
  }

  .playbook_promo {
    padding: 72px 0;
  }

  .playbook_promo_wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .playbook_promo_topics {
    padding-top: 32px;
    padding-left: 0;
    border-top: 1px solid rgb(47 109 179 / 24%);
    border-left: 0;
  }

  .group_platform {
    padding: 72px 0;
  }

  .group_platform_wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .group_platform_message {
    padding-top: 32px;
    padding-left: 0;
    border-top: 1px solid rgb(47 109 179 / 24%);
    border-left: 0;
  }
}
@media (max-width: 480px) {
  .hero_content .hero_features {
    font-size: 13px;
  }

  header {
    position: static;
  }
  .header_wrapper {
    position: relative;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    transform-origin: top;
    transform: scaleY(-0);
    transition: ease 0.3s;
  }
  .active {
    transform: scaleY(1);
  }
  .logo {
    width: 50%;
    height: 50px;
  }

  .mobile_menu {
    display: block;
  }
  .hero_wrapper {
    padding: 36px 0 48px;
  }
  .hero_content h1 {
    font-size: 34px;
  }
  .hero_content h3 {
    font-size: 18px;
    line-height: 1.4;
  }
  .trust {
    font-size: 13px;
  }
  .steps_grid {
    grid-template-columns: 1fr;
  }
  .feature_content_wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .feature:nth-child(even) .feature_content_wrapper {
    flex-direction: column;
  }
  .feature {
    margin-bottom: 36px;
  }
  .feature:nth-child(even) {
    padding: 16px 0;
  }
  .feature_section {
    padding: 40px 0;
  }
  .organizer_story {
    padding: 56px 0;
  }
  .organizer_story h2 {
    font-size: 32px;
  }
  .organizer_story_lead {
    font-size: 18px;
  }
  .organizer_story ul {
    grid-template-columns: 1fr;
  }
  .playbook_promo {
    padding: 56px 0;
  }
  .playbook_promo h2 {
    font-size: 32px;
  }
  .playbook_promo_topics ul {
    grid-template-columns: 1fr;
  }
  .group_platform {
    padding: 56px 0;
  }
  .group_platform h2 {
    font-size: 32px;
  }
  .group_platform_contrast p {
    font-size: 20px;
  }
  .reviews_grid {
    grid-template-columns: 1fr;
  }
  .pricing_cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing_card {
    min-width: 0;
    padding: 36px 24px;
  }

  .pricing_card.featured {
    transform: scale(1);
  }
  .pricing_card.featured {
    width: 100%;
  }
  .footer_wrapper {
    grid-template-columns: 1fr;
  }
  .footer_logo {
    margin: auto;
  }
}

@media (max-width: 360px) {
  .hero_content .hero_features {
    font-size: 12px;
  }
}

/* Ultra-narrow screens (older/small Android, foldable cover displays):
   let the single-line feature list wrap instead of running off-screen. */
@media (max-width: 350px) {
  .hero_features span {
    white-space: normal;
  }
}
