/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sriracha&display=swap");

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

body {
  font-family: "Space Grotesk", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #111111;
  color: #fefefe;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* Header and Hero Wrapper */
.header-hero-wrapper {
  background-image: url("images/agencer-background-web.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  max-width: 1600px;
  margin: auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .header-hero-wrapper {
    height: auto;
  }
}

@media (max-width: 500px) {
  .header-hero-wrapper {
    background-image: url("images/agencer-background-mobile.webp");
  }
}

/* Header */
.header {
  max-width: 1440px;
  display: flex;
  padding: 0 64px;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.btn-login {
  border: 1px solid #fdd649;
  background: transparent;
  cursor: pointer;
  padding: 6px 10px;
  transition: transform 0.2s;
  border-radius: 20px;
  text-decoration: none;
  color: #fdd649;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-login:hover {
  transform: scale(1.02);
  color: #97802c;
  border: 1px solid #97802c;
}

@media (max-width: 900px) {
  .header {
    padding: 0 16px;
  }

  .logo img {
    width: 92px;
  }
}

/* Hero Section */
.hero {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  gap: 42px;
  align-items: center;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-title {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fefefe;
  margin: 0;
  max-width: 685px;
  width: 100%;
}

.hero-title span {
  font-family: 'Sriracha', cursive;
  font-weight: 400;
  font-size: 68px;
  line-height: 87px;
  text-transform: capitalize;
  background: linear-gradient(90deg, #FDE17C 0%, #DFEE46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  line-height: 32px;
  color: #fefefe;
  margin: 0;
  max-width: 624px;
  width: 100%;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  width: fit-content;
}

.btn-primary,
.btn-secondary {
  padding: 8px 32px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn-primary {
  background: linear-gradient(to bottom, #fdd649 0%, #97802c 100%);
  color: #121212;
  border: 1px solid #fdd649;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fefefe;
  border: 1px solid #fdd649;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary svg {
  width: 20px;
  height: 20px;
}

.hero-right {
  z-index: 999;
  margin-right: -64px;
}

.hero-image {
  width: 100%;
  /* height: auto;
  max-width: 630px; */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }

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

  .hero-title span {
    font-size: 56px;
    line-height: 72px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-right {
    position: relative;
    right: 0;
  }
}

@media (max-width: 970px) {
  .hero-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 80px;
  }

  .hero-right {
    right: 0;
    width: 100%;
  }

  .hero-image {
    width: 100%;
  }

  .hero {
    height: fit-content;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 0 80px;
  }

  .hero-content {
    flex-direction: column;
    gap: 48px;
  }

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

  .hero-title span {
    font-size: 48px;
    line-height: 62px;
  }

  .hero-description {
    font-size: 16px;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-right {
    position: relative;
    right: 0;
    width: 100%;
  }

  .hero-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 80px 0px;
  }

  .hero-left {
    gap: 20px;
  }

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

  .hero-title span {
    font-size: 36px;
    line-height: 46px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 24px;
  }

  .hero-cta {
    gap: 12px;
  }

  .hero-right {
    width: 100%;
  }

  .hero-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .hero-content {
    margin-top: 0;
  }
}

/* Compare Section */
.compare {
  padding: 81px 0 0 0;
}

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

.compare-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fefefe;
  margin: 0 auto;
  max-width: 639px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #191919;
}

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

/* Compare Responsive */
@media (max-width: 1024px) {
  .compare {
    padding: 100px 32px;
  }

  .compare-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .compare {
    padding: 80px 24px;
  }

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

  .compare-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .compare {
    padding: 60px 16px;
  }

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

/* Features Section */
.features {
  padding: 128px 64px 0 64px;
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 68px;
  color: #fefefe;
  margin: 0 auto;
  max-width: 685px;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 45px;
  align-items: center;
}

.feature-card-reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  width: 100%;
}

.feature-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #fefefe;
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.feature-list li {
  font-size: 16px;
  line-height: 24px;
  color: #fefefe;
  padding-left: 24px;
  position: relative;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fefefe;
  font-size: 24px;
  line-height: 1.2;
}

.feature-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-image img {
  width: 100%;
  height: auto;
}

/* Testimonial */
.testimonial {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.testimonial-content {
  max-width: 900px;
  padding: 0;
  border-radius: 0;
  border: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 600;
  color: #fefefe;
  margin: 0;
}

.testimonial-handle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.testimonial-text {
  font-size: 16px;
  line-height: 24px;
  color: #fefefe;
  margin: 0 0 28px 0;
}

/* Features Responsive */
@media (max-width: 1024px) {
  .features {
    padding: 80px 32px;
  }

  .features-title {
    font-size: 40px;
    line-height: 1.2;
  }

  .feature-card {
    gap: 40px;
  }

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

  .features-grid {
    gap: 80px;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 0px 0px 80px 0px;
  }

  .features-header {
    margin-bottom: 60px;
  }

  .features-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .features-grid {
    gap: 60px;
  }

  .feature-card,
  .feature-card-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    display: flex;
    flex-direction: column;
  }

  .feature-content {
    order: 1;
  }

  .feature-image {
    order: 2;
  }

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

  .testimonial {
    margin-top: 80px;
  }

  .testimonial-content {
    padding: 0;
  }
}

@media (max-width: 720px) {
  .features-title {
    font-size: 32px;
  }

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

  .feature-list li {
    font-size: 16px;
  }

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

  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }

  .testimonial-name {
    font-size: 18px;
  }

  .testimonial-handle {
    font-size: 14px;
  }
}

/* How It Works Section */
.how-it-works {
  padding: 128px 0;
  position: relative;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-it-works-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fefefe;
  margin: 0 auto;
  max-width: 685px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.step-card {
  border-radius: 10px;
  /* padding: 20px; */
  display: flex;
  flex-direction: column;

  transition: all 0.3s ease;
  background: #191919;
  grid-column: span 2;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.step-card:nth-child(4),
.step-card:nth-child(5) {
  grid-column: span 3;
}

.step-image {
  /* width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden; */
  height: 300px;
  width: 100%;
  display: flex;
  width: 100%;
  justify-content: center;
}

.step-image img {
  object-fit: none;
  width: 100%;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px 20px 20px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: #fefefe;
  margin: 0;
  line-height: 1.3;
}

.step-description {
  font-size: 16px;
  line-height: 1.6;
  color: #fefefe;
  margin: 0;
}

/* How It Works Responsive */
@media (max-width: 1024px) {
  .how-it-works {
    padding: 100px 32px;
  }

  .how-it-works-title {
    font-size: 40px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .step-card {
    grid-column: span 1;
  }

  .step-card:nth-child(4),
  .step-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 80px 24px;
  }

  .how-it-works-header {
    margin-bottom: 60px;
  }

  .how-it-works-title {
    font-size: 32px;
  }

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

  .step-card {
    grid-column: span 1;
  }

  .step-card:nth-child(4),
  .step-card:nth-child(5) {
    grid-column: span 1;
  }

  .step-image {
    height: 360px;
  }
}

@media (max-width: 720px) {
  .how-it-works {
    padding: 0 0 80px 0;
  }

  .how-it-works-title {
    font-size: 32px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 15px;
  }

  /* .step-image {
    height: 160px;
  } */
}

/* Pricing Section */
.pricing {
  padding: 0 0 128px 0;
  position: relative;
}

.pricing-header {
  text-align: center;
  margin-bottom: 80px;
}

.pricing-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fefefe;
  margin: 0 auto;
  max-width: 685px;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 32px; */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 300px;
  max-width: 363px;
  background: #191919;
  border: 1px solid #222222;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  height: 573px;
}

.pricing-card:first-child {
  border-radius: 10px 0 0 10px;
}

.pricing-card:nth-child(2) {
  border-radius: 10px;
  height: 651px;
  padding: 0 0 40px 0;
}

.pricing-card:last-child {
  border-radius: 0 10px 10px 0;
}

.pricing-card-popular {
  background: #191919;
  border: 2px solid #222222;
}

.popular-badge {
  background: #222222;
  color: #fefefe;
  font-size: 15px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  padding: 8px 32px;
  border-radius: 10px 10px 0 0;
  margin: 0;
}

.pricing-card-header {
  margin-bottom: 40px;
}

.pricing-card-popular .pricing-card-header {
  padding: 32px 32px 0 32px;
}

.pricing-card-popular .features-list {
  padding: 0 32px;
}

.pricing-card-popular a {
  padding: 0 32px;
  display: block;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: #fefefe;
  margin: 0 0 14px 0;
  line-height: 150%;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price {
  font-size: 32px;
  line-height: 150%;
  font-weight: 700;
  color: #fefefe;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 16px;
  line-height: 28px;
  color: #fefefe;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  justify-content: center;
  padding: 8px 96px;
  width: fit-content;
  margin: auto;
}

/* Pricing Responsive */
@media (max-width: 1024px) {
  .pricing {
    padding: 100px 32px;
  }

  .pricing-title {
    font-size: 40px;
  }

  .pricing-grid {
    gap: 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-card {
    padding: 32px 24px;
    max-width: 100%;
  }

  .pricing-card:first-child,
  .pricing-card:nth-child(2),
  .pricing-card:last-child {
    border-radius: 10px;
  }

  .pricing-card:nth-child(2) {
    height: auto;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 80px 24px;
  }

  .pricing-header {
    margin-bottom: 60px;
  }

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

  .pricing-grid {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }

  .pricing-card {
    max-width: 100%;
  }

  .pricing-card:nth-child(2) {
    height: auto;
  }

  .price {
    font-size: 40px;
  }

  .pricing-card .btn-primary,
  .pricing-card .btn-secondary {
    width: 100%;
    padding: 12px 32px;
  }

  .pricing-card-popular .btn-primary {
    width: calc(100% - 64px);
  }
}

@media (max-width: 720px) {
  .pricing {
    padding: 0px 0 80px 0;
  }

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

  .pricing-card {
    padding: 32px 20px;
    min-width: 100%;
  }

  .pricing-card:nth-child(2) {
    padding: 0;
  }

  .pricing-card-popular .pricing-card-header {
    padding: 32px 20px 0 20px;
  }

  .pricing-card-popular .features-list {
    padding: 0 20px;
  }

  .pricing-card-popular .btn-primary {
    margin: auto 20px 40px 20px;
    width: calc(100% - 40px);
  }

  .price {
    font-size: 36px;
  }

  .period {
    font-size: 18px;
  }

  .features-list li {
    font-size: 15px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 0px 0 138px;
  overflow: hidden;
  max-width: 1440px;
  margin: auto;
}

.testimonials-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 80px;
}

.testimonials-header h2 {
  margin: 0 auto;
  max-width: 685px;
  font-size: 48px;
  text-align: center;
  line-height: 72px;
  color: #fefefe;
  font-weight: 700;
}

.testimonials-slider-container {
  padding-left: 64px;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: 26px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.testimonials-slider:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-340px * 5 - 26px * 5));
  }
}

.testimonial-card {
  width: 340px;
  height: fit-content;
  padding: 20px;
  background: #19191b;
  border: 1px solid transparent;
  border-radius: 20px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial-text {
  color: #fefefe;
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
  word-wrap: break-word;
  margin: 0 0 28px 0;
}

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

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.testimonial-info p {
  margin: 0;
}

.testimonial-name {
  color: #fefefe;
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
}

.testimonial-handle {
  color: #888888;
  line-height: 20px;
  font-size: 14px;
  font-weight: 500;
}

.testimonial-social-icon {
  width: 20px;
  height: 20px;
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
  .testimonials-header h2 {
    font-size: 40px;
    line-height: 51px;
    max-width: 783px;
  }

  .testimonials-section {
    padding: 120px 0 180px;
  }
}

@media (max-width: 900px) {
  .testimonials-slider-container {
    padding-left: 16px;
  }

  .testimonials-section {
    padding: 100px 0 203px;
  }
}

@media (max-width: 800px) {
  .testimonials-header {
    margin-top: 20px;
    margin-bottom: 60px;
    padding: 0 16px;
  }

  .testimonials-header h2 {
    font-size: 30px;
    line-height: 45px;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 720px) {
  .testimonials-section {
    padding: 0px 0 80px 0;
  }

  .testimonials-header h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .testimonial-card {
    width: 300px;
    padding: 16px;
  }
}

/* Final CTA Section */
.final-cta {
  padding: 0 0 177px 0;
  position: relative;
  text-align: center;
}

.cta-content {
  max-width: 1087px;
  background: #191919;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  height: 480px;
  width: 100%;
  border-radius: 10px;
  padding: 40px 24px;
}

.cta-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 68px;
  color: #fefefe;
  margin: 0 auto;
  max-width: 685px;
}

.cta-description {
  font-size: 20px;
  line-height: 32px;
  color: #fefefe;
  margin: 0;
  width: 600px;
}

/* Final CTA Responsive */
@media (max-width: 1024px) {
  .final-cta {
    padding: 100px 32px;
  }

  .cta-title {
    font-size: 40px;
    line-height: 1.2;
  }

  .cta-description {
    font-size: 18px;
  }

  .cta-content {
    height: auto;
    padding: 60px 40px;
  }
}

@media (max-width: 800px) {
  .cta-description {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .final-cta {
    padding: 80px 24px;
  }

  .cta-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .cta-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .cta-content {
    gap: 30px;
    padding: 50px 32px;
    height: auto;
  }
}

@media (max-width: 720px) {
  .final-cta {
    padding: 0;
  }

  .cta-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .cta-description {
    font-size: 15px;
    line-height: 1.5;
  }

  .cta-content {
    padding: 80px 28px 40px 28px;
    height: auto;
  }

  .btn-cta {
    padding: 14px 32px;
    font-size: 15px;
  }
}

/* Footer */
.footer {
  width: 100%;
  max-width: 1440px;

  position: relative;
  z-index: 2;
  margin: auto;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 0 81px 0;
  padding: 0px 64px 14px 64px;
  gap: 57px;
}

.footer-main {
  display: flex;
  justify-content: flex-start;
  gap: 57px;
}

.logo-section {
  display: flex;
  flex-direction: column;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-heading {
  color: #fefefe;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin: 0 0 4px 0;
}

.footer-links a {
  text-decoration: none;
  color: #b7b7b7;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fefefe;
}

/* Podcast Section */
.podcast-section {
  width: 407px;
  height: 154px;
  border-radius: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: rgb(86, 112, 215);
}

.podcast-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.podcast-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.btn-podcast {
  margin-right: 20px;
  background: linear-gradient(to bottom, #98a9ed 0%, #6b85ed 100%);
  color: #fefefe;
  border: 1px solid #b2beed;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-podcast:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(86, 112, 215, 0.4);
}

/* Footer Copyright */
.footer-copyright {
  display: flex;
  justify-content: space-between;
  padding: 0 64px 14px 64px;
}

.copyright-text {
  color: #696969;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.copyright-links {
  display: flex;
  gap: 18px;
}

.copyright-links a {
  text-decoration: none;
  color: #b7b7b7;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: color 0.3s ease;
}

.copyright-links a:hover {
  color: #fefefe;
}

/* Footer Responsive */
@media (max-width: 1200px) {
  .footer-wrap {
    gap: 40px;
  }

  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 1150px) {
  .footer-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .footer-main {
    flex-direction: column;
    margin: 0;
    gap: 40px;
    width: 100%;
  }

  .podcast-section {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .podcast-image img {
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 10%,
      rgba(0, 0, 0, 1) 90%,
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 10%,
      rgba(0, 0, 0, 1) 90%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .btn-podcast {
    margin-right: 0;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 900px) {
  .footer-logo {
    margin: 0 0 8px;
  }

  .footer-logo img {
    width: 92px;
  }

  .footer-copyright {
    flex-direction: column-reverse;
    gap: 28px;
  }

  .copyright-links {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .footer-wrap {
    padding: 80px 16px 0;
  }

  .footer-copyright {
    padding: 20px 16px;
  }
}

@media (max-width: 450px) {
  .podcast-section {
    width: 100%;
  }
}
