/* Hero Section Styles */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(1, 36, 37, 0.85) 0%,
      rgba(0, 52, 50, 0.75) 50%,
      rgba(1, 36, 37, 0.9) 100%);
  z-index: -1;
}

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

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

.hero-headline {
  font-family: var(--font-family-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-inverse);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 0.3s forwards;
}

.hero-subheadline {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 0.6s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-accent);
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 0.9s forwards;
}

.hero-cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-cta::after {
  content: "→";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero-cta:hover::after {
  transform: translateX(4px);
}

.content-transition {
  transition: all 0.8s ease-in-out;
}

.content-fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.slide-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 2;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-headline {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-subheadline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  .slide-indicators {
    bottom: 1.5rem;
  }
}

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

  .hero-subheadline {
    font-size: 1rem;
  }

  .hero-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}








/* Carousel - Companies My student works with Section */

.carousel-section {
  background-color: var(--color-bg-secondary);
  padding: 80px 0;
  position: relative;
}

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

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

.section-heading h2 {
  margin-bottom: var(--space-3);
  /* color: var(--color-primary-dark); */
  /* letter-spacing: -0.02em; */
}

.section-heading p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  max-width: 70ch;
  margin: 0 auto;
  line-height: 1.6;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  -webkit-mask: linear-gradient(90deg,
      transparent,
      white 10%,
      white 90%,
      transparent);
}

.carousel-track {
  display: flex;
  animation: scroll 40s linear infinite;
  gap: 60px;
  width: fit-content;
}

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

.logo-item {
  flex-shrink: 0;
  height: 80px;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transition: left 0.5s ease;
}

.logo-item:hover::before {
  left: 100%;
}

/* .logo-item img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
} */

/* .logo-item:hover img {
  filter: grayscale(0%) opacity(1);
} */

/* Company logos with CSS - representing major tech companies */

.logo-google {
  background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  font-size: 24px;
  font-family: Arial, sans-serif;
}

.logo-microsoft {
  color: #00a1f1;
  font-weight: bold;
  font-size: 20px;
}

.logo-apple {
  color: #000;
  font-weight: bold;
  font-size: 22px;
}

.logo-amazon {
  color: #ff9900;
  font-weight: bold;
  font-size: 20px;
}

.logo-meta {
  color: #1877f2;
  font-weight: bold;
  font-size: 20px;
}

.logo-netflix {
  color: #e50914;
  font-weight: bold;
  font-size: 20px;
}

.logo-uber {
  color: #000;
  font-weight: bold;
  font-size: 20px;
}

.logo-spotify {
  color: #1db954;
  font-weight: bold;
  font-size: 20px;
}

.logo-airbnb {
  color: #ff5a5f;
  font-weight: bold;
  font-size: 20px;
}

.logo-tesla {
  color: #cc0000;
  font-weight: bold;
  font-size: 20px;
}

.logo-salesforce {
  color: #00a1e0;
  font-weight: bold;
  font-size: 18px;
}

.logo-adobe {
  color: #ff0000;
  font-weight: bold;
  font-size: 20px;
}

.logo-item .logo-text {
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
}

.logo-item:hover .logo-text {
  filter: grayscale(0%) opacity(1);
}

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

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

/* Responsive design */
@media (max-width: 768px) {
  .logo-item {
    height: 60px;
    width: 120px;
  }

  .logo-item img {
    max-width: 80px;
    max-height: 35px;
  }

  .carousel-track {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .logo-item {
    height: 50px;
    width: 100px;
  }

  .logo-item img {
    max-width: 70px;
    max-height: 30px;
  }

  .carousel-track {
    gap: 30px;
  }

  .logo-item .logo-text {
    filter: unset;
  }
}













/* Features Section Styles */
.features-section {
  padding: var(--space-16) 0;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--color-bg);
}

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

.section-title {
  margin-bottom: 16px;
  position: relative;
}

.section-subtitle {
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: 48px;
}

.feature-card {
  background: var(--color-surface);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg,
      var(--color-primary),
      var(--color-secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card .feature-icon i {
  /* width: 32px;
  height: 32px; */
  color: var(--color-text-inverse);
  transition: fill var(--transition-slow);
}

.feature-title {
  color: var(--color-text);
  margin-bottom: 16px;
  transition: color var(--transition-slow);
}

.feature-description {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  transition: color var(--transition-slow);
}

.feature-card:hover .feature-description {
  color: var(--color-text);
}

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

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

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

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

  .feature-card {
    padding: 32px 24px;
  }

  .feature-card .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-card .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .feature-title {
    font-size: 1.25rem;
  }
}

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

  .section-subtitle {
    font-size: 1rem;
  }

  .feature-card {
    padding: 28px 20px;
  }
}

/* Featured Project Styles */
/* .slider-container {
  max-width: 1200px;
  width: 100%;
  padding: 40px 20px;
} */

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title h2 {
  margin-bottom: 10px;
}

.section-title p {
  max-width: 70ch;
  margin: 0 auto var(--space-8);
  color: var(--color-text-secondary);
}

.projectSwipper {
  width: 100%;
  overflow: hidden;
}

.swiper {
  width: 100%;
  position: relative;
  padding-bottom: 50px;
  /* height: 500px; */
  /* margin-top: 40px; */
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 20px; */
}

.project-card {
  /* flex: 0 0 32%; */
  width: 100%;
  height: 500px;
  background: var(--color-bg);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.project-image {
  width: 100%;
  height: 40%;
  position: relative;

  img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-color: transparent;
    /* z-index: 1; */
  }
}

.project-content {
  height: 58%;
  /* background-color: red; */
  padding: var(--space-4);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}

.project-languages {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.language-tag {
  background: var(--color-secondary);
  color: var(--color-text-inverse);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-mono);
}

.project-description {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.project-actions {
  display: flex;
  gap: var(--space-3);
}

.swiper-button-next,
.swiper-button-prev {
  /* position: absolute;
            top: 50%; */
  /* transform: translate(-50%); */
  color: var(--color-primary);
  background: var(--color-bg-tertiary);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: var(--border-width) solid var(--color-border);
  transition: all 0.3s ease;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}















/* Testimonial Section Styles*/
.testimonials-section {
  .testimonials-header {
    text-align: center;
    margin-bottom: var(--space-16);
  }

  .testimonials-title {
    margin-bottom: var(--space-4);
  }

  .testimonials-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    font-style: italic;
  }

  .testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }

  .code-icon {
    position: absolute;
    z-index: 10;
    opacity: 0.3;
    transition: opacity var(--transition-base);
    animation: icon-scale 3s infinite;
  }

  .code-icon-open {
    top: var(--space-24);
    left: var(--space-4);
    transform: rotate(-20deg);
  }

  .code-icon-close {
    top: -20px;
    right: -20px;
    transform: rotate(20deg);
  }

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

    50% {
      transform: scale(1.3);
    }

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

  .testimonial-card {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    margin: var(--space-4);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .testimonial-text {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text);
    margin-bottom: var(--space-6);
    font-family: var(--font-family-mono);
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
  }

  .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--color-border);
  }

  .author-info {
    text-align: left;
  }

  .author-name {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-1);
  }

  .author-email {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
  }

  /* .swiper-pagination {
    position: static;
    margin-top: var(--space-8);
  } */

  .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: var(--color-border-dark);
    opacity: 0.6;
    transition: all var(--transition-base);
  }

  .swiper-pagination-bullet-active {
    background: var(--color-secondary);
    opacity: 1;
  }

  .swiper-button-prev,
  .swiper-button-next {
    color: var(--color-text);
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    width: 48px;
    height: 48px;
    margin-top: 0;
    transition: all var(--transition-base);
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: var(--color-secondary);
    color: var(--color-text-inverse);
    border-color: var(--color-secondary);
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
  }

  .swiper-button-prev {
    left: -60px;
  }

  .swiper-button-next {
    right: -60px;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .testimonials-section {
      padding: var(--space-8) var(--space-4);
    }

    .testimonials-header {
      margin-bottom: var(--space-8);
    }

    .testimonial-card {
      padding: var(--space-6);
      margin: var(--space-2);
      min-height: 280px;
    }

    .code-icon {
      width: 50px;
      height: 50px;
    }

    .code-icon-open {
      top: var(--space-40);
      left: var(--space-8);
    }

    .code-icon-close {
      top: var(--space-4);
      right: var(--space-4);
    }

    .swiper-button-prev,
    .swiper-button-next {
      display: none;
    }

    .testimonial-author {
      flex-direction: column;
      text-align: center;
    }

    .author-info {
      text-align: center;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
    }
  }

  @media (max-width: 480px) {
    .testimonial-card {
      padding: var(--space-4);
      min-height: 260px;
    }

    .testimonial-text {
      font-size: var(--font-size-sm);
    }

    .code-icon {
      width: 40px;
      height: 40px;
    }
  }

}













/* CTA Section */
.cta-section {
  background: linear-gradient(135deg,
      var(--color-secondary) 0%,
      var(--color-secondary-dark) 100%);
  color: var(--color-text-inverse);
  padding: var(--space-6) 0;
  position: relative;
  overflow: hidden;

  .cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%,
        rgba(255, 249, 0, 0.1) 0%,
        transparent 50%),
      radial-gradient(circle at 70% 80%,
        rgba(255, 249, 0, 0.05) 0%,
        transparent 50%);
    pointer-events: none;
  }

  .cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    align-items: center;
  }

  .cta-text {
    animation: fadeInUp 0.8s ease-out;
  }

  .cta-headline {
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg,
        var(--color-accent) 0%,
        var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s ease-out;
  }

  .cta-subtext {
    margin-bottom: 2rem;
    color: var(--color-text);
  }

  .cta-features {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: flex-start; */
    gap: var(--space-6);
    margin-bottom: 2rem;
  }

  .cta-features .feature-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--space-2);
    font-size: var(--font-size-xs);
    min-width: 160px;
  }

  .cta-features .feature-icon {
    width: var(--space-6);
    height: var(--space-6);
    background: var(--color-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .cta-features .feature-icon::before {
    content: "✓";
    color: var(--color-secondary);
    font-weight: bold;
    /* font-size: 0.875rem; */
  }

  .newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInRight 0.8s ease-out;
  }

  .form-title {
    margin-bottom: 1rem;
    text-align: center;
  }

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

  .form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 500;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    opacity: 0.8;
    color: var(--color-text-inverse);
  }

  .form-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-inverse);
    transition: all var(--transition-slow);
    backdrop-filter: blur(5px);
  }

  .form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 249, 0, 0.2);
    transform: translateY(-2px);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .submit-btn {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg,
        var(--color-accent) 0%,
        var(--color-accent-light) 100%);
    color: var(--color-text);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-family-heading);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-accent);
    position: relative;
    overflow: hidden;
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 249, 0, 0.4);
    background: linear-gradient(135deg,
        var(--color-accent-dark) 0%,
        var(--color-accent) 100%);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
  }

  .floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
  }

  .floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }

  .floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
  }

  .floating-element:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cta-section {
    .cta-content {
      grid-template-columns: 1fr;
      gap: var(--space-4);
      text-align: center;
    }

    .cta-features {
      justify-content: center;
    }

    .newsletter-form {
      padding: var(--space-4);
    }

    .form-label {
      text-align: left;
    }

    .form-row {
      grid-template-columns: 1fr;
    }
  }
}

@media (max-width: 480px) {
  .cta-section {
    .cta-features {
      flex-direction: column;
      align-items: center;
    }
  }
}