:root {
  --green: #123f25;
  --green-2: #1f5a36;
  --green-3: #e8f1ea;
  --gold: #d7b46a;
  --cream: #fbfaf5;
  --text: #1f2a24;
  --muted: #5e6b63;
  --border: #d8e2dc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 63, 37, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 245, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 226, 220, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 0;
}

@media (max-width: 980px) {
  .nav {
    gap: 16px;
    padding: 8px 0;
  }
  .nav-links,
  .nav-cta {
    display: none;
  } 
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 120px;
  width: auto;
  max-width: 360px;
}

@media (max-width: 980px) {
  .logo-img {
    height: 86px;
    max-width: 320px;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .logo-img {
    height: 84px;
    max-width: 285px;
  }
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(18, 63, 37, 0.06);
}

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

.menu-toggle span + span {
  margin-top: 6px;
}

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

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

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

.mobile-menu {
  display: none;
}

@media (max-width: 980px) {
  .nav {
    position: relative;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .mobile-menu {
    display: none;
    background: rgba(251, 250, 245, 0.98);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 10px 18px 18px;
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 8px;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 0;
    color: var(--green);
    font-weight: 800;
    border-bottom: 1px solid rgba(216, 226, 220, 0.85);
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .mobile-menu-cta {
    margin-top: 8px;
    text-align: center;
    background: var(--green);
    color: var(--white) !important;
    border-radius: 999px;
    padding: 13px 18px !important;
    border-bottom: 0 !important;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 750;
  border: 1px solid var(--green);
  box-shadow: 0 10px 24px rgba(18, 63, 37, 0.16);
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  background: #0c301b;
}

.btn.secondary {
  background: var(--white);
  color: var(--green);
  border-color: var(--border);
  box-shadow: none;
}

/* Hero */

.hero {
  padding: 78px 0 58px;
  background:
    radial-gradient(circle at 90% 18%, rgba(215, 180, 106, 0.28), transparent 28%),
    linear-gradient(135deg, #fbfaf5 0%, #edf5ef 100%);
  overflow: hidden;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--green);
}

h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  max-width: 850px;
}

.hero p.lead {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--muted);
  margin: 26px 0 30px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 30px;
}

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

.badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-visual {
  min-height: 520px;
  border-radius: 28px;
  background:
    linear-gradient(to bottom, rgba(18, 63, 37, 0.05), rgba(18, 63, 37, 0.58)),
    url("hero-atle.jpg") center/cover;
  position: relative;
  overflow: hidden;
}

.price-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(280px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.price-card small {
  color: var(--green-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  font-size: 2.65rem;
  color: var(--green);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 10px 0 8px;
}

/* Trust bar */

.trust-bar {
  padding: 0;
  background: #123f25;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-grid div {
  padding: 24px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.trust-grid strong {
  display: block;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.2;
  margin-bottom: 6px;
}

.trust-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.35;
}

/* General sections */

section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 680px;
}

.section-head p {
  max-width: 480px;
  color: var(--muted);
  margin: 0;
}

.intro {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.highlight-box {
  background: var(--green);
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight-box h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  font-size: 1.08rem;
}

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

.feature {
  background: var(--green-3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  color: var(--green);
  font-weight: 800;
  min-height: 112px;
}

.feature span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* Cards */

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(18, 63, 37, 0.07);
  display: flex;
  flex-direction: column;
}

.card-image {
  height: 210px;
  background-size: cover;
  background-position: center;
}

.golf-image {
  background-image: url("golf-atle.jpg");
}

.racket-image {
  background-image: url("racket.jpg");
}

.wellness-image {
  background-image: url("https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=900&q=80");
}

.card-body {
  padding: 24px;
  flex: 1;
}

.card h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin: 0 0 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #344139;
}

.check-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--green-3);
  color: var(--green);
  font-weight: 900;
  font-size: 0.78rem;
  margin-top: 2px;
}

/* Process */

.process {
  background: linear-gradient(180deg, #fbfaf5 0%, #eef6f0 100%);
}

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

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  min-height: 240px;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* Split sections */

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 30px rgba(18, 63, 37, 0.06);
}

.panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  margin-bottom: 16px;
}

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

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

.benefit {
  background: var(--green-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  font-weight: 760;
  color: var(--green);
}

/* Athlete section */

.athlete {
  background: var(--green);
  color: var(--white);
  overflow: hidden;
}

.athlete .section-head h2,
.athlete h3 {
  color: var(--white);
}

.athlete .section-head p,
.athlete p {
  color: rgba(255, 255, 255, 0.78);
}

.athlete-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.athlete-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 30px;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 42px;
  align-items: center;
}

.portrait-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.portrait {
  aspect-ratio: 1;
  border-radius: 50%;
  background: url("atle-holmlund.jpg") center/cover, linear-gradient(135deg, #d8e2dc, #ffffff);
  border: 8px solid var(--green-3);
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Pricing */

.pricing {
  background: linear-gradient(135deg, var(--green) 0%, #0c301b 100%);
  color: var(--white);
}

.pricing-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.pricing h2,
.pricing h3 {
  color: var(--white);
}

.pricing p,
.pricing li {
  color: rgba(255, 255, 255, 0.82);
}

.pricing .big-price {
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
  white-space: nowrap;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  font-weight: 800;
  font-size: 1.1rem;
}

/* FAQ */

.faq-section {
  background: #fbfaf5;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 8px 22px rgba(18, 63, 37, 0.05);
}

summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--green);
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

/* Footer */

footer {
  background: #0b2415;
  color: rgba(255, 255, 255, 0.8);
  padding: 38px 0;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 36px;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
}

.footer-contact {
  text-align: right;
  font-size: 1.05rem;
  line-height: 1.6;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: none;
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-logo {
    width: 220px;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-note {
    grid-column: auto;
  }
}

/* Responsive */

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

  .hero-grid,
  .intro-grid,
  .split,
  .about-grid,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .cards,
  .steps,
  .feature-row,
  .athlete-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

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

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div:nth-child(1),
  .trust-grid div:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding: 54px 0 42px;
  }

  section {
    padding: 54px 0;
  }

  .cards,
  .steps,
  .feature-row,
  .athlete-grid,
  .faq-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .price-card {
    position: static;
    width: auto;
    margin: 18px;
  }

  .hero-visual {
    min-height: 360px;
    display: flex;
    align-items: end;
  }

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

  .trust-grid div,
  .trust-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 20px 0;
  }

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

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-note {
    max-width: none;
  }
}
@media (max-width: 980px) {
  .nav .nav-cta {
    display: none !important;
  }
}
section[id],
main[id] {
  scroll-margin-top: 170px;
}

@media (max-width: 980px) {
  section[id],
  main[id] {
    scroll-margin-top: 135px;
  }
}

@media (max-width: 640px) {
  section[id],
  main[id] {
    scroll-margin-top: 125px;
  }
}
@media (max-width: 640px) {
  .feature {
    min-height: auto;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .feature span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.7rem;
    margin-bottom: 0;
  }
}