@charset "utf-8";
/* CSS Document 

TemplateMo 606 String Master

https://templatemo.com/tm-606-string-master

*/

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

:root {
	--bg-dark: #0d0d0d;
	--bg-card: #1a1a1a;
	--bg-elevated: #242424;
	--accent: #f59e0b;
	--accent-light: #fbbf24;
	--accent-dark: #d97706;
	--text-primary: #fafafa;
	--text-secondary: #a3a3a3;
	--text-muted: #737373;
	--border: #2e2e2e;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Space Grotesk', sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	padding-top: 0;
	overflow-x: hidden;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1001;
	background: rgba(13, 13, 13, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	height: 80px;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logo {


	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
	width: 80px;
	height: auto;
}

.logo a {
	color: var(--text-primary);
	text-decoration: none;
	letter-spacing: 0.5px;
}

.logo-icon {
	width: 32px;
	height: 32px;
	background: var(--accent);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	justify-content: center;
}

.nav-links li {
	position: relative;
}

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.2s;
}

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

/* Dropdown styling */
.has-dropdown {
	position: relative;
}

.has-dropdown>a::after {
	content: "▼";
	font-size: 0.55rem;
	margin-left: 6px;
	opacity: 0.7;
}

.dropdown {
	position: absolute;
	top: 130%;
	left: 0;
	min-width: 230px;
	background: rgba(20, 20, 20, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 0.5rem 0;
	list-style: none;
	display: none;
	z-index: 3000;
}

.has-dropdown:hover .dropdown {
	display: block;
}

.dropdown li a {
	display: block;
	padding: 0.65rem 1rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
}

.dropdown li a:hover {
	background: rgba(255, 179, 0, 0.12);
	color: var(--accent);
}

/* CTA Button */
.nav-cta {
	flex-shrink: 0;
	margin-left: auto;
}

.nav-cta .btn-primary {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 0.6rem 1.5rem;
	border-radius: 20px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-block;
	transition: all 0.2s;
}

.nav-cta .btn-primary:hover {
	background: var(--accent-light);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(255, 179, 0, 0.35);
}

/* ===============================
   PAGE OFFSET (IMPORTANT)
================================ */

/* Hero Section */
.hero {
	/* min-height: 100vh; */
	/* Uncomment for full-screen hero */
	display: flex;
	align-items: center;
	padding: 10rem 2rem 4rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	padding: 0.5rem 1rem;
	border-radius: 100px;
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.hero-badge span {
	color: var(--accent);
}

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.hero h1 .highlight {
	color: var(--accent);
}

.hero-description {
	font-size: 1.15rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	max-width: 480px;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
}

.btn-primary {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
	min-height: 44px;
}

.btn-primary:hover {
	background: var(--accent-light);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid var(--border);
	transition: all 0.2s;
	min-height: 44px;
}

.btn-secondary:hover {
	border-color: var(--text-secondary);
	background: var(--bg-card);
}

.hero-stats {
	display: flex;
	gap: 3rem;
}

.stat {
	text-align: left;
}

.stat-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.hero video {
	object-fit: cover;
}

/* Guitar Section */
.guitar-wrapper {
	position: relative;
	z-index: 1;
}

.guitar-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 1.5rem;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.guitar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border);
}

.guitar-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-secondary);
}

.guitar-controls {
	display: flex;
	gap: 0.5rem;
}

.chord-btn {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-primary);
	padding: 0.4rem 0.8rem;
	border-radius: 6px;
	font-size: 0.8rem;
	font-family: inherit;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.15s;
}

.chord-btn:hover {
	background: var(--accent);
	color: var(--bg-dark);
	border-color: var(--accent);
}

.chord-btn.active {
	background: var(--accent);
	color: var(--bg-dark);
	border-color: var(--accent);
}

/* Mini Guitar Fretboard */
.guitar-neck {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.fretboard {
	background:
		repeating-linear-gradient(90deg,
			transparent 0px,
			rgba(60, 30, 20, 0.15) 1px,
			transparent 2px,
			transparent 6px),
		linear-gradient(180deg,
			#3d2517 0%,
			#2a1810 20%,
			#1f120b 50%,
			#2a1810 80%,
			#3d2517 100%);
	border-radius: 6px;
	border: 3px solid #1a0f08;
	border-top: none;
}

.nut {
	height: 10px;
	background: linear-gradient(180deg,
			#f5f5dc 0%,
			#d4cba8 50%,
			#c9c098 100%);
	border-radius: 6px 6px 0 0;
}

.fretboard-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: repeat(6, 32px);
	position: relative;
}

.string-labels {
	position: absolute;
	left: -28px;
	top: 0;
	height: calc(6 * 32px);
	display: flex;
	flex-direction: column;
}

.string-label {
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	color: var(--text-muted);
	font-weight: 500;
}

.fret {
	position: relative;
	border-right: 2px solid #c0a080;
	border-bottom: 1px solid rgba(200, 200, 200, 0.4);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.1s;
}

.fret:hover {
	background: rgba(245, 158, 11, 0.15);
}

.fret::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

/* String thickness - thicker for lower strings */
.fret[data-string="0"]::after {
	height: 1px;
	background: linear-gradient(90deg,
			rgba(200, 180, 160, 0.4),
			rgba(240, 220, 200, 0.7),
			rgba(200, 180, 160, 0.4));
}

.fret[data-string="1"]::after {
	height: 1px;
	background: linear-gradient(90deg,
			rgba(200, 180, 160, 0.4),
			rgba(240, 220, 200, 0.7),
			rgba(200, 180, 160, 0.4));
}

.fret[data-string="2"]::after {
	height: 2px;
	background: linear-gradient(90deg,
			rgba(190, 170, 150, 0.5),
			rgba(230, 210, 190, 0.8),
			rgba(190, 170, 150, 0.5));
}

.fret[data-string="3"]::after {
	height: 2px;
	background: linear-gradient(90deg,
			rgba(180, 160, 140, 0.5),
			rgba(220, 200, 180, 0.8),
			rgba(180, 160, 140, 0.5));
}

.fret[data-string="4"]::after {
	height: 3px;
	background: linear-gradient(90deg,
			rgba(160, 140, 120, 0.5),
			rgba(200, 180, 160, 0.85),
			rgba(160, 140, 120, 0.5));
	box-shadow: 0 0 2px rgba(200, 180, 160, 0.3);
}

.fret[data-string="5"]::after {
	height: 4px;
	background: linear-gradient(90deg,
			rgba(150, 130, 110, 0.5),
			rgba(190, 170, 150, 0.9),
			rgba(150, 130, 110, 0.5));
	box-shadow: 0 0 3px rgba(190, 170, 150, 0.4);
}

.note-marker {
	width: 18px;
	height: 18px;
	background: var(--accent);
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 0.5rem;
	font-weight: 700;
	color: var(--bg-dark);
	z-index: 2;
	box-shadow: 0 2px 8px rgba(245, 158, 11, 0.5);
}

.note-marker.show {
	display: flex;
}

.note-marker.playing {
	animation: notePulse 0.3s ease;
}

@keyframes notePulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.3);
	}

	100% {
		transform: scale(1);
	}
}

.fret-marker {
	position: absolute;
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	pointer-events: none;
}

.guitar-footer {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.guitar-footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.guitar-hint {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.footer-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.clear-btn {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-secondary);
	padding: 0.3rem 0.6rem;
	border-radius: 5px;
	font-size: 0.7rem;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.15s;
}

.clear-btn:hover {
	background: var(--border);
	color: var(--text-primary);
}

.sound-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.toggle-switch {
	width: 36px;
	height: 20px;
	background: var(--bg-elevated);
	border-radius: 10px;
	position: relative;
	cursor: pointer;
	transition: background 0.2s;
}

.toggle-switch.active {
	background: var(--accent);
}

.toggle-switch::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background: var(--text-primary);
	border-radius: 50%;
	top: 2px;
	left: 2px;
	transition: transform 0.2s;
}

.toggle-switch.active::after {
	transform: translateX(16px);
}

/* Song Player */
.song-player {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--bg-elevated);
	border-radius: 8px;
	padding: 0.5rem 0.75rem;
}

.play-btn {
	width: 32px;
	height: 32px;
	background: var(--accent);
	border: none;
	border-radius: 50%;
	color: var(--bg-dark);
	font-size: 0.9rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s;
	flex-shrink: 0;
}

.play-btn:hover {
	background: var(--accent-light);
	transform: scale(1.05);
}

.play-btn.playing {
	background: var(--accent-dark);
}

.song-info {
	flex: 1;
	min-width: 0;
}

.song-title {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.song-progress {
	width: 100%;
	height: 3px;
	background: var(--border);
	border-radius: 2px;
	margin-top: 4px;
	overflow: hidden;
}

.song-progress-bar {
	height: 100%;
	background: var(--accent);
	width: 0%;
	transition: width 0.1s linear;
}

.song-select {
	background: var(--bg-dark);
	border: 1px solid var(--border);
	color: var(--text-secondary);
	padding: 0.3rem 0.5rem;
	border-radius: 5px;
	font-size: 0.7rem;
	font-family: inherit;
	cursor: pointer;
}

.song-select:focus {
	outline: none;
	border-color: var(--accent);
}

/* Features Section */
.features {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-label {
	font-size: 0.85rem;
	color: var(--accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.section-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.feature-card {
	background: var(--bg-dark);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s;
}

.feature-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
}

.feature-icon {
	width: 56px;
	height: 56px;
	background: var(--bg-elevated);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--accent);
	transition: all 0.3s;
}

.feature-card:hover .feature-icon {
	background: var(--accent);
	color: var(--bg-dark);
}

.feature-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.feature-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.feature-image {
	width: 100%;
	height: 200px;
	margin-bottom: 1.5rem;
	display: block;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
	border-radius: 12px;
	overflow: hidden;
	object-fit: cover;
}

.feature-image svg {
	width: 100%;
	height: 100%;
	max-width: 100px;
	max-height: 100px;
}

/* Pricing Section */
.pricing {
	padding: 6rem 2rem;
}

.billing-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 3rem;
	background: var(--bg-card);
	padding: 0.5rem;
	border-radius: 12px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid var(--border);
}

.billing-option {
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
	background: transparent;
	border: none;
	font-family: inherit;
}

.billing-option:hover {
	color: var(--text-primary);
}

.billing-option.active {
	background: var(--accent);
	color: var(--bg-dark);
}

.billing-option .discount-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #22c55e;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2.5rem;
	position: relative;
	transition: all 0.3s;
}

.pricing-card:hover {
	transform: translateY(-4px);
}

.pricing-card.featured {
	border-color: var(--accent);
	box-shadow: 0 0 40px rgba(245, 158, 11, 0.15);
}

.pricing-card.featured::before {
	content: 'Most Popular';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: var(--bg-dark);
	padding: 0.3rem 1rem;
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 600;
}

.pricing-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

.pricing-price {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
}

.pricing-price .currency {
	font-size: 1.5rem;
	font-weight: 600;
}

.pricing-price .period {
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-muted);
}

.pricing-billed {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
	min-height: 1.2rem;
}

.pricing-savings {
	display: inline-block;
	background: rgba(34, 197, 94, 0.15);
	color: #22c55e;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 100px;
	margin-bottom: 1rem;
	min-height: 1.5rem;
}

.pricing-savings:empty {
	visibility: hidden;
}

.pricing-description {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border);
}

.pricing-features {
	list-style: none;
	margin-bottom: 2rem;
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.pricing-features li::before {
	content: '✓';
	color: var(--accent);
	font-weight: 700;
}

.pricing-btn {
	display: block;
	text-align: center;
	padding: 1rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s;
}

.pricing-card .pricing-btn {
	background: var(--bg-elevated);
	color: var(--text-primary);
	border: 1px solid var(--border);
}

.pricing-card .pricing-btn:hover {
	background: var(--text-primary);
	color: var(--bg-dark);
}

.pricing-card.featured .pricing-btn {
	background: var(--accent);
	color: var(--bg-dark);
	border: none;
}

.pricing-card.featured .pricing-btn:hover {
	background: var(--accent-light);
}

/* Instructors Section */
.instructors {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.instructors-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.instructor-card {
	text-align: center;
}

.instructor-image {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	border: 4px solid var(--border);
	transition: all 0.3s;
	overflow: hidden;
	background: var(--bg-elevated);
}

.instructor-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%);
	transition: filter 0.3s;
}

.instructor-card:hover .instructor-image {
	border-color: var(--accent);
	box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.instructor-card:hover .instructor-image img {
	filter: grayscale(0%);
}

.instructor-name {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.instructor-role {
	color: var(--accent);
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.instructor-bio {
	color: var(--text-muted);
	font-size: 0.85rem;
}

/* Testimonials */
.testimonials {
	padding: 6rem 2rem;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.testimonial-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
}

.testimonial-stars {
	color: var(--accent);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.testimonial-text {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonial-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-name {
	font-weight: 600;
	font-size: 0.95rem;
}

.testimonial-title {
	color: var(--text-muted);
	font-size: 0.8rem;
}

/* CTA Section */
.cta {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* Footer */
footer {
	padding: 4rem 2rem 2rem;
	border-top: 1px solid var(--border);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-top: 1rem;
	max-width: 280px;
}

.footer-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--accent);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.footer-bottom a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-bottom a:hover {
	color: var(--accent-light);
}


/* ===============================
   MARKET TICKER
================================ */
.market-ticker {
	background: linear-gradient(90deg, #1a1a1a 0%, #242424 50%, #1a1a1a 100%);
	border-bottom: 2px solid var(--accent);
	padding: 0.75rem 0.75rem;
	overflow: hidden;
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	z-index: 1000;
	width: 100%;
	height: auto;
}

.ticker-container {
	display: flex;
	animation: scroll-left 50s linear infinite;
}

.ticker-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0 2rem;
	min-width: max-content;
	white-space: nowrap;
	font-size: 0.9rem;
}

.ticker-item:hover {
	background: rgba(245, 158, 11, 0.1);
}

.ticker-symbol {
	font-weight: 700;
	color: var(--accent);
	min-width: 60px;
}

.ticker-price {
	color: var(--text-primary);
	font-weight: 600;
	min-width: 80px;
}

.ticker-change {
	min-width: 80px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.ticker-change.positive {
	color: #22c55e;
}

.ticker-change.negative {
	color: #ef4444;
}

.ticker-separator {
	width: 1px;
	height: 30px;
	background: var(--border);
	margin: 0 0.5rem;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.ticker-container:hover {
	animation-play-state: paused;
}

/* Hero Section - updated padding */
.hero {
	padding-top: 10rem !important;
	padding-bottom: 4rem;
	padding-left: 2rem;
	padding-right: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-content {
		order: 1;
	}

	.guitar-wrapper {
		order: 0;
		max-width: 500px;
		margin: 0 auto;
	}

	.hero-description {
		margin: 0 auto 2rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.features-grid,
	.pricing-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

	.billing-toggle {
		flex-wrap: wrap;
		justify-content: center;
	}

	.billing-option {
		padding: 0.6rem 1.2rem;
		font-size: 0.85rem;
	}

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

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

.ticker-item {
	font-size: 0.8rem;
}

.feature-card,
.pricing-card,
.testimonial-card {
	padding: 1rem;
}

/* Hide mobile CTA on desktop */
.nav-cta-mobile {
	display: none;
}

/* =========================================
   HAMBURGER SIDEBAR NAVIGATION - Mobile
   ========================================= */

/* Hamburger button - Right side, 3-line icon */
.hamburger-menu-btn {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1004;
	position: relative;
}

.hamburger-menu-btn span {
	display: block;
	width: 28px;
	height: 3px;
	background: var(--text-primary);
	transition: all 0.3s ease;
	border-radius: 2px;
}

/* Hamburger animation to X when open */
.hamburger-menu-btn.open span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger-menu-btn.open span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile responsive styles */
@media (max-width: 992px) {

	/* Normal layout - logo left, hamburger right */
	.nav-container {
		justify-content: space-between;
	}

	/* Show hamburger button */
	.hamburger-menu-btn {
		display: flex;
	}

	/* Hide desktop nav and CTA */
	.nav-links,
	.nav-cta {
		display: none;
	}

	/* Sidebar overlay */
	.sidebar-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 1000;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.sidebar-overlay.active {
		display: block;
		opacity: 1;
	}

	/* Sidebar navigation - slides from RIGHT */
	.nav-links.sidebar-open {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		right: -300px;
		width: 280px;
		height: 100vh;
		background: linear-gradient(135deg, rgba(13, 13, 13, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
		backdrop-filter: blur(20px);
		padding: 5rem 0 2rem 0;
		gap: 0;
		overflow-y: auto;
		z-index: 1002;
		border-left: 1px solid var(--accent);
		box-shadow: -8px 0 24px rgba(0, 0, 0, 0.7);
		transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.nav-links.sidebar-open.active {
		right: 0;
	}

	/* Sidebar list items */
	.nav-links.sidebar-open li {
		border-bottom: 1px solid rgba(245, 158, 11, 0.1);
		position: relative;
	}

	.nav-links.sidebar-open li:last-child {
		border-bottom: none;
	}

	/* Sidebar links with better spacing */
	.nav-links.sidebar-open>li>a {
		display: block;
		padding: 1.25rem 2rem;
		font-size: 1rem;
		font-weight: 500;
		color: var(--text-primary);
		transition: all 0.2s ease;
		position: relative;
		letter-spacing: 0.3px;
	}

	.nav-links.sidebar-open>li>a:hover {
		background: rgba(245, 158, 11, 0.15);
		color: var(--accent);
		padding-left: 2.5rem;
	}

	/* Accent line on hover */
	.nav-links.sidebar-open>li>a:hover::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 4px;
		background: var(--accent);
	}

	/* Dropdown styling in sidebar */
	.nav-links.sidebar-open .has-dropdown>a::after {
		right: 2rem;
	}

	.nav-links.sidebar-open .dropdown {
		background: rgba(0, 0, 0, 0.3);
		padding: 0.5rem 0;
		margin: 0;
	}

	.nav-links.sidebar-open .dropdown li {
		border-bottom: none;
	}

	.nav-links.sidebar-open .dropdown a {
		padding: 0.9rem 2rem 0.9rem 3rem;
		font-size: 0.9rem;
		font-weight: 400;
		color: var(--text-secondary);
	}

	.nav-links.sidebar-open .dropdown a:hover {
		color: var(--accent);
		background: rgba(245, 158, 11, 0.1);
		padding-left: 3.5rem;
	}

	/* CTA button inside sidebar as last item - premium design */
	.nav-cta-mobile {
		display: block;
		margin: 1.5rem 2rem 2rem 2rem;
		padding-top: 1.5rem;
		border-top: 2px solid var(--accent);
	}

	.nav-cta-mobile .btn-primary {
		display: block;
		width: 100%;
		text-align: center;
		padding: 1.1rem 1.5rem;
		background: var(--accent);
		color: var(--bg-dark);
		font-weight: 600;
		font-size: 1rem;
		border-radius: 8px;
		transition: all 0.3s ease;
		box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
		letter-spacing: 0.5px;
	}

	.nav-cta-mobile .btn-primary:hover {
		background: var(--accent-light);
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
	}

	/* Hide desktop CTA on mobile */
	.nav-cta {
		display: none;
	}

	/* Remove close button display rule */

	/* Mobile dropdowns in sidebar */
	.has-dropdown .dropdown {
		position: static;
		display: none;
		background: rgba(255, 255, 255, 0.05);
		margin: 0.5rem 2rem;
		border-radius: 8px;
	}

	.has-dropdown.open .dropdown {
		display: block;
	}

	.has-dropdown.open>a::after {
		transform: rotate(180deg);
	}

	/* Keep existing responsive styles for other elements */
	.hero {
		padding: 6rem 1rem 3rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.stat {
		text-align: center;
	}

	.guitar-card {
		padding: 1rem;
	}

	.fretboard-grid {
		grid-template-rows: repeat(6, 28px);
	}

	.string-labels {
		height: calc(6 * 28px);
		left: -24px;
	}

	.string-label {
		height: 28px;
		font-size: 0.6rem;
	}

	.note-marker {
		width: 14px;
		height: 14px;
		font-size: 0.4rem;
	}

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

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

	.footer-brand p {
		margin: 1rem auto;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}

/* Modal Styles */
.modal-backdrop.show {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.modal .close {
	transition: transform 0.2s ease;
}

.modal .close:hover {
	transform: scale(1.1);
}

/* Dark theme modal */
.modal-content {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	color: var(--text-primary);
}

.modal-header {
	border-bottom: 1px solid var(--border);
}

.modal-body {
	color: var(--text-primary);
	padding: 2rem;
}

.modal .btn-close {
	filter: invert(1);
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.modal .btn-close:hover {
	opacity: 1;
}

.modal .btn-close:focus {
	box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.25);
	opacity: 1;
}

/* Dark form controls */
.form-control {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-primary);
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
}

.form-control:focus {
	background: var(--bg-elevated);
	border-color: var(--accent);
	color: var(--text-primary);
	box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

.form-control::placeholder {
	color: var(--text-muted);
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-group:last-child {
	margin-bottom: 1.5rem;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	text-decoration: none;
	transition: transform 0.2s;
}

.whatsapp-float:hover {
	transform: scale(1.1);
}

.whatsapp-float img {
	width: 30px;
	height: 30px;
}

.cta {
	padding: 100px 20px 80px;
	background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 179, 0, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.cta-content {
	text-align: center;
}

.cta-content h2 {
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta-content p {
	font-size: clamp(16px, 2vw, 20px);
	color: #a0a0a0;
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.btn-primary {
	display: inline-block;
	padding: 16px 48px;
	background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
	color: #000000;
	text-decoration: none;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 24px rgba(255, 179, 0, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(255, 179, 0, 0.4);
}

.broker-logos-wrapper {
	margin-top: 80px;
	padding: 40px 0;
	position: relative;
	overflow: hidden;
}

.broker-logos-wrapper::before {
	content: 'Trusted by Leading Brokers';
	display: block;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #FFB300;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 32px;
	opacity: 0.8;
}

.broker-logos-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, #1a1a1a 0%, transparent 10%, transparent 90%, #1a1a1a 100%);
	pointer-events: none;
	z-index: 2;
}

.broker-logos {
	display: flex;
	gap: 32px;
	align-items: center;
	animation: scrollLogos 25s linear infinite;
	width: max-content;
}

.broker-logos-wrapper:hover .broker-logos {
	animation-play-state: paused;
}

@keyframes scrollLogos {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.broker-logos img {
	height: 80px;
	width: 120px;
	min-width: 120px;
	object-fit: contain;
	padding: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	filter: grayscale(1) brightness(0.8);
	opacity: 0.6;
	cursor: pointer;
	backdrop-filter: blur(10px);
}

.broker-logos img:hover {
	transform: translateY(-8px) scale(1.05);
	filter: grayscale(0) brightness(1);
	opacity: 1;
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 179, 0, 0.5);
	box-shadow: 0 12px 32px rgba(255, 179, 0, 0.2);
}

@media (max-width: 768px) {
	.cta {
		padding: 60px 20px 50px;
	}

	.btn-primary {
		padding: 14px 32px;
		font-size: 16px;
	}

	.broker-logos-wrapper {
		margin-top: 50px;
		padding: 30px 0;
	}

	.broker-logos {
		gap: 24px;
		flex-wrap: wrap;
	}

	.broker-logos img {
		height: 80px;
		width: 120px;
		min-width: 120px;
		padding: 12px;
	}
}

/* Logo Image Styles */
.logo img {
	height: 40px;
	width: auto;
	max-width: 150px;
	object-fit: contain;
}