/*
 * WSBROUNDTABLE.COM
 * Professional Financial Theme - Navy & Gold
 * Built from scratch - February 2025
 */

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

:root {
  --primary: #1e3a5f;
  --primary-dark: #0f2849;
  --primary-light: #2d5a8a;
  --accent: #c9a227;
  --accent-light: #d4b94a;
  --dark: #0a1628;
  --dark-light: #1a2d47;
  --gray: #5a6a7a;
  --gray-light: #8899aa;
  --gray-lighter: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
  --gradient-accent: linear-gradient(135deg, #c9a227 0%, #d4b94a 100%);
  --gradient-dark: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
  --shadow: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 25px 50px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 50px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

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

/* ==================== NAVIGATION ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-lighter);
  z-index: 1000;
  transition: 0.3s;
}

.nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
}

.nav-logo img {
  height: 44px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  border-radius: var(--radius-sm);
  transition: 0.2s;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--bg);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 8px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--gray);
  border-radius: var(--radius-sm);
  transition: 0.2s;
}

.nav-dropdown-link:hover {
  color: var(--primary);
  background: var(--bg);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: 0.2s;
}

.btn-outline {
  color: var(--primary);
  border: 2px solid var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30,58,95,0.4);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* ==================== HERO ==================== */
.hero {
  padding: 160px 0 100px;
  background: var(--gradient-dark);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, #c9a227 0%, #d4b94a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--bg);
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--white);
}

.section-label {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gradient-accent);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ==================== FOUNDATION ==================== */
.foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.foundation-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.step:hover {
  transform: translateX(8px);
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.step h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ==================== VIDEO ==================== */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.video-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--dark);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  fill: var(--primary);
}

/* ==================== ABOUT ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  background: var(--gradient);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-content blockquote {
  padding: 20px 24px;
  background: var(--bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  margin: 24px 0;
}

.disclaimer {
  font-size: 13px !important;
  color: var(--gray-light) !important;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

/* ==================== CONTACT ==================== */
.contact-section {
  padding: 80px 0 100px;
  background: var(--bg);
}

.contact-section .container {
  max-width: 800px;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-section > .container > p {
  color: var(--gray);
  margin-bottom: 32px;
}

.contact-section iframe {
  border: 0;
  width: 100%;
  height: 450px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer p {
  color: var(--gray-light);
  font-size: 15px;
  margin-bottom: 4px;
}

.footer a {
  color: var(--gray-light);
  transition: 0.2s;
}

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

.footer h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 24px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-light);
  color: var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 18px;
  transition: 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--dark-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray);
}

/* ==================== PAGE HERO ==================== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--gradient-dark);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero h1 span {
  display: block;
  background: linear-gradient(135deg, #c9a227 0%, #d4b94a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== VALUES GRID ==================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  font-size: 28px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ==================== EXPECT GRID ==================== */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.expect-item {
  text-align: center;
  padding: 24px;
}

.expect-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  font-size: 24px;
}

.expect-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.expect-item p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ==================== BLOG GRID ==================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-hero-image {
  max-width: 700px;
  margin: 60px auto 50px;
  text-align: center;
}

.blog-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-date {
  font-size: 13px;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.blog-card-link:hover {
  gap: 12px;
}

.blog-coming-soon {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
}

.blog-coming-soon a {
  color: var(--primary);
  font-weight: 600;
}

/* ==================== PRODUCT HERO ==================== */
.product-hero {
  padding: 160px 0 80px;
  background: var(--gradient-dark);
  color: var(--white);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-hero h1 {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.product-hero h1 span {
  display: block;
  background: linear-gradient(135deg, #c9a227 0%, #d4b94a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-dark);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ==================== WORKSHOPS ==================== */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.workshop-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

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

.workshop-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.workshop-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.workshop-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.workshop-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workshop-tags span {
  font-size: 13px;
  color: var(--primary);
}

/* ==================== FEATURES GRID ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ==================== SCHEDULER ==================== */
.scheduler-embed {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.scheduler-embed iframe {
  width: 100%;
  height: 700px;
  border: 0;
}

/* ==================== BLOG POST ==================== */
.blog-post-hero {
  padding: 160px 0 60px;
  background: var(--gradient-dark);
  color: var(--white);
  text-align: center;
}

.blog-post-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-hero h1 span {
  color: var(--accent);
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.blog-post-content {
  max-width: 720px;
  padding: 60px 24px 80px;
}

.blog-post-content .lead {
  font-size: 20px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 32px;
}

.blog-post-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 48px 0 20px;
  color: var(--dark);
}

.blog-post-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 16px;
  color: var(--primary);
}

.blog-post-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 20px 0 20px 24px;
}

.blog-post-content li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 12px;
}

.blog-post-content strong {
  color: var(--dark);
}

.blog-post-cta {
  margin-top: 60px;
  padding: 40px;
  background: var(--bg);
  border-radius: var(--radius);
  text-align: center;
}

.blog-post-cta h3 {
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--dark);
}

.blog-post-cta p {
  margin-bottom: 24px;
}

/* ==================== HERO STATS ==================== */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== CREDENTIALS ==================== */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.credentials-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.credentials-content > p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

.credentials-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.credential-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.credential-icon {
  font-size: 28px;
}

.credential-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.credential-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.credentials-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ==================== FORM CONTAINER ==================== */
.form-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.form-container iframe {
  width: 100%;
  height: 1350px;
  border: 0;
}

/* ==================== BENEFITS GRID ==================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-item {
  text-align: center;
  padding: 24px;
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.benefit-item h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ==================== FEATURED WORKSHOP ==================== */
.featured-workshop {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.featured-workshop .workshop-card {
  max-width: 500px;
  position: relative;
  border: 2px solid var(--accent);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-accent);
  color: var(--dark);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

/* ==================== FLOATING CTA ==================== */
.floating-cta {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--gradient-accent);
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 162, 39, 0.5);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-grid,
  .foundation-grid,
  .video-grid,
  .about-grid,
  .product-hero-grid,
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-stats {
    gap: 32px;
  }

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

  .hero-image,
  .product-hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .values-grid,
  .expect-grid,
  .blog-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .nav-cta.active {
    display: flex;
    flex-direction: column;
    padding: 16px;
  }

  .hero {
    padding: 140px 0 80px;
    min-height: auto;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

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

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

  .section {
    padding: 70px 0;
  }

  .values-grid,
  .expect-grid,
  .blog-grid,
  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .btn {
    width: 100%;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--gray-lighter);
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-btn {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}

.cookie-banner-btn:hover {
  background: var(--accent-light);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px;
  }
}
