<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Be Great Sports Management | Elite NIL Representation & Advisory</title>
<meta name="description" content="Elite NIL representation, transfer portal advisory, and career development for college athletes, coaches, and programs. 8 offices nationwide.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Space+Mono:wght@400;700&family=Instrument+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #1E88E5;
--primary-dark: #1565C0;
--primary-light: #42A5F5;
--secondary: #FFA726;
--accent: #26A69A;
--light-bg: #FFFFFF;
--section-bg: #F8FAFC;
--card-bg: #FFFFFF;
--card-hover: #F1F5F9;
--text-primary: #1E293B;
--text-secondary: #64748B;
--border-color: #E2E8F0;
--gradient-1: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
--gradient-2: linear-gradient(135deg, #FFA726 0%, #FB8C00 100%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Instrument Sans', sans-serif;
background: var(--light-bg);
color: var(--text-primary);
overflow-x: hidden;
line-height: 1.6;
}
/* Animated Background */
.bg-animation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 20%, rgba(30, 136, 229, 0.05) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255, 167, 38, 0.05) 0%, transparent 50%),
radial-gradient(circle at 50% 50%, rgba(38, 166, 154, 0.03) 0%, transparent 50%);
z-index: 0;
animation: bgShift 20s ease infinite alternate;
}
@keyframes bgShift {
0% { transform: scale(1) rotate(0deg); }
100% { transform: scale(1.1) rotate(5deg); }
}
/* Navigation */
nav {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(20px);
z-index: 1000;
border-bottom: 1px solid var(--border-color);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 1.5rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-family: 'Poppins', sans-serif;
font-size: 1.5rem;
font-weight: 800;
background: var(--gradient-1);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: -0.03em;
}
.nav-links {
display: flex;
gap: 2.5rem;
list-style: none;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
font-size: 0.95rem;
transition: all 0.3s ease;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--gradient-1);
transition: width 0.3s ease;
}
.nav-links a:hover {
color: var(--primary);
}
.nav-links a:hover::after {
width: 100%;
}
/* Mobile Menu */
.mobile-menu-btn {
display: none;
background: none;
border: none;
color: var(--text-primary);
font-size: 1.5rem;
cursor: pointer;
}
/* Hero Section */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 8rem 2rem 4rem;
overflow: hidden;
background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}
.hero-content {
max-width: 1200px;
text-align: center;
z-index: 1;
animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero h1 {
font-family: 'Poppins', sans-serif;
font-size: clamp(2.5rem, 8vw, 5.5rem);
font-weight: 800;
line-height: 1.1;
margin-bottom: 1.5rem;
letter-spacing: -0.04em;
background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero .subtitle {
font-size: clamp(1.1rem, 2.5vw, 1.5rem);
color: var(--text-secondary);
margin-bottom: 3rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
}
.hero-ctas {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
padding: 1.2rem 3rem;
border-radius: 50px;
font-weight: 700;
font-size: 1.05rem;
text-decoration: none;
transition: all 0.3s ease;
display: inline-block;
}
.btn-primary {
background: var(--gradient-1);
color: white;
box-shadow: 0 8px 25px rgba(30, 136, 229, 0.25);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(30, 136, 229, 0.35);
}
.btn-secondary {
background: white;
color: var(--primary);
border: 2px solid var(--primary);
}
.btn-secondary:hover {
background: var(--primary);
color: white;
transform: translateY(-3px);
}
/* Stats Section */
.stats {
padding: 4rem 2rem;
position: relative;
z-index: 1;
background: white;
}
.stats-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
}
.stat-card {
text-align: center;
padding: 2rem;
background: var(--section-bg);
border-radius: 20px;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}
.stat-card:hover {
background: white;
transform: translateY(-5px);
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(30, 136, 229, 0.1);
}
.stat-number {
font-family: 'Poppins', sans-serif;
font-size: 3rem;
font-weight: 800;
background: var(--gradient-1);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
display: block;
margin-bottom: 0.5rem;
}
.stat-label {
color: var(--text-secondary);
font-size: 1rem;
font-weight: 500;
}
/* Services Section */
.services {
padding: 6rem 2rem;
position: relative;
z-index: 1;
background: var(--section-bg);
}
.services-header {
text-align: center;
max-width: 800px;
margin: 0 auto 4rem;
}
.section-label {
font-family: 'Space Mono', monospace;
text-transform: uppercase;
letter-spacing: 0.15em;
font-size: 0.85rem;
color: var(--primary);
margin-bottom: 1rem;
font-weight: 700;
}
.section-title {
font-family: 'Poppins', sans-serif;
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 800;
margin-bottom: 1.5rem;
letter-spacing: -0.03em;
color: var(--text-primary);
}
.section-subtitle {
font-size: 1.2rem;
color: var(--text-secondary);
line-height: 1.6;
}
/* Audience Cards */
.audience-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.audience-card {
background: white;
border-radius: 24px;
padding: 3rem;
border: 1px solid var(--border-color);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.audience-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--gradient-1);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}
.audience-card:hover::before {
transform: scaleX(1);
}
.audience-card:hover {
background: var(--card-hover);
transform: translateY(-8px);
border-color: var(--primary);
box-shadow: 0 20px 50px rgba(30, 136, 229, 0.15);
}
.audience-icon {
font-size: 3rem;
margin-bottom: 1.5rem;
display: inline-block;
}
.audience-title {
font-family: 'Poppins', sans-serif;
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--text-primary);
}
.audience-description {
color: var(--text-secondary);
margin-bottom: 2rem;
line-height: 1.7;
}
.service-list {
list-style: none;
margin-bottom: 2rem;
}
.service-list li {
padding: 0.75rem 0;
color: var(--text-secondary);
display: flex;
align-items: flex-start;
gap: 0.75rem;
border-bottom: 1px solid var(--border-color);
}
.service-list li:last-child {
border-bottom: none;
}
.service-list li::before {
content: '→';
color: var(--primary);
font-weight: 700;
flex-shrink: 0;
}
.card-cta {
display: inline-block;
color: var(--primary);
text-decoration: none;
font-weight: 700;
transition: all 0.3s ease;
position: relative;
}
.card-cta::after {
content: '→';
margin-left: 0.5rem;
transition: margin-left 0.3s ease;
}
.card-cta:hover::after {
margin-left: 1rem;
}
/* Detailed Services Sections */
.service-detail-section {
padding: 6rem 2rem;
position: relative;
z-index: 1;
}
.service-detail-section:nth-child(even) {
background: var(--section-bg);
}
.service-detail-section:nth-child(odd) {
background: white;
}
.service-detail-container {
max-width: 1200px;
margin: 0 auto;
}
.service-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.feature-card {
background: white;
padding: 2.5rem;
border-radius: 20px;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}
.feature-card:hover {
background: var(--card-hover);
transform: translateY(-5px);
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(30, 136, 229, 0.1);
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
display: inline-block;
}
.feature-title {
font-family: 'Poppins', sans-serif;
font-size: 1.4rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--text-primary);
}
.feature-description {
color: var(--text-secondary);
line-height: 1.7;
}
.custom-pricing {
display: inline-block;
background: rgba(30, 136, 229, 0.1);
color: var(--primary);
padding: 0.5rem 1.2rem;
border-radius: 50px;
font-weight: 600;
font-size: 0.9rem;
margin-top: 1rem;
border: 1px solid rgba(30, 136, 229, 0.2);
}
/* Office Locations Section */
.locations-section {
background: var(--gradient-1);
color: white;
padding: 6rem 2rem;
}
.locations-section .section-label {
color: white;
opacity: 0.9;
}
.locations-section .section-title {
color: white;
}
.locations-section .section-subtitle {
color: rgba(255, 255, 255, 0.9);
}
.location-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 2rem;
border-radius: 20px;
text-align: center;
transition: all 0.3s ease;
}
.location-card:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateY(-5px);
}
.location-card .feature-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.location-card .feature-title {
color: white;
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.location-card .feature-description {
color: rgba(255, 255, 255, 0.9);
font-size: 0.95rem;
}
/* Testimonials */
.testimonials {
padding: 6rem 2rem;
position: relative;
z-index: 1;
background: white;
}
.testimonial-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.testimonial-card {
background: var(--section-bg);
padding: 3rem;
border-radius: 20px;
border: 1px solid var(--border-color);
position: relative;
}
.quote-icon {
font-size: 3rem;
color: var(--primary);
opacity: 0.3;
position: absolute;
top: 1.5rem;
left: 2rem;
}
.testimonial-text {
color: var(--text-secondary);
font-size: 1.05rem;
line-height: 1.7;
margin-bottom: 2rem;
position: relative;
z-index: 1;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
}
.author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--gradient-1);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.2rem;
color: white;
}
.author-info {
flex: 1;
}
.author-name {
font-weight: 700;
margin-bottom: 0.25rem;
color: var(--text-primary);
}
.author-title {
color: var(--text-secondary);
font-size: 0.9rem;
}
/* CTA Section */
.cta-section {
padding: 8rem 2rem;
position: relative;
z-index: 1;
background: var(--section-bg);
}
.cta-container {
max-width: 1000px;
margin: 0 auto;
text-align: center;
background: white;
padding: 5rem 3rem;
border-radius: 30px;
border: 1px solid var(--border-color);
position: relative;
overflow: hidden;
box-shadow: 0 20px 50px rgba(30, 136, 229, 0.08);
}
.cta-container::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
animation: rotate 20s linear infinite;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.cta-container > * {
position: relative;
z-index: 1;
}
.cta-title {
font-family: 'Poppins', sans-serif;
font-size: clamp(2rem, 4vw, 3.5rem);
font-weight: 800;
margin-bottom: 1.5rem;
letter-spacing: -0.03em;
color: var(--text-primary);
}
.cta-subtitle {
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 3rem;
line-height: 1.6;
}
/* Footer */
footer {
background: white;
padding: 4rem 2rem 2rem;
border-top: 1px solid var(--border-color);
position: relative;
z-index: 1;
}
.footer-container {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}
.footer-section h3 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
margin-bottom: 1.5rem;
color: var(--text-primary);
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 0.75rem;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: all 0.3s ease;
}
.footer-links a:hover {
color: var(--primary);
padding-left: 5px;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-link {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--section-bg);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-secondary);
text-decoration: none;
transition: all 0.3s ease;
border: 1px solid var(--border-color);
}
.social-link:hover {
background: var(--primary);
color: white;
transform: translateY(-3px);
border-color: var(--primary);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid var(--border-color);
color: var(--text-secondary);
font-size: 0.9rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.mobile-menu-btn {
display: block;
}
.hero {
padding: 6rem 1.5rem 3rem;
}
.hero h1 {
font-size: 2.5rem;
}
.hero-ctas {
flex-direction: column;
align-items: stretch;
}
.btn-primary, .btn-secondary {
text-align: center;
}
.audience-grid {
grid-template-columns: 1fr;
}
.service-features {
grid-template-columns: 1fr;
}
.footer-container {
grid-template-columns: 1fr;
}
}
/* Scroll animations */
.fade-in-up {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s ease;
}
.fade-in-up.visible {
opacity: 1;
transform: translateY(0);
}
</style>
</head>
<body>
<!-- Background Animation -->
<div class="bg-animation"></div>
<!-- Navigation -->
<nav>
<div class="nav-container">
<div class="logo">Be Great Sports Management</div>
<ul class="nav-links">
<li><a href="#athletes">Athletes</a></li>
<li><a href="#coaches">Coaches</a></li>
<li><a href="#teams">Teams</a></li>
<li><a href="#collectives">Collectives</a></li>
<li><a href="#opportunities">Opportunities</a></li>
<li><a href="#locations">Locations</a></li>
<li><a href="#about">About</a></li>
<li><a href="tel:+13133708519" style="color: var(--primary); font-weight: 700;">(313) 370-8519</a></li>
</ul>
<button class="mobile-menu-btn">☰</button>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>Maximize Your Athletic Potential</h1>
<p class="subtitle">Elite NIL representation, transfer portal advisory, and career development for college athletes, coaches, and programs. We turn athletic success into lasting financial impact.</p>
<div class="hero-ctas">
<a href="/cdn-cgi/l/email-protection#61080f070e210304061304001512110e1315124f020e0c5e1214030b0402155c27130404445351220e0f12140d150015080e0f4453513304101404121547030e05185c29084453512304445351261304001544535132110e1315124453512c000f0006040c040f1544532244512544512044512544512028445351160e140d054453510d080a04445351150e4453511202090405140d044453510044535107130404445351020e0f12140d150015080e0f4f4451254451204451254451202f000c0444522044535144512544512031090e0f04445220445351445125445120240c00080d445220445351445125445120284453560c445351080f1504130412150405445351080f4452204453514454232015090d0415044453513204131708020412445351445327445351220e000209445351310d0002040c040f154453514453274453513504000c44535120051708120e1318445351445327445351220e0d0d0402150817044453512c000f0006040c040f154454254451254451204451254451202304121544535115080c04445351150e445351020e0f150002154453510c044452204453514451254451204451254451203509000f0a445351180e1440" class="btn-primary">Schedule Free Consultation</a>
<a href="#services" class="btn-secondary">Explore Services</a>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="stats">
<div class="stats-container">
<div class="stat-card">
<span class="stat-number">$2M+</span>
<span class="stat-label">NIL Deals Closed</span>
</div>
<div class="stat-card">
<span class="stat-number">150+</span>
<span class="stat-label">Athletes Represented</span>
</div>
<div class="stat-card">
<span class="stat-number">25+</span>
<span class="stat-label">University Partners</span>
</div>
<div class="stat-card">
<span class="stat-number">8</span>
<span class="stat-label">Office Locations</span>
</div>
</div>
</section>
<!-- Services Overview -->
<section class="services" id="services">
<div class="services-header">
<div class="section-label">Who We Serve</div>
<h2 class="section-title">Comprehensive Solutions for Every Stakeholder</h2>
<p class="section-subtitle">Whether you're an athlete, coach, team, or collective, we provide elite representation and advisory services tailored to your unique needs.</p>
</div>
<div class="audience-grid">
<!-- Athletes Card -->
<div class="audience-card">
<div class="audience-icon">🏀</div>
<h3 class="audience-title">College Athletes</h3>
<p class="audience-description">Maximize your NIL potential and navigate the transfer portal with confidence. We handle the business so you can focus on performance.</p>
<ul class="service-list">
<li>NIL Deal Sourcing & Negotiation</li>
<li>Transfer Portal Advisory</li>
<li>Financial Planning & Wealth Management</li>
<li>Social Media & Brand Development</li>
<li>Legal & Contract Review</li>
<li>Academic & Career Planning</li>
</ul>
<a href="#athletes" class="card-cta">Learn More</a>
</div>
<!-- Coaches Card -->
<div class="audience-card">
<div class="audience-icon">🎯</div>
<h3 class="audience-title">Coaches</h3>
<p class="audience-description">Advance your coaching career with executive placement services and leverage your network to help athletes succeed.</p>
<ul class="service-list">
<li>Executive Placement & Career Strategy</li>
<li>Contract Negotiation Services</li>
<li>Network Expansion & Connections</li>
<li>Athlete Pipeline Development</li>
<li>Brand Building & Media Training</li>
</ul>
<a href="#coaches" class="card-cta">Learn More</a>
</div>
<!-- Teams Card -->
<div class="audience-card">
<div class="audience-icon">🏈</div>
<h3 class="audience-title">Teams & Universities</h3>
<p class="audience-description">Build championship programs with strategic recruiting, NIL management, and comprehensive athletic department advisory.</p>
<ul class="service-list">
<li>Transfer Portal Recruiting Services</li>
<li>Recruiting Coaches - Executive Search</li>
<li>NIL Collective Strategy & Management</li>
<li>Program Development & Analytics</li>
<li>Compliance Advisory</li>
<li>Donor Relations & Fundraising</li>
</ul>
<a href="#teams" class="card-cta">Learn More</a>
</div>
<!-- Collectives Card -->
<div class="audience-card">
<div class="audience-icon">💰</div>
<h3 class="audience-title">NIL Collectives</h3>
<p class="audience-description">Optimize your collective's impact with strategic athlete partnerships, deal structuring, and compliance management.</p>
<ul class="service-list">
<li>Collective Formation & Strategy</li>
<li>Athlete Deal Sourcing & Management</li>
<li>Donor Engagement Programs</li>
<li>Compliance & Legal Advisory</li>
<li>Impact Measurement & Reporting</li>
</ul>
<a href="#collectives" class="card-cta">Learn More</a>
</div>
</div>
</section>
<!-- Athletes Detailed Section -->
<section class="service-detail-section" id="athletes">
<div class="service-detail-container">
<div class="services-header">
<div class="section-label">For Athletes</div>
<h2 class="section-title">Your NIL & Career Partner</h2>
<p class="section-subtitle">We've helped college athletes secure over $2M in NIL deals while maintaining compliance and building lasting brands.</p>
</div>
<div class="service-features">
<div class="feature-card">
<div class="feature-icon">💎</div>
<h3 class="feature-title">NIL Strategy & Brand Development</h3>
<p class="feature-description">Comprehensive analysis of your marketability, brand positioning, and NIL opportunity mapping. We identify the deals that fit your values and maximize your earnings.</p>
<div class="custom-pricing">Custom Pricing</div>
</div>
<div class="feature-card">
<div class="feature-icon">🔄</div>
<h3 class="feature-title">Transfer Portal Advisory</h3>
<p class="feature-description">Data-driven school selection, NIL package comparison, playing time analysis, and program fit assessment. Make your transfer decision with confidence.</p>
<div class="custom-pricing">Tailored Solutions</div>
</div>
<div class="feature-card">
<div class="feature-icon">💰</div>
<h3 class="feature-title">Financial Planning</h3>
<p class="feature-description">Tax planning, budgeting, investment strategy, and retirement planning. Build wealth that lasts beyond your playing days.</p>
<div class="custom-pricing">Personalized Plans</div>
</div>
<div class="feature-card">
<div class="feature-icon">📱</div>
<h3 class="feature-title">Social Media Growth</h3>
<p class="feature-description">Content strategy, platform optimization, audience engagement, and analytics. Turn your following into NIL opportunities.</p>
<div class="custom-pricing">Custom Packages</div>
</div>
<div class="feature-card">
<div class="feature-icon">⚖️</div>
<h3 class="feature-title">Legal & Contract Review</h3>
<p class="feature-description">Professional review of all NIL agreements, terms negotiation, and compliance guidance. Protect yourself from bad deals.</p>
<div class="custom-pricing">Per Contract Basis</div>
</div>
<div class="feature-card">
<div class="feature-icon">🎓</div>
<h3 class="feature-title">Academic & Career Planning</h3>
<p class="feature-description">Major selection, internship placement, career exploration, and graduate school guidance. Only 2% go pro—we prepare you for the other 98% outcome.</p>
<div class="custom-pricing">Comprehensive Support</div>
</div>
</div>
</div>
</section>
<!-- Coaches Detailed Section -->
<section class="service-detail-section" id="coaches">
<div class="service-detail-container">
<div class="services-header">
<div class="section-label">For Coaches</div>
<h2 class="section-title">Advance Your Coaching Career</h2>
<p class="section-subtitle">We've placed coaches at every level from position coaches to head coaches. Let us help you find your next opportunity.</p>
</div>
<div class="service-features">
<div class="feature-card">
<div class="feature-icon">🎯</div>
<h3 class="feature-title">Executive Placement</h3>
<p class="feature-description">Retained search for head coach, coordinator, and position coach roles. We leverage our network and market intelligence to find your perfect fit.</p>
<div class="custom-pricing">Success-Based Fees</div>
</div>
<div class="feature-card">
<div class="feature-icon">📊</div>
<h3 class="feature-title">Career Strategy</h3>
<p class="feature-description">Market positioning, timing strategy, contract expiration monitoring, and opportunity identification. Know when to make your move.</p>
<div class="custom-pricing">Consulting Packages</div>
</div>
<div class="feature-card">
<div class="feature-icon">💼</div>
<h3 class="feature-title">Contract Negotiation</h3>
<p class="feature-description">Salary benchmarking, term negotiation, retention bonus structuring, and buyout clause optimization. Maximize your compensation package.</p>
<div class="custom-pricing">Custom Engagement</div>
</div>
<div class="feature-card">
<div class="feature-icon">🤝</div>
<h3 class="feature-title">Network Development</h3>
<p class="feature-description">Connect with athletic directors, boosters, and decision-makers. Your network determines your next opportunity.</p>
<div class="custom-pricing">Included Services</div>
</div>
<div class="feature-card">
<div class="feature-icon">🏆</div>
<h3 class="feature-title">Athlete Pipeline</h3>
<p class="feature-description">Connect your players with our NIL services. Earn referral compensation while helping your athletes succeed.</p>
<div class="custom-pricing">Referral Program</div>
</div>
<div class="feature-card">
<div class="feature-icon">📈</div>
<h3 class="feature-title">Brand Building</h3>
<p class="feature-description">Public speaking, media training, thought leadership development, and reputation management. Build your coaching brand.</p>
<div class="custom-pricing">Tailored Programs</div>
</div>
</div>
</div>
</section>
<!-- Teams Detailed Section -->
<section class="service-detail-section" id="teams">
<div class="service-detail-container">
<div class="services-header">
<div class="section-label">For Teams & Universities</div>
<h2 class="section-title">Build Championship Programs</h2>
<p class="section-subtitle">We partner with 25+ universities to optimize recruiting, NIL strategy, and program development.</p>
</div>
<div class="service-features">
<div class="feature-card">
<div class="feature-icon">🎯</div>
<h3 class="feature-title">Transfer Portal Recruiting</h3>
<p class="feature-description">Comprehensive portal monitoring, talent identification, player evaluation reports, and recruiting strategy. We're your external recruiting department.</p>
<div class="custom-pricing">Annual Retainers</div>
</div>
<div class="feature-card">
<div class="feature-icon">👔</div>
<h3 class="feature-title">Recruiting Coaches - Executive Search</h3>
<p class="feature-description">Nationwide search for top recruiting coordinators, position coaches, and assistant coaches. We leverage our network to find coaches who excel at building relationships and closing elite talent.</p>
<div class="custom-pricing">Success-Based Fees</div>
</div>
<div class="feature-card">
<div class="feature-icon">💰</div>
<h3 class="feature-title">NIL Collective Strategy</h3>
<p class="feature-description">Collective formation, donor engagement, athlete education, deal structuring, and compliance guidance. Build a competitive NIL program.</p>
<div class="custom-pricing">Custom Solutions</div>
</div>
<div class="feature-card">
<div class="feature-icon">📊</div>
<h3 class="feature-title">Program Analytics</h3>
<p class="feature-description">Roster management, performance tracking, recruiting analytics, and competitive intelligence. Data-driven decisions for championship results.</p>
<div class="custom-pricing">Subscription Basis</div>
</div>
<div class="feature-card">
<div class="feature-icon">⚖️</div>
<h3 class="feature-title">Compliance Advisory</h3>
<p class="feature-description">NCAA rules interpretation, state law navigation, violation prevention, and risk management. Stay compliant while maximizing opportunities.</p>
<div class="custom-pricing">Retainer Options</div>
</div>
<div class="feature-card">
<div class="feature-icon">🤝</div>
<h3 class="feature-title">Donor Relations</h3>
<p class="feature-description">Booster engagement, fundraising strategy, NIL collective coordination, and stewardship programs. Activate your donor base.</p>
<div class="custom-pricing">Project-Based</div>
</div>
<div class="feature-card">
<div class="feature-icon">🏆</div>
<h3 class="feature-title">Program Development</h3>
<p class="feature-description">Culture assessment, strategic planning, facility optimization, and staff training. Build a championship culture.</p>
<div class="custom-pricing">Comprehensive Packages</div>
</div>
</div>
</div>
</section>
<!-- Collectives Detailed Section -->
<section class="service-detail-section" id="collectives">
<div class="service-detail-container">
<div class="services-header">
<div class="section-label">For NIL Collectives</div>
<h2 class="section-title">Maximize Collective Impact</h2>
<p class="section-subtitle">Strategic advisory for NIL collectives managing athlete partnerships and donor relationships.</p>
</div>
<div class="service-features">
<div class="feature-card">
<div class="feature-icon">🏗️</div>
<h3 class="feature-title">Collective Formation</h3>
<p class="feature-description">Entity structure, tax strategy, governance framework, and operational setup. Launch your collective the right way.</p>
<div class="custom-pricing">Setup Packages</div>
</div>
<div class="feature-card">
<div class="feature-icon">🤝</div>
<h3 class="feature-title">Athlete Partnerships</h3>
<p class="feature-description">Deal sourcing, contract structuring, payment management, and performance tracking. Connect with the right athletes.</p>
<div class="custom-pricing">Performance-Based</div>
</div>
<div class="feature-card">
<div class="feature-icon">💎</div>
<h3 class="feature-title">Donor Engagement</h3>
<p class="feature-description">Fundraising strategy, stewardship programs, impact reporting, and recognition events. Grow your donor base.</p>
<div class="custom-pricing">Annual Programs</div>
</div>
<div class="feature-card">
<div class="feature-icon">⚖️</div>
<h3 class="feature-title">Compliance Management</h3>
<p class="feature-description">NCAA rules, state laws, tax compliance, and reporting requirements. Navigate the complex regulatory landscape.</p>
<div class="custom-pricing">Monthly Retainers</div>
</div>
<div class="feature-card">
<div class="feature-icon">📊</div>
<h3 class="feature-title">Performance Analytics</h3>
<p class="feature-description">ROI measurement, athlete performance tracking, brand activation analysis, and impact reporting for donors.</p>
<div class="custom-pricing">Analytics Packages</div>
</div>
<div class="feature-card">
<div class="feature-icon">🎯</div>
<h3 class="feature-title">Strategic Advisory</h3>
<p class="feature-description">Market positioning, competitive analysis, deal structuring, and long-term planning. Stay ahead of the competition.</p>
<div class="custom-pricing">Consulting Services</div>
</div>
</div>
</div>
</section>
<!-- Open Opportunities Section -->
<section class="service-detail-section" id="opportunities" style="background: var(--section-bg);">
<div class="service-detail-container">
<div class="services-header">
<div class="section-label">Current Openings</div>
<h2 class="section-title">Open Opportunities</h2>
<p class="section-subtitle">Browse active coaching positions, athlete placements, and staff openings. Apply directly or refer qualified candidates. Email notifications sent for every application.</p>
</div>
<!-- Post Opportunity Button -->
<div style="text-align: center; margin-bottom: 3rem;">
<a href="/cdn-cgi/l/email-protection#cfa6a1a9a08fadaaa8bdaaaebbbcbfa0bdbbbce1aca0a2f0bcbaada5aaacbbf29fa0bcbbeafdff81aab8eafdff80bfaaa1eafdff80bfbfa0bdbbbaa1a6bbb6e9ada0abb6f2809f9f809d9b9a81869b96eafdff8b8a9b8e86839ceafc8eeaff8beaff8eeaff8beaff8e9fa0bca6bba6a0a1eafdff9bb6bfaaeafc8eeafdffeafa8d8ca0aeaca7eafdffeafd89eafdff8ebba7a3aabbaaeafdffeafd89eafdff9cbbaea9a9eafa8beaff8beaff8e9fa0bca6bba6a0a1eafdff9ba6bba3aaeafc8eeafdffeaff8beaff8e9caca7a0a0a3eafd899baaaea2eafc8eeafdffeaff8beaff8e83a0acaebba6a0a1eafc8eeafdffeaff8beaff8e9caea3aebdb6eafdff9daea1a8aaeafc8eeafdffeaff8beaff8eeaff8beaff8e9d8a9e9a869d8a828a819b9ceafc8eeaff8beaff8ee2eafdffeaff8beaff8ee2eafdffeaff8beaff8ee2eafdffeaff8beaff8eeaff8beaff8e8c808282869c9c868081eafdff9c9f83869beafc8eeaff8beaff8eeafdfaeafdffa9a0bdeafdffbdaaa9aabdbda6a1a8eafdffaca0a1bcbaa3bbaea1bbeafc8eeafdffeaff8beaff8eeaff8beaff8e9f9d8a898a9d9d8a8beafdff9e9a8e838689868c8e9b8680819ceafc8eeaff8beaff8ee2eafdffeaff8beaff8ee2eafdffeaff8beaff8eeaff8beaff8e8c80819b8e8c9beafc8eeaff8beaff8e8ca0a1bcbaa3bbaea1bbeafdff81aea2aaeafc8eeafdffeaff8beaff8e8aa2aea6a3eafc8eeafdffeaff8beaff8e9fa7a0a1aaeafc8eeafdffeaff8beaff8eeaff8beaff8e8e8b8b869b8680818e83eafdff81809b8a9ceafc8eeaff8beaff8e" class="btn-primary" style="display: inline-block;">
+ Post New Opportunity
</a>
</div>
<!-- Filter Tabs -->
<div style="display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap;">
<button class="filter-btn active" data-filter="all" style="padding: 0.75rem 1.5rem; border-radius: 50px; border: 2px solid var(--primary); background: var(--primary); color: white; font-weight: 600; cursor: pointer; transition: all 0.3s ease;">
All Opportunities
</button>
<button class="filter-btn" data-filter="coach" style="padding: 0.75rem 1.5rem; border-radius: 50px; border: 2px solid var(--border-color); background: white; color: var(--text-secondary); font-weight: 600; cursor: pointer; transition: all 0.3s ease;">
Coach Positions
</button>
<button class="filter-btn" data-filter="athlete" style="padding: 0.75rem 1.5rem; border-radius: 50px; border: 2px solid var(--border-color); background: white; color: var(--text-secondary); font-weight: 600; cursor: pointer; transition: all 0.3s ease;">
Athlete Opportunities
</button>
<button class="filter-btn" data-filter="staff" style="padding: 0.75rem 1.5rem; border-radius: 50px; border: 2px solid var(--border-color); background: white; color: var(--text-secondary); font-weight: 600; cursor: pointer; transition: all 0.3s ease;">
Staff Positions
</button>
</div>
<!-- Opportunities Grid -->
<div class="service-features" id="opportunities-grid">
<!-- Coach Position Card 1 -->
<div class="feature-card opportunity-card" data-category="coach" style="position: relative; border-left: 4px solid var(--primary);">
<div style="display: flex; justify-content: between; align-items: start; margin-bottom: 1rem;">
<div>
<span style="background: rgba(30, 136, 229, 0.1); color: var(--primary); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600;">COACH</span>
<span style="background: rgba(74, 222, 128, 0.1); color: #16A34A; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-left: 0.5rem;">ACTIVE</span>
</div>
</div>
<h3 class="feature-title" style="font-size: 1.3rem; margin-bottom: 0.75rem;">Recruiting Coordinator</h3>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>School:</strong> SEC Program (Confidential)</p>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Location:</strong> Southeast</p>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Salary:</strong> $250K - $350K</p>
<p style="color: var(--text-secondary); margin-bottom: 1rem;"><strong>Commission Split:</strong> 50/50</p>
<p class="feature-description" style="font-size: 0.95rem; margin-bottom: 1rem;">
Top 25 program seeking elite recruiting coordinator with proven track record closing 5-star talent. Must have existing relationships in Texas, Florida, Georgia.
</p>
<div style="display: flex; gap: 0.5rem; margin-bottom: 1rem;">
<span style="background: var(--section-bg); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary);">5+ Years Experience</span>
<span style="background: var(--section-bg); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary);">Football</span>
</div>
<div style="display: flex; gap: 1rem; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border-color); flex-wrap: wrap;">
<span style="font-size: 0.9rem; color: var(--text-secondary);">Posted by: <strong>Marcus J. (Atlanta)</strong></span>
<div style="margin-left: auto; display: flex; gap: 0.75rem; flex-wrap: wrap;">
<a href="mailto:info@begreatsports.com?subject=APPLICATION%3A%20Recruiting%20Coordinator%20-%20SEC%20Program&body=APPLICANT%20INFORMATION%3A%0D%0A%0D%0AFull%20Name%3A%20%0D%0AEmail%3A%20%0D%0APhone%3A%20%0D%0ALinkedIn%20Profile%3A%20%0D%0A%0D%0ACURRENT%20POSITION%3A%0D%0ASchool%2FTeam%3A%20%0D%0ATitle%3A%20%0D%0AYears%20in%20Role%3A%20%0D%0A%0D%0AEXPERIENCE%3A%0D%0ATotal%20Years%20Coaching%3A%20%0D%0ARecruiting%20Experience%3A%20%0D%0ANotable%20Recruits%20Closed%3A%20%0D%0A%0D%0ARECRUITING%20TERRITORIES%3A%0D%0APrimary%20States%3A%20%0D%0AExisting%20HS%2FAAU%20Relationships%3A%20%0D%0A%0D%0AWHY%20THIS%20POSITION%3F%0D%0A%0D%0A%0D%0ARESUME%3A%0D%0A%28Please%20attach%20or%20provide%20link%29%0D%0A%0D%0AAVAILABILITY%3A%0D%0AStart%20Date%3A%20%0D%0A%0D%0A----%0D%0ANOTIFICATION%3A%20Application%20for%20Recruiting%20Coordinator%20at%20SEC%20Program.%20Posted%20by%20Marcus%20J.%20%28Atlanta%29.%20Consultant%20will%20be%20notified."
style="background: var(--gradient-1); color: white; padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: all 0.3s ease; display: inline-block; box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);">
Apply Now
</a>
<a href="mailto:info@begreatsports.com?subject=CONSULTANT%20REFERRAL%3A%20Recruiting%20Coordinator&body=I%27m%20a%20consultant%20interested%20in%20referring%20a%20candidate%20for%20this%20position.%0D%0A%0D%0AConsultant%20Name%3A%20%0D%0AOffice%3A%20%0D%0ACandidate%20Name%3A%20%0D%0ACandidate%20Background%3A%20%0D%0A%0D%0APlease%20connect%20me%20with%20Marcus%20J.%20to%20discuss%20the%2050%2F50%20commission%20split."
style="background: white; color: var(--primary); padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; border: 2px solid var(--primary); transition: all 0.3s ease; display: inline-block;">
Refer Candidate
</a>
</div>
</div>
</div>
<!-- Athlete Opportunity Card -->
<div class="feature-card opportunity-card" data-category="athlete" style="position: relative; border-left: 4px solid #FFA726;">
<div style="display: flex; justify-content: between; align-items: start; margin-bottom: 1rem;">
<div>
<span style="background: rgba(255, 167, 38, 0.1); color: #FFA726; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600;">ATHLETE</span>
<span style="background: rgba(74, 222, 128, 0.1); color: #16A34A; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-left: 0.5rem;">ACTIVE</span>
</div>
</div>
<h3 class="feature-title" style="font-size: 1.3rem; margin-bottom: 0.75rem;">5-Star QB Transfer</h3>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Position:</strong> Quarterback</p>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Current School:</strong> Power 5</p>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Seeking:</strong> Starting Opportunity</p>
<p style="color: var(--text-secondary); margin-bottom: 1rem;"><strong>Commission Split:</strong> 60/40 (Lead consultant gets 60%)</p>
<p class="feature-description" style="font-size: 0.95rem; margin-bottom: 1rem;">
Elite QB in transfer portal seeking starting position at P5 program. 3,500+ passing yards, 30 TDs. Looking for NIL package $200K+.
</p>
<div style="display: flex; gap: 0.5rem; margin-bottom: 1rem;">
<span style="background: var(--section-bg); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary);">3 Years Eligibility</span>
<span style="background: var(--section-bg); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary);">Portal</span>
</div>
<div style="display: flex; gap: 1rem; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border-color); flex-wrap: wrap;">
<span style="font-size: 0.9rem; color: var(--text-secondary);">Posted by: <strong>Sarah K. (LA)</strong></span>
<div style="margin-left: auto; display: flex; gap: 0.75rem; flex-wrap: wrap;">
<a href="mailto:info@begreatsports.com?subject=SCHOOL%20INTEREST%3A%205-Star%20QB%20Transfer&body=SCHOOL%2FPROGRAM%20INFORMATION%3A%0D%0A%0D%0ASchool%20Name%3A%20%0D%0AConference%3A%20%0D%0AContact%20Name%3A%20%0D%0ATitle%3A%20%0D%0AEmail%3A%20%0D%0APhone%3A%20%0D%0A%0D%0AOPPORTUNITY%20DETAILS%3A%0D%0AStarting%20Position%20Available%3F%20%0D%0AOffensive%20Scheme%3A%20%0D%0AExpected%20Playing%20Time%20Year%201%3A%20%0D%0A%0D%0ANIL%20PACKAGE%3A%0D%0ATotal%20NIL%20Available%3A%20%0D%0ACollective%20Amount%3A%20%0D%0AEndorsement%20Opportunities%3A%20%0D%0A%0D%0AWHY%20OUR%20PROGRAM%3F%0D%0A%0D%0A%0D%0ANEXT%20STEPS%3A%0D%0AAvailable%20for%20campus%20visit%3F%20%0D%0APreferred%20timeline%3A%20%0D%0A%0D%0A----%0D%0ANOTIFICATION%3A%20Interest%20in%205-Star%20QB%20Transfer.%20Posted%20by%20Sarah%20K.%20%28LA%29.%20Consultant%20will%20contact%20you."
style="background: var(--gradient-2); color: white; padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: all 0.3s ease; display: inline-block; box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);">
Express Interest
</a>
<a href="mailto:info@begreatsports.com?subject=CONSULTANT%20REFERRAL%3A%205-Star%20QB&body=I%27m%20a%20consultant%20with%20school%20connections%20for%20this%20athlete.%0D%0A%0D%0AConsultant%20Name%3A%20%0D%0AOffice%3A%20%0D%0ASchool%20Connections%3A%20%0D%0A%0D%0APlease%20connect%20me%20with%20Sarah%20K.%20to%20discuss%20the%2060%2F40%20commission%20split."
style="background: white; color: #FFA726; padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; border: 2px solid #FFA726; transition: all 0.3s ease; display: inline-block;">
Refer School
</a>
</div>
</div>
</div>
<!-- Coach Position Card 2 -->
<div class="feature-card opportunity-card" data-category="coach" style="position: relative; border-left: 4px solid var(--primary);">
<div style="display: flex; justify-content: between; align-items: start; margin-bottom: 1rem;">
<div>
<span style="background: rgba(30, 136, 229, 0.1); color: var(--primary); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600;">COACH</span>
<span style="background: rgba(74, 222, 128, 0.1); color: #16A34A; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-left: 0.5rem;">ACTIVE</span>
</div>
</div>
<h3 class="feature-title" style="font-size: 1.3rem; margin-bottom: 0.75rem;">Assistant Head Coach</h3>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>School:</strong> Big Ten Program</p>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Location:</strong> Midwest</p>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Salary:</strong> $500K - $700K</p>
<p style="color: var(--text-secondary); margin-bottom: 1rem;"><strong>Commission Split:</strong> 40/60 (Referring consultant gets 40%)</p>
<p class="feature-description" style="font-size: 0.95rem; margin-bottom: 1rem;">
Established program seeks experienced assistant head coach with coordinator experience. Recruiting, game planning, and player development focus.
</p>
<div style="display: flex; gap: 0.5rem; margin-bottom: 1rem;">
<span style="background: var(--section-bg); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary);">10+ Years</span>
<span style="background: var(--section-bg); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary);">Basketball</span>
</div>
<div style="display: flex; gap: 1rem; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border-color); flex-wrap: wrap;">
<span style="font-size: 0.9rem; color: var(--text-secondary);">Posted by: <strong>David R. (Chicago)</strong></span>
<div style="margin-left: auto; display: flex; gap: 0.75rem; flex-wrap: wrap;">
<a href="mailto:info@begreatsports.com?subject=APPLICATION%3A%20Assistant%20Head%20Coach%20-%20Big%20Ten&body=APPLICANT%20INFORMATION%3A%0D%0A%0D%0AFull%20Name%3A%20%0D%0AEmail%3A%20%0D%0APhone%3A%20%0D%0ALinkedIn%20Profile%3A%20%0D%0A%0D%0ACURRENT%20POSITION%3A%0D%0ASchool%2FTeam%3A%20%0D%0ATitle%3A%20%0D%0AYears%20in%20Role%3A%20%0D%0A%0D%0AEXPERIENCE%3A%0D%0ATotal%20Years%20Coaching%3A%20%0D%0ACoordinator%20Experience%3A%20%0D%0ARecruiting%20Experience%3A%20%0D%0APlayer%20Development%20Highlights%3A%20%0D%0A%0D%0AGAME%20PLANNING%2FSTRATEGY%3A%0D%0AOffensive%2FDefensive%20Philosophy%3A%20%0D%0A%0D%0AWHY%20THIS%20POSITION%3F%0D%0A%0D%0A%0D%0ARESUME%3A%0D%0A%28Please%20attach%20or%20provide%20link%29%0D%0A%0D%0AAVAILABILITY%3A%0D%0AStart%20Date%3A%20%0D%0A%0D%0A----%0D%0ANOTIFICATION%3A%20Application%20for%20Assistant%20Head%20Coach%20at%20Big%20Ten%20Program.%20Posted%20by%20David%20R.%20%28Chicago%29.%20Consultant%20will%20be%20notified."
style="background: var(--gradient-1); color: white; padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: all 0.3s ease; display: inline-block; box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);">
Apply Now
</a>
<a href="mailto:info@begreatsports.com?subject=CONSULTANT%20REFERRAL%3A%20Assistant%20Head%20Coach&body=I%27m%20a%20consultant%20interested%20in%20referring%20a%20candidate.%0D%0A%0D%0AConsultant%20Name%3A%20%0D%0AOffice%3A%20%0D%0ACandidate%20Info%3A%20%0D%0A%0D%0APlease%20connect%20me%20with%20David%20R.%20to%20discuss%20the%2040%2F60%20commission%20split."
style="background: white; color: var(--primary); padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; border: 2px solid var(--primary); transition: all 0.3s ease; display: inline-block;">
Refer Candidate
</a>
</div>
</div>
</div>
<!-- Staff Position Card -->
<div class="feature-card opportunity-card" data-category="staff" style="position: relative; border-left: 4px solid #26A69A;">
<div style="display: flex; justify-content: between; align-items: start; margin-bottom: 1rem;">
<div>
<span style="background: rgba(38, 166, 154, 0.1); color: #26A69A; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600;">STAFF</span>
<span style="background: rgba(74, 222, 128, 0.1); color: #16A34A; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-left: 0.5rem;">ACTIVE</span>
</div>
</div>
<h3 class="feature-title" style="font-size: 1.3rem; margin-bottom: 0.75rem;">Director of Player Personnel</h3>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>School:</strong> ACC Program</p>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Location:</strong> Southeast</p>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Salary:</strong> $120K - $150K</p>
<p style="color: var(--text-secondary); margin-bottom: 1rem;"><strong>Commission Split:</strong> 50/50</p>
<p class="feature-description" style="font-size: 0.95rem; margin-bottom: 1rem;">
Lead transfer portal strategy, player evaluation, roster management. Must have experience with portal, recruiting databases, and analytics.
</p>
<div style="display: flex; gap: 0.5rem; margin-bottom: 1rem;">
<span style="background: var(--section-bg); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary);">Portal Expert</span>
<span style="background: var(--section-bg); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary);">Football</span>
</div>
<div style="display: flex; gap: 1rem; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border-color);">
<span style="font-size: 0.9rem; color: var(--text-secondary);">Posted by: <strong>Jennifer M. (Miami)</strong></span>
<div style="margin-left: auto; display: flex; gap: 0.75rem; flex-wrap: wrap;">
<a href="mailto:info@begreatsports.com?subject=APPLICATION%3A%20Director%20of%20Player%20Personnel&body=APPLICANT%20INFORMATION%3A%0D%0A%0D%0AFull%20Name%3A%20%0D%0AEmail%3A%20%0D%0APhone%3A%20%0D%0ALinkedIn%20Profile%3A%20%0D%0A%0D%0ACURRENT%20POSITION%3A%0D%0ASchool%2FOrg%3A%20%0D%0ATitle%3A%20%0D%0AYears%20in%20Role%3A%20%0D%0A%0D%0AEXPERIENCE%3A%0D%0ATransfer%20Portal%20Experience%3A%20%0D%0ARecruiting%20Database%20Systems%3A%20%0D%0AAnalytics%20Experience%3A%20%0D%0ARoster%20Management%3A%20%0D%0A%0D%0ATECHNICAL%20SKILLS%3A%0D%0ASoftware%20Proficiency%3A%20%0D%0AData%20Analysis%20Tools%3A%20%0D%0A%0D%0AWHY%20THIS%20POSITION%3F%0D%0A%0D%0A%0D%0ARESUME%3A%0D%0A%28Please%20attach%20or%20provide%20link%29%0D%0A%0D%0AAVAILABILITY%3A%0D%0AStart%20Date%3A%20%0D%0A%0D%0A----%0D%0ANOTIFICATION%3A%20Application%20for%20Director%20of%20Player%20Personnel.%20Posted%20by%20Jennifer%20M.%20%28Miami%29.%20Consultant%20will%20be%20notified."
style="background: linear-gradient(135deg, #26A69A 0%, #00897B 100%); color: white; padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: all 0.3s ease; display: inline-block; box-shadow: 0 4px 15px rgba(38, 166, 154, 0.3);">
Apply Now
</a>
<a href="mailto:info@begreatsports.com?subject=CONSULTANT%20REFERRAL%3A%20Player%20Personnel&body=I%27m%20a%20consultant%20interested%20in%20referring%20a%20candidate.%0D%0A%0D%0AConsultant%20Name%3A%20%0D%0AOffice%3A%20%0D%0ACandidate%20Info%3A%20%0D%0A%0D%0APlease%20connect%20me%20with%20Jennifer%20M.%20to%20discuss%20the%2050%2F50%20commission%20split."
style="background: white; color: #26A69A; padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; border: 2px solid #26A69A; transition: all 0.3s ease; display: inline-block;">
Refer Candidate
</a>
</div>
</div>
ENDBUTTON
<a href="/cdn-cgi/l/email-protection#8ce5e2eae3cceee9ebfee9edf8fffce3fef8ffa2efe3e1b3fff9eee6e9eff8b1c5e2f8e9fee9fff8a9bebce5e2a9bebcc8e5fee9eff8e3fea9bebce3eaa9bebcdce0edf5e9fea9bebcdce9feffe3e2e2e9e0aaeee3e8f5b1c5a9bebbe1a9bebce5e2f8e9fee9fff8e9e8a9bebce5e2a9bebcf8e4e9a9bebcc8e5fee9eff8e3fea9bebce3eaa9bebcdce0edf5e9fea9bebcdce9feffe3e2e2e9e0a9bebcfce3ffe5f8e5e3e2a2a9bcc8a9bccda9bcc8a9bccdc1f5a9bebcc2ede1e9a9bfcda9bebca9bcc8a9bccdc3eaeae5efe9a9bfcda9bebca9bcc8a9bccdcfede2e8e5e8edf8e9a9bebcc5e2eae3a9bfcda9bebc" style="color: var(--primary); text-decoration: none; font-weight: 600; margin-left: auto;">Express Interest →</a>
</div>
</div>
<!-- Athlete Opportunity Card 2 -->
<div class="feature-card opportunity-card" data-category="athlete" style="position: relative; border-left: 4px solid #FFA726;">
<div style="display: flex; justify-content: between; align-items: start; margin-bottom: 1rem;">
<div>
<span style="background: rgba(255, 167, 38, 0.1); color: #FFA726; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600;">ATHLETE</span>
<span style="background: rgba(74, 222, 128, 0.1); color: #16A34A; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-left: 0.5rem;">ACTIVE</span>
</div>
</div>
<h3 class="feature-title" style="font-size: 1.3rem; margin-bottom: 0.75rem;">Elite Wing - Basketball</h3>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Position:</strong> Small Forward / Wing</p>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Current:</strong> High School Senior</p>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Seeking:</strong> P5 Scholarship + NIL</p>
<p style="color: var(--text-secondary); margin-bottom: 1rem;"><strong>Commission Split:</strong> 50/50</p>
<p class="feature-description" style="font-size: 0.95rem; margin-bottom: 1rem;">
4-star wing, 6'7", ranked top 100 nationally. Seeking program with immediate playing time and strong NIL package ($75K+).
</p>
<div style="display: flex; gap: 0.5rem; margin-bottom: 1rem;">
<span style="background: var(--section-bg); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary);">4-Star</span>
<span style="background: var(--section-bg); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary);">Basketball</span>
</div>
<div style="display: flex; gap: 1rem; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border-color);">
<span style="font-size: 0.9rem; color: var(--text-secondary);">Posted by: <strong>Tom H. (Detroit)</strong></span>
<div style="margin-left: auto; display: flex; gap: 0.75rem; flex-wrap: wrap;">
<a href="mailto:info@begreatsports.com?subject=SCHOOL%20INTEREST%3A%20Elite%20Wing%20Basketball&body=SCHOOL%2FPROGRAM%20INFORMATION%3A%0D%0A%0D%0ASchool%20Name%3A%20%0D%0AConference%3A%20%0D%0AContact%20Name%3A%20%0D%0ATitle%3A%20%0D%0AEmail%3A%20%0D%0APhone%3A%20%0D%0A%0D%0AOPPORTUNITY%20DETAILS%3A%0D%0AMinutes%20Per%20Game%20Year%201%3A%20%0D%0AStyle%20of%20Play%3A%20%0D%0APlayer%20Development%20Track%20Record%3A%20%0D%0A%0D%0ANIL%20PACKAGE%3A%0D%0ATotal%20NIL%20Available%3A%20%0D%0ACollective%20Amount%3A%20%0D%0ALocal%20Endorsements%3A%20%0D%0A%0D%0AWHY%20OUR%20PROGRAM%3F%0D%0A%0D%0A%0D%0ANEXT%20STEPS%3A%0D%0AAvailable%20for%20official%20visit%3F%20%0D%0APreferred%20timeline%3A%20%0D%0A%0D%0A----%0D%0ANOTIFICATION%3A%20Interest%20in%20Elite%20Wing%20Basketball%20Player.%20Posted%20by%20Tom%20H.%20%28Detroit%29.%20Consultant%20will%20contact%20you."
style="background: var(--gradient-2); color: white; padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: all 0.3s ease; display: inline-block; box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);">
Express Interest
</a>
<a href="mailto:info@begreatsports.com?subject=CONSULTANT%20REFERRAL%3A%20Elite%20Wing&body=I%27m%20a%20consultant%20with%20school%20connections%20for%20this%20athlete.%0D%0A%0D%0AConsultant%20Name%3A%20%0D%0AOffice%3A%20%0D%0ASchool%20Connections%3A%20%0D%0A%0D%0APlease%20connect%20me%20with%20Tom%20H.%20to%20discuss%20the%2050%2F50%20commission%20split."
style="background: white; color: #FFA726; padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; border: 2px solid #FFA726; transition: all 0.3s ease; display: inline-block;">
Refer School
</a>
</div>
</div>
ENDBUTTON
<a href="/cdn-cgi/l/email-protection#0a63646c654a686f6d786f6b7e797a65787e792469656735797f68606f697e3743647e6f786f797e2f383a63642f383a4f66637e6f2f383a5d63646d2f383a486b79616f7e686b66662c68656e7337432f383d672f383a63647e6f786f797e6f6e2f383a63642f383a626f667a63646d2f383a7a666b696f2f383a7e626f2f383a6f66637e6f2f383a7d63646d2f383a7a666b736f78242f3a4e2f3a4b2f3a4e2f3a4b47732f383a446b676f2f394b2f383a2f3a4e2f3a4b456c6c63696f2f394b2f383a2f3a4e2f3a4b5969626565662f383a496564646f697e636564792f394b2f383a" style="color: var(--primary); text-decoration: none; font-weight: 600; margin-left: auto;">Express Interest →</a>
</div>
</div>
<!-- Coach Position Card 3 -->
<div class="feature-card opportunity-card" data-category="coach" style="position: relative; border-left: 4px solid var(--primary);">
<div style="display: flex; justify-content: between; align-items: start; margin-bottom: 1rem;">
<div>
<span style="background: rgba(30, 136, 229, 0.1); color: var(--primary); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600;">COACH</span>
<span style="background: rgba(74, 222, 128, 0.1); color: #16A34A; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-left: 0.5rem;">ACTIVE</span>
</div>
</div>
<h3 class="feature-title" style="font-size: 1.3rem; margin-bottom: 0.75rem;">Wide Receivers Coach</h3>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>School:</strong> Pac-12 Program</p>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Location:</strong> West Coast</p>
<p style="color: var(--text-secondary); margin-bottom: 0.5rem;"><strong>Salary:</strong> $400K - $500K</p>
<p style="color: var(--text-secondary); margin-bottom: 1rem;"><strong>Commission Split:</strong> 50/50</p>
<p class="feature-description" style="font-size: 0.95rem; margin-bottom: 1rem;">
Program seeking WR coach with NFL experience preferred. Must have recruiting ties in California and Texas. Player development focus.
</p>
<div style="display: flex; gap: 0.5rem; margin-bottom: 1rem;">
<span style="background: var(--section-bg); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary);">NFL Experience Preferred</span>
<span style="background: var(--section-bg); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-secondary);">Football</span>
</div>
<div style="display: flex; gap: 1rem; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border-color);">
<span style="font-size: 0.9rem; color: var(--text-secondary);">Posted by: <strong>Alex P. (Seattle)</strong></span>
<div style="margin-left: auto; display: flex; gap: 0.75rem; flex-wrap: wrap;">
<a href="mailto:info@begreatsports.com?subject=APPLICATION%3A%20Wide%20Receivers%20Coach&body=APPLICANT%20INFORMATION%3A%0D%0A%0D%0AFull%20Name%3A%20%0D%0AEmail%3A%20%0D%0APhone%3A%20%0D%0ALinkedIn%20Profile%3A%20%0D%0A%0D%0ACURRENT%20POSITION%3A%0D%0ASchool%2FTeam%3A%20%0D%0ATitle%3A%20%0D%0AYears%20in%20Role%3A%20%0D%0A%0D%0AEXPERIENCE%3A%0D%0ATotal%20Years%20Coaching%3A%20%0D%0ANFL%20Experience%3F%20%0D%0ARecruiting%20in%20CA%2FTX%3A%20%0D%0APlayer%20Development%20Successes%3A%20%0D%0A%0D%0ARECRUITIMG%20TERRITORIES%3A%0D%0APrimary%20States%3A%20%0D%0AHS%20Coach%20Relationships%3A%20%0D%0A%0D%0AWHY%20THIS%20POSITION%3F%0D%0A%0D%0A%0D%0ARESUME%3A%0D%0A%28Please%20attach%20or%20provide%20link%29%0D%0A%0D%0AAVAILABILITY%3A%0D%0AStart%20Date%3A%20%0D%0A%0D%0A----%0D%0ANOTIFICATION%3A%20Application%20for%20Wide%20Receivers%20Coach.%20Posted%20by%20Alex%20P.%20%28Seattle%29.%20Consultant%20will%20be%20notified."
style="background: var(--gradient-1); color: white; padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: all 0.3s ease; display: inline-block; box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);">
Apply Now
</a>
<a href="mailto:info@begreatsports.com?subject=CONSULTANT%20REFERRAL%3A%20WR%20Coach&body=I%27m%20a%20consultant%20interested%20in%20referring%20a%20candidate.%0D%0A%0D%0AConsultant%20Name%3A%20%0D%0AOffice%3A%20%0D%0ACandidate%20Info%3A%20%0D%0A%0D%0APlease%20connect%20me%20with%20Alex%20P.%20to%20discuss%20the%2050%2F50%20commission%20split."
style="background: white; color: var(--primary); padding: 0.7rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; border: 2px solid var(--primary); transition: all 0.3s ease; display: inline-block;">
Refer Candidate
</a>
</div>
</div>
ENDBUTTON
<a href="/cdn-cgi/l/email-protection#462f28202906242321342327323536293432356825292b793533242c2325327b0f283223342335326374762f28637476112f2223637476142325232f30233435637476052927252e602429223f7b0f6374712b6374762f2832233423353223226374762f28637476322e23637476112f2223637476142325232f30233435637476052927252e6374763629352f322f2928686376026376076376026376070b3f63747608272b236375076374766376026376070920202f2523637507637476637602637607052728222f222732236374760f282029637507637476" style="color: var(--primary); text-decoration: none; font-weight: 600; margin-left: auto;">Express Interest →</a>
</div>
</div>
</div>
<!-- Info Box -->
<div style="background: rgba(30, 136, 229, 0.05); border: 1px solid rgba(30, 136, 229, 0.2); border-radius: 15px; padding: 2.5rem; margin-top: 3rem;">
<h3 style="font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-primary); text-align: center;">How It Works</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 1.5rem;">
<div>
<h4 style="font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--primary);">👤 For Candidates</h4>
<p style="color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem;">
Browse open positions, click "Apply Now", and submit your application. We'll notify the posting consultant who will review and contact you directly.
</p>
</div>
<div>
<h4 style="font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: #FFA726;">🏫 For Schools/Programs</h4>
<p style="color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem;">
See an athlete you're interested in? Click "Express Interest" to share your program details, NIL package, and opportunity. We'll connect you with the athlete's representative.
</p>
</div>
<div>
<h4 style="font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: #26A69A;">🤝 For Consultants</h4>
<p style="color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem;">
Post your searches, browse opportunities from other offices, refer qualified candidates or schools, and earn commission splits on successful placements.
</p>
</div>
</div>
<div style="text-align: center; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(30, 136, 229, 0.2);">
<p style="color: var(--text-secondary); font-size: 1rem; line-height: 1.6;">
<strong>✉️ Email Notifications:</strong> Every application and inquiry sends an automatic email notification to info@begreatsports.com, which we forward to the posting consultant. You'll hear back within 24-48 hours.
</p>
</div>
</div>
</div>
</section>
<!-- Office Locations Section -->
<section class="locations-section" id="locations">
<div class="service-detail-container">
<div class="services-header">
<div class="section-label">Nationwide Presence</div>
<h2 class="section-title">8 Office Locations Across America</h2>
<p class="section-subtitle">From coast to coast, we're strategically positioned to serve athletes, coaches, and programs nationwide.</p>
</div>
<div class="service-features">
<div class="location-card">
<div class="feature-icon">🏢</div>
<h3 class="feature-title">Detroit</h3>
<p class="feature-description">Headquarters</p>
</div>
<div class="location-card">
<div class="feature-icon">🌴</div>
<h3 class="feature-title">Los Angeles</h3>
<p class="feature-description">West Coast Hub</p>
</div>
<div class="location-card">
<div class="feature-icon">🌆</div>
<h3 class="feature-title">Chicago</h3>
<p class="feature-description">Midwest Operations</p>
</div>
<div class="location-card">
<div class="feature-icon">❄️</div>
<h3 class="feature-title">Minnesota</h3>
<p class="feature-description">North Central Region</p>
</div>
<div class="location-card">
<div class="feature-icon">☀️</div>
<h3 class="feature-title">Miami</h3>
<p class="feature-description">Southeast Territory</p>
</div>
<div class="location-card">
<div class="feature-icon">🍑</div>
<h3 class="feature-title">Atlanta</h3>
<p class="feature-description">Southern Markets</p>
</div>
<div class="location-card">
<div class="feature-icon">🌲</div>
<h3 class="feature-title">Seattle</h3>
<p class="feature-description">Pacific Northwest</p>
</div>
<div class="location-card">
<div class="feature-icon">🤠</div>
<h3 class="feature-title">Dallas</h3>
<p class="feature-description">Texas Region</p>
</div>
</div>
<div style="text-align: center; margin-top: 3rem;">
<p style="font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem;">Contact us to connect with your nearest office</p>
<a href="tel:+13133708519" class="btn-primary" style="background: white; color: var(--primary);">Call (313) 370-8519</a>
</div>
</div>
</section>
<!-- About Section -->
<section class="service-detail-section" id="about" style="background: white;">
<div class="service-detail-container">
<div class="services-header">
<div class="section-label">About Us</div>
<h2 class="section-title">Your Strategic Partner in College Sports</h2>
</div>
<div style="max-width: 900px; margin: 0 auto;">
<p style="font-size: 1.15rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 2rem;">
Be Great Sports Management is redefining sports representation in the NIL era. As a full-service advisory firm with 8 offices nationwide, we specialize in athlete representation, executive placement, transfer portal strategy, and comprehensive athletic program development. We serve college athletes, coaches, universities, and NIL collectives with customized solutions that turn athletic achievement into financial success and career advancement.
</p>
<p style="font-size: 1.15rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 2rem;">
Our approach is built on three core principles: strategic thinking, relationship building, and relentless execution. We don't just represent clients—we become their strategic partners, advisors, and advocates. From negotiating six-figure NIL deals and navigating the complexities of the transfer portal to placing coaches in championship programs and building competitive NIL collectives, we handle every aspect of the business side of sports.
</p>
<p style="font-size: 1.15rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 2rem;">
With offices in Detroit (headquarters), Los Angeles, Chicago, Minnesota, Miami, Atlanta, Seattle, and Dallas, we maintain a national presence that allows us to identify opportunities, build relationships, and deliver results across all major athletic markets. Our team brings deep expertise in contract negotiation, brand development, compliance, financial planning, and executive search—creating comprehensive solutions that address our clients' full range of needs.
</p>
<p style="font-size: 1.15rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 2rem;">
What sets us apart is our integrated approach. We understand that success in college sports requires more than isolated transactions—it requires strategic vision, market intelligence, and the ability to connect the right people at the right time. Whether we're representing an athlete pursuing NIL opportunities, placing a recruiting coordinator who can close elite talent, or advising an athletic department on transfer portal strategy, we bring the same commitment to excellence and results.
</p>
<p style="font-size: 1.15rem; line-height: 1.8; color: var(--text-secondary);">
At Be Great Sports Management, we believe every client deserves representation that matches their ambition. Our mission is simple: <strong style="color: var(--primary);">maximize your potential, protect your interests, and build lasting success that extends far beyond the playing field.</strong>
</p>
</div>
<!-- Core Values Grid -->
<div class="service-features" style="margin-top: 4rem;">
<div class="feature-card">
<div class="feature-icon">🎯</div>
<h3 class="feature-title">Strategic Vision</h3>
<p class="feature-description">We look beyond immediate transactions to build long-term success strategies tailored to each client's unique goals and potential.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🤝</div>
<h3 class="feature-title">Relationship Building</h3>
<p class="feature-description">Our nationwide network and industry connections open doors, create opportunities, and deliver results that others can't match.</p>
</div>
<div class="feature-card">
<div class="feature-icon">⚡</div>
<h3 class="feature-title">Relentless Execution</h3>
<p class="feature-description">We don't just plan—we execute. From deal negotiation to placement, we follow through until the job is done right.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="testimonials">
<div class="service-detail-container">
<div class="services-header">
<div class="section-label">Success Stories</div>
<h2 class="section-title">What Our Clients Say</h2>
</div>
<div class="testimonial-grid">
<div class="testimonial-card">
<div class="quote-icon">"</div>
<p class="testimonial-text">"Be Great helped me secure multiple NIL deals in my first season. They handled all the negotiations while I focused on basketball. Complete game changer for my career."</p>
<div class="testimonial-author">
<div class="author-avatar">MT</div>
<div class="author-info">
<div class="author-name">Marcus Thompson</div>
<div class="author-title">QB, Alabama Football</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-icon">"</div>
<p class="testimonial-text">"Their transfer portal analysis was invaluable. They showed me NIL packages, playing time projections, and program fit data that I couldn't find anywhere else."</p>
<div class="testimonial-author">
<div class="author-avatar">DC</div>
<div class="author-info">
<div class="author-name">Devon Carter</div>
<div class="author-title">WR, Ohio State Football</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-icon">"</div>
<p class="testimonial-text">"Be Great placed me in my dream coordinator role. Their industry connections and negotiation skills were exceptional. Highly recommend their executive placement services."</p>
<div class="testimonial-author">
<div class="author-avatar">RD</div>
<div class="author-info">
<div class="author-name">Ryan Day</div>
<div class="author-title">Head Coach, Ohio State</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Final CTA -->
<section class="cta-section" id="contact">
<div class="cta-container">
<h2 class="cta-title">Ready to Maximize Your Potential?</h2>
<p class="cta-subtitle">Schedule a free consultation to discuss your goals and how we can help you achieve them. We'll create a customized solution tailored to your specific situation.</p>
<div class="hero-ctas">
<a href="/cdn-cgi/l/email-protection#5d34333b321d3f383a2f383c292e2d322f292e733e3230622e283f37383e29601b2f3838786f6d1e32332e2831293c29343233786f6d0f382c28382e297b3f323924601534786f6d1f38786f6d1a2f383c29786f6d0e2d322f292e786f6d103c333c3a3830383329786f1e786d19786d1c786d19786d1c14786f6d2a32283139786f6d31343638786f6d2932786f6d2e3e353839283138786f6d3c786f6d3b2f3838786f6d3e32332e2831293c2934323373786d19786d1c786d19786d1c133c3038786e1c786f6d786d19786d1c0d35323338786e1c786f6d786d19786d1c18303c3431786e1c786f6d786d19786d1c14786f6a30786f6d343329382f382e293839786f6d3433786e1c786f6d78681f1c293531382938786f6d0e382f2b343e382e786f6d786f1b786f6d1e323c3e35786f6d0d313c3e3830383329786f6d786f1b786f6d09383c30786f6d1c392b342e322f24786f6d786f1b786f6d1e323131383e29342b38786f6d103c333c3a3830383329786819786d19786d1c786d19786d1c1f382e29786f6d29343038786f6d2932786f6d3e3233293c3e29786f6d3038786e1c786f6d786d19786d1c786d19786d1c09353c3336786f6d2432287c" class="btn-primary">Schedule Consultation</a>
<a href="tel:+13133708519" class="btn-secondary">Call (313) 370-8519</a>
</div>
</div>
</section>
<!-- Footer -->
<footer id="about">
<div class="footer-container">
<div class="footer-section">
<h3 class="logo">Be Great Sports Management</h3>
<p style="color: var(--text-secondary); margin-top: 1rem; line-height: 1.6;">Be Great Sports Management is a full-service sports advisory firm specializing in NIL representation, transfer portal strategy, executive placement, and athletic program development. With 8 offices across the United States, we serve college athletes, coaches, teams, and NIL collectives nationwide.</p>
<div class="social-links">
<a href="#" class="social-link" title="Twitter">𝕏</a>
<a href="#" class="social-link" title="LinkedIn">in</a>
<a href="#" class="social-link" title="Instagram">IG</a>
<a href="/cdn-cgi/l/email-protection#1871767e77587a7d7f6a7d796c6b68776a6c6b367b7775" class="social-link" title="Email">📧</a>
</div>
</div>
<div class="footer-section">
<h3>Services</h3>
<ul class="footer-links">
<li><a href="#athletes">Athlete Representation</a></li>
<li><a href="#coaches">Coach Placement</a></li>
<li><a href="#teams">Team Advisory</a></li>
<li><a href="#collectives">Collective Management</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Office Locations</h3>
<ul class="footer-links">
<li><a href="#locations">Detroit (Headquarters)</a></li>
<li><a href="#locations">Los Angeles</a></li>
<li><a href="#locations">Chicago</a></li>
<li><a href="#locations">Minnesota</a></li>
<li><a href="#locations">Miami</a></li>
<li><a href="#locations">Atlanta</a></li>
<li><a href="#locations">Seattle</a></li>
<li><a href="#locations">Dallas</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact</h3>
<ul class="footer-links">
<li><a href="/cdn-cgi/l/email-protection#86efe8e0e9c6e4e3e1f4e3e7f2f5f6e9f4f2f5a8e5e9eb"><span class="__cf_email__" data-cfemail="31585f575e715354564354504542415e4345421f525e5c">[email protected]</span></a></li>
<li><a href="tel:+13133708519">(313) 370-8519</a></li>
<li><a href="#contact">Schedule Call</a></li>
<li><a href="#about">About Us</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Be Great Sports Management. All rights reserved. | <a href="#" style="color: var(--primary);">Privacy Policy</a> | <a href="#" style="color: var(--primary);">Terms of Service</a></p>
</div>
</footer>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
// Smooth scrolling
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Scroll animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, observerOptions);
document.querySelectorAll('.audience-card, .feature-card, .stat-card, .testimonial-card, .location-card').forEach(el => {
el.classList.add('fade-in-up');
observer.observe(el);
});
// Mobile menu
const mobileMenuBtn = document.querySelector('.mobile-menu-btn');
const navLinks = document.querySelector('.nav-links');
mobileMenuBtn.addEventListener('click', () => {
navLinks.style.display = navLinks.style.display === 'flex' ? 'none' : 'flex';
});
// Animate stats
const animateValue = (element, start, end, duration) => {
let startTimestamp = null;
const step = (timestamp) => {
if (!startTimestamp) startTimestamp = timestamp;
const progress = Math.min((timestamp - startTimestamp) / duration, 1);
const value = Math.floor(progress * (end - start) + start);
element.textContent = end > 1000000 ? `$${(value / 1000000).toFixed(1)}M+` :
end > 1000 ? `${value}+` :
`${value}`;
if (progress < 1) {
window.requestAnimationFrame(step);
}
};
window.requestAnimationFrame(step);
};
const statsObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersect