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

:root {
  --black: #000000;
  --white: #FFFFFF;
  --cream: #F5F3EF;
  --cream-dark: #EBE8E3;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global Link Styles */
a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--gray-400);
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--gray-700);
  text-decoration-color: var(--black);
}

/* Navigation and special links override */
.nav a,
.footer-links a,
.btn-start-nav,
.resource-card,
.blog-card,
.faq-item a {
  text-decoration: none;
}

.landing-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(245, 243, 239, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  flex: 1;
}

.nav-logo a {
  display: inline-block;
  line-height: 0;
}

.logo-img {
  height: 36px;
  width: 36px;
  display: block;
  object-fit: contain;
}

.nav-center {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-center a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-center a:hover {
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
}

.btn-start-nav {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-start-nav:hover {
  background: var(--black);
  color: var(--white);
}

.btn-start-nav:hover svg path {
  stroke: var(--white);
}

/* Hero Section */
.hero {
  padding: 100px 48px;
  background: var(--cream);
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--black);
  max-width: 100%;
}

.hero-tagline {
  font-size: 18px;
  color: var(--gray-700);
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

/* Hero Editor */
.hero-editor {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.editor-container-hero {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  max-width: 100%;
}

.editor-tabs {
  display: flex;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 12px 20px;
}

.tab-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
}

.editor-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cream-dark);
  min-height: 450px;
}

.editor-panel-hero {
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.panel-label {
  padding: 10px 16px;
  background: var(--cream);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--cream-dark);
}

.code-content {
  padding: 20px;
  background: #1e1e1e;
  overflow-x: auto;
  overflow-y: auto;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.code-content pre {
  margin: 0;
  font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.7;
  width: 100%;
}

.code-content pre code {
  font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
  font-size: 14px;
}

.btn-start {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.btn-start:hover {
  background: var(--gray-800);
}



/* FAQ Section */
.faq-section {
  background: var(--cream);
  padding: 100px 48px;
  border-top: 1px solid var(--cream-dark);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  color: var(--black);
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: var(--white);
  padding: 28px 32px;
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
}

/* Footer */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: 48px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  line-height: 0;
  display: flex;
  align-items: center;
}

.footer-logo .logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.footer-copyright {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

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

/* About Section */
.about-section {
  background: var(--white);
  padding: 80px 48px;
  border-top: 1px solid var(--cream-dark);
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--black);
  text-align: center;
}

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

/* Features Section */
.features {
  background: var(--white);
  padding: 120px 48px;
  border-top: 1px solid var(--cream-dark);
}

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

.features-section-title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 64px;
  color: var(--black);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
  letter-spacing: -0.01em;
}

.feature-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .nav-logo {
    flex: 0 0 auto;
  }

  .nav-center {
    flex: 1 1 100%;
    order: 3;
    justify-content: center;
    gap: 20px;
    padding-top: 12px;
    border-top: 1px solid var(--cream-dark);
    margin-top: 12px;
  }

  .nav-center a {
    font-size: 13px;
  }

  .nav-links {
    flex: 0 0 auto;
    gap: 8px;
  }

  .btn-start-nav {
    padding: 6px 14px;
    font-size: 12px;
  }

  .btn-start-nav svg {
    width: 12px;
    height: 12px;
  }

  .hero {
    padding: 60px 20px;
    min-height: auto;
    overflow: hidden;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-title {
    font-size: 32px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }

  .hero-tagline {
    font-size: 16px;
    word-wrap: break-word;
    max-width: 100%;
  }

  .hero-editor {
    max-width: 100%;
    overflow: hidden;
  }

  .editor-container-hero {
    max-width: 100%;
  }

  .editor-panels {
    grid-template-columns: 1fr;
  }

  .code-content {
    max-height: 300px;
    overflow-x: auto;
  }

  .code-content pre {
    font-size: 11px;
    max-width: 100%;
  }

  .about-section {
    padding: 60px 24px;
  }

  .about-title {
    font-size: 28px;
  }

  .features {
    padding: 80px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-section {
    padding: 60px 24px;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-item {
    padding: 20px 24px;
  }

  .footer {
    padding: 32px 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
  }

  .footer-left {
    align-items: center;
    gap: 12px;
  }

  .footer-logo .logo-img {
    height: 32px;
    width: 32px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .footer-links a {
    font-size: 13px;
  }
}


/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
  .nav {
    padding: 12px 16px;
  }

  .logo-img {
    height: 28px;
    width: 28px;
  }

  .btn-start-nav {
    padding: 6px 12px;
    font-size: 12px;
    gap: 4px;
  }

  .btn-start-nav svg {
    width: 12px;
    height: 12px;
  }

  .hero {
    padding: 40px 16px;
    overflow: hidden;
  }

  .hero-layout {
    gap: 32px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-title {
    font-size: 26px;
    margin-bottom: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    max-width: 100%;
  }

  .hero-tagline {
    font-size: 14px;
    margin-bottom: 28px;
    word-wrap: break-word;
    max-width: 100%;
  }

  .hero-editor {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-start {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
  }

  .editor-container-hero {
    border-radius: 8px;
  }

  .editor-tabs {
    padding: 10px 16px;
  }

  .tab-label {
    font-size: 12px;
  }

  .editor-panels {
    min-height: 300px;
  }

  .panel-label {
    padding: 8px 12px;
    font-size: 11px;
  }

  .code-content {
    padding: 12px;
  }

  .code-content pre {
    font-size: 11px;
    line-height: 1.5;
  }

  .about-section {
    padding: 48px 16px;
  }

  .about-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .about-text {
    font-size: 14px;
  }

  .features {
    padding: 60px 16px;
  }

  .features-section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .features-grid {
    gap: 28px;
  }

  .feature-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .feature-description {
    font-size: 14px;
  }

  .faq-section {
    padding: 48px 16px;
  }

  .faq-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .faq-list {
    gap: 16px;
  }

  .faq-item {
    padding: 16px 20px;
    border-radius: 8px;
  }

  .faq-question {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .footer {
    padding: 28px 16px;
  }

  .footer-logo .logo-img {
    height: 28px;
    width: 28px;
  }

  .footer-copyright {
    font-size: 11px;
  }

  .footer-links a {
    font-size: 12px;
  }
}

/* Tablet landscape improvements */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav {
    padding: 16px 32px;
  }

  .hero {
    padding: 80px 32px;
  }

  .hero-layout {
    gap: 48px;
  }

  .hero-title {
    font-size: 48px;
  }

  .editor-panels {
    min-height: 380px;
  }

  .about-section,
  .features,
  .faq-section {
    padding: 80px 32px;
  }

  .footer {
    padding: 40px 32px;
  }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .landing-container {
    overflow-x: hidden;
    width: 100%;
  }

  .code-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .code-content pre {
    white-space: pre;
    word-wrap: normal;
  }
}

/* How It Works Section */
.how-it-works {
  padding: 80px 20px;
  background: var(--white);
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--black);
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.step-item {
  position: relative;
  padding-left: 80px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.step-description code {
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9em;
  color: var(--gray-800);
}

.step-image {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.step-image img {
  display: block;
  width: 100%;
  height: auto;
}

.step-example {
  margin-top: 24px;
}

.example-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  font-weight: 500;
}

.example-link {
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.example-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.example-link img {
  display: block;
  width: 100%;
  height: auto;
}

.example-url {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

.how-it-works-cta {
  margin-top: 60px;
  text-align: center;
}

.btn-guide {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  padding: 16px 32px;
  border: 2px solid var(--black);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-guide:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .steps-grid {
    gap: 40px;
  }
  
  .step-item {
    padding-left: 0;
    padding-top: 70px;
  }
  
  .step-number {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .step-title {
    font-size: 1.25rem;
    text-align: center;
  }
  
  .step-description {
    text-align: center;
  }
  
  .how-it-works-cta {
    margin-top: 40px;
  }
  
  .btn-guide {
    width: 100%;
    justify-content: center;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: var(--cream);
  padding: 100px 48px;
  border-top: 1px solid var(--cream-dark);
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--black);
  text-align: center;
}

.testimonials-subtitle {
  font-size: 15px;
  color: var(--gray-700);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--cream-dark);
}

.testimonial-card.featured {
  border: 2px solid var(--black);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial-badge {
  background: var(--black);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stars {
  color: var(--black);
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
}

.testimonial-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--black);
  letter-spacing: -0.02em;
}

.testimonial-verdict {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--gray-700);
  font-weight: 500;
}



.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  margin: 32px 0;
  padding: 32px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.testimonial-content {
  margin-top: 32px;
}

.testimonial-section {
  margin-bottom: 28px;
}

.testimonial-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
  letter-spacing: -0.01em;
}

.testimonial-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.testimonial-section li {
  padding: 6px 0;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
}

.testimonial-quote {
  background: var(--cream);
  border-left: 3px solid var(--black);
  padding: 24px 28px;
  margin: 32px 0;
  font-size: 17px;
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.8;
  border-radius: 8px;
}

.testimonial-conclusion {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
  border-left: 3px solid var(--black);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 24px;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-title {
    font-size: 24px;
  }

  .testimonial-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .stat-number {
    font-size: 28px;
  }

  .testimonial-quote {
    font-size: 15px;
    padding: 20px 24px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 48px 16px;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-title {
    font-size: 22px;
  }

  .testimonial-verdict {
    font-size: 16px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }
}

/* Video Section */
.video-section {
  background: var(--white);
  padding: 100px 48px;
  border-top: 1px solid var(--cream-dark);
}

.video-section-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.video-section-title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--black);
}

.video-section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 48px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 24px;
  }

  .video-section-title {
    font-size: 32px;
  }

  .video-section-subtitle {
    font-size: 16px;
  }
}
