/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0a0a0a;
  color: #fafafa;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(250, 250, 250, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  margin-top: 2rem;
  align-items: center;
}


.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: #fafafa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e8e8e8;
}

.nav-cta {
  background: #f5f5f5;
  color: #0a0a0a;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(250, 250, 250, 0.3);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fafafa;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
  padding: 80px 0;
}

.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(250, 250, 250, 0.3);
  border-radius: 50%;
  animation: float 20s infinite linear;
  pointer-events: none;
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  position: relative;
}

.hero-main {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e8e8e8;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: #fafafa;
}

.gradient-text {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.gradient-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f5f5f5, transparent);
  opacity: 0.3;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e8e8e8;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: #f5f5f5;
  color: #0a0a0a;
  border: none;
  padding: 18px 36px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(250, 250, 250, 0.4);
}

.cta-primary.large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

.cta-secondary {
  background: transparent;
  color: #fafafa;
  border: 2px solid rgba(250, 250, 250, 0.3);
  padding: 16px 34px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  border-color: #fafafa;
  background: rgba(250, 250, 250, 0.05);
  transform: translateY(-3px);
}

.cta-secondary.large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(250, 250, 250, 0.6);
  border-bottom: 2px solid rgba(250, 250, 250, 0.6);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* About Section */
.about-section {
  padding: 120px 0;
  background: #0a0a0a;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.portrait-container {
  position: relative;
  display: inline-block;
}

.portrait {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  filter: grayscale(20%);
}

.portrait-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  border-radius: 30px;
  filter: blur(20px);
  opacity: 0.1;
  z-index: 1;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #fafafa;
}

.about-text {
  font-size: 1.1rem;
  color: #e8e8e8;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(250, 250, 250, 0.03);
  border: 1px solid rgba(250, 250, 250, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.credential-icon {
  font-size: 1.2rem;
}

.credential-text {
  font-size: 0.9rem;
  color: #e8e8e8;
  font-weight: 500;
}

/* Featured Logos */
.featured {
  background: #1a1a1a;
  padding: 60px 0;
}

.featured-title {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #e8e8e8;
  opacity: 0.8;
  font-weight: 600;
  letter-spacing: 1px;
}

.featured-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.featured-logo {
  height: 40px;
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: grayscale(100%);
}

.featured-logo:hover {
  opacity: 0.8;
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background: #0a0a0a;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #fafafa;
}

.section-description {
  text-align: center;
  font-size: 1.2rem;
  color: #e8e8e8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #1a1a1a;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(250, 250, 250, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(250, 250, 250, 0.05);
}

.service-card.featured {
  border-color: rgba(250, 250, 250, 0.2);
  transform: scale(1.02);
  background: #111111;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 250, 250, 0.2);
  box-shadow: 0 20px 40px rgba(250, 250, 250, 0.1);
}

.service-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fafafa;
}

.service-description {
  color: #e8e8e8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.service-features li {
  color: #e8e8e8;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f5f5f5;
  font-weight: bold;
}

.service-cta {
  background: transparent;
  color: #fafafa;
  border: 2px solid #fafafa;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.service-cta:hover {
  background: #fafafa;
  color: #0a0a0a;
  transform: translateY(-2px);
}

/* Work Section */
.work-section {
  padding: 120px 0;
  background: #1a1a1a;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.work-item {
  background: #111111;
  border: 1px solid rgba(250, 250, 250, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(250, 250, 250, 0.05);
}

.work-item.featured-work {
  border-color: rgba(250, 250, 250, 0.15);
  background: #1a1a1a;
}

.work-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(250, 250, 250, 0.1);
  border-color: rgba(250, 250, 250, 0.15);
}

.work-image {
  height: 200px;
  overflow: hidden;
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-item:hover .work-img {
  transform: scale(1.05);
}

.work-content {
  padding: 1.5rem;
}

.work-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fafafa;
}

.work-description {
  color: #e8e8e8;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.work-results {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.result {
  background: rgba(250, 250, 250, 0.1);
  color: #fafafa;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Speaking Section */
.speaking-section {
  padding: 120px 0;
  background: #0a0a0a;
}

.speaking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.speaking-topics {
  margin: 2rem 0;
}

.topic {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(250, 250, 250, 0.03);
  border-left: 3px solid #f5f5f5;
  border-radius: 5px;
}

.topic h4 {
  color: #fafafa;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.topic p {
  color: #e8e8e8;
  font-size: 0.9rem;
}

.speaking-description {
  font-size: 1.1rem;
  color: #e8e8e8;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.speaking-image {
  position: relative;
}

.speaking-img {
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  filter: grayscale(20%);
}

/* Content Section - Dan Koe Style */
.content-section {
  padding: 120px 0;
  background: #1a1a1a;
}

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

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.article-card {
  background: #111111;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(250, 250, 250, 0.1);
  box-shadow: 0 5px 15px rgba(250, 250, 250, 0.05);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(250, 250, 250, 0.1);
}

.article-image {
  height: 240px;
  overflow: hidden;
}

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

.article-card:hover .article-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.article-content {
  padding: 1.5rem;
}

.article-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
}

.article-preview {
  font-size: 1rem;
  color: #e8e8e8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.article-link {
  color: #fafafa;
  text-decoration: underline;
  font-weight: 500;
  font-style: italic;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 1rem;
}

.article-link:hover {
  color: #e8e8e8;
}

.article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
}

.load-more-container {
  text-align: center;
  margin-top: 4rem;
}

.load-more-btn {
  background: transparent;
  color: #fafafa;
  border: 1px solid rgba(250, 250, 250, 0.3);
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  border-color: #fafafa;
  background: rgba(250, 250, 250, 0.05);
  color: #fafafa;
}

/* Newsletter Section */
.newsletter-section {
  padding: 120px 0;
  background: #0a0a0a;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fafafa;
}

.newsletter-subtitle {
  font-size: 1.2rem;
  color: #e8e8e8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  max-width: 300px;
  padding: 15px 20px;
  border: 2px solid rgba(250, 250, 250, 0.1);
  border-radius: 30px;
  background: #111111;
  color: #fafafa;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #fafafa;
}

.email-input::placeholder {
  color: #999;
}

.newsletter-note {
  font-size: 0.9rem;
  color: #e8e8e8;
}

/* Resources Section with Full Book Mockups */
.resources-section {
  padding: 120px 0;
  background: #1a1a1a;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.resource-card {
  background: #111111;
  border: 1px solid rgba(250, 250, 250, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(250, 250, 250, 0.05);
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 250, 250, 0.15);
  box-shadow: 0 15px 30px rgba(250, 250, 250, 0.1);
}

.resource-image-container {
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  padding: 1rem;
}

.resource-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.resource-content {
  padding: 1.5rem;
}

.resource-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fafafa;
}

.resource-description {
  color: #e8e8e8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.resource-cta {
  background: transparent;
  color: #fafafa;
  border: 2px solid #fafafa;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.resource-cta:hover {
  background: #fafafa;
  color: #0a0a0a;
  transform: translateY(-2px);
}

/* Merch Section */
.merch-section {
  padding: 120px 0;
  background: #0a0a0a;
  overflow: hidden;
}

.merch-slider {
  position: relative;
  margin: 3rem 0;
  overflow: hidden;
}

.merch-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  animation: scroll 30s linear infinite;
}

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

.merch-track:hover {
  animation-play-state: paused;
}

.merch-item {
  flex: 0 0 250px;
  background: #111111;
  border: 1px solid rgba(250, 250, 250, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(250, 250, 250, 0.05);
}

.merch-item:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 250, 250, 0.15);
  box-shadow: 0 10px 20px rgba(250, 250, 250, 0.1);
}

.merch-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.merch-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fafafa;
}

.merch-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fafafa;
}

.merch-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.merch-btn {
  background: rgba(250, 250, 250, 0.05);
  border: 1px solid rgba(250, 250, 250, 0.2);
  color: #fafafa;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.merch-btn:hover {
  background: rgba(250, 250, 250, 0.1);
  transform: scale(1.1);
}

.merch-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Final CTA Section */
.final-cta-section {
  padding: 120px 0;
  background: #1a1a1a;
}

.final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fafafa;
}

.final-cta-subtitle {
  font-size: 1.2rem;
  color: #e8e8e8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  background: #0a0a0a;
  color: #fafafa;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fafafa;
}

.footer-tagline {
  color: rgba(250, 250, 250, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  color: rgba(250, 250, 250, 0.7);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(250, 250, 250, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  color: #fafafa;
  border-color: #fafafa;
  background: rgba(250, 250, 250, 0.1);
}

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

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fafafa;
}

.footer-link {
  display: block;
  color: rgba(250, 250, 250, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fafafa;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 250, 0.1);
  color: rgba(250, 250, 250, 0.6);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: #111111;
  margin: 5% auto;
  padding: 0;
  border: 1px solid rgba(250, 250, 250, 0.1);
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(250, 250, 250, 0.2);
}

.modal-close {
  color: rgba(250, 250, 250, 0.7);
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 10001;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #fafafa;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.modal-media {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
}

.modal-video {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 10px;
}

.modal-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fafafa;
}

.modal-info p {
  color: #e8e8e8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-form {
  margin-bottom: 1rem;
}

.modal-email {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(250, 250, 250, 0.1);
  border-radius: 10px;
  background: #1a1a1a;
  color: #fafafa;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.modal-email:focus {
  outline: none;
  border-color: #fafafa;
}

.modal-email::placeholder {
  color: #999;
}

.modal-note {
  font-size: 0.9rem;
  color: #e8e8e8;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }

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

  .section-title {
    font-size: 2.2rem;
  }

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

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

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

  .service-card.featured {
    transform: none;
  }

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

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

  .resources-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .email-input {
    max-width: 100%;
    width: 100%;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-links-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .merch-track {
    animation-duration: 20s;
  }

  .merch-item {
    flex: 0 0 200px;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-info {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .final-cta-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 2rem;
  }

  .merch-item {
    flex: 0 0 180px;
  }

  .footer-social {
    justify-content: center;
  }
}
