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

:root {
  --primary-blue: #1700eb;
  --primary-purple: #7b23fd;
  --dark-bg: #080522;
  --dark-purple: #070425;
  --yellow: #ffbf00;
  --orange: #ff8f1f;
  --green: #7fffab;
  --light-green: #bcf5d7;
  --pink: #ffcce2;
  --light-purple: #d4bbf6;
  --light-yellow: #ffe599;
  --cream: #f9f5ec;
  --white: #ffffff;
  --text-dark: #0a211f;
  --text-light: #f7f9f2;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Banner */
.top-banner {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.625rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.banner-icon {
  width: 1.25rem;
  height: auto;
}

.banner-text {
  text-align: center;
  flex: 1;
  max-width: 74rem;
}

.banner-arrow {
  width: 0.8125rem;
  height: auto;
}

/* Navigation */
.navbar {
  background-color: var(--dark-purple);
  box-shadow: 0 0 0.7px var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img {
  height: 3.125rem;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: transparent;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

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

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  font-size: 1rem;
  padding: 0.625rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.nav-item:hover {
  opacity: 0.8;
}

.nav-item img {
  width: 0.6875rem;
  height: auto;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.btn-outline-white {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--white);
  border-radius: 0.25rem;
  color: var(--white);
  background: transparent;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-white img {
  width: 1rem;
  height: auto;
}

.btn-primary {
  padding: 0.625rem 1.5rem;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1200c0;
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 0.625rem 1.5rem;
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--text-dark);
  color: var(--white);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, rgba(9, 6, 35, 1) 0%, rgba(35, 26, 111, 1) 100%);
  padding: 4.5rem 1.5rem;
  min-height: 38.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 73.875rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.875rem;
  font-weight: 400;
}

.highlight-green {
  color: var(--green);
}

.highlight-purple {
  color: #ab7bf3;
}

.highlight-orange {
  color: var(--orange);
}

.highlight-yellow {
  color: var(--yellow);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1.875rem;
  line-height: 1.5;
}

.hero-image {
  width: 100%;
  height: 23.125rem;
  background-color: #251f60;
  border-radius: 1.25rem;
  margin-top: 1.875rem;
}

/* Brands Section */
.brands-section {
  background-color: var(--dark-purple);
  padding: 1.875rem 0;
}

.brands-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.brands-container img {
  max-width: 100%;
  height: auto;
}

/* Services Section */
.services-section {
  background-color: var(--cream);
  padding: 4.5rem 1.5rem;
}

.section-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-align: center;
  font-weight: 400;
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

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

.service-card {
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.card-yellow {
  background-color: var(--light-yellow);
}

.card-pink {
  background-color: var(--pink);
}

.card-green {
  background-color: var(--light-green);
}

.card-purple {
  background-color: var(--light-purple);
}

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.service-title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-dark);
}

.service-description {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text-dark);
}

/* Explore Services Carousel */
.explore-services-section {
  background-color: var(--dark-bg);
  padding: 4.5rem 0;
}

.section-title-white {
  font-size: 3rem;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 400;
}

.scroll-indicator {
  display: block;
  margin: 0 auto 3rem;
}

.services-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 1.75rem;
  padding: 0 2rem 2rem;
}

.carousel-item {
  flex: 0 0 24.5rem;
  height: 36.75rem;
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
}

.carousel-item img,
.carousel-item-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item-bg {
  background-size: cover;
  background-position: center;
}

.carousel-item h3 {
  position: absolute;
  top: 2.625rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  width: 90%;
  z-index: 1;
}

/* Achievement Section */
.achievement-section {
  background-color: var(--primary-purple);
  padding: 4.5rem 1.5rem;
}

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

.stat-item {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(247, 249, 242, 0.15);
}

.stat-description {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.stat-number {
  font-size: 5rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Process Section */
.process-section {
  background-color: var(--dark-bg);
  padding: 7.5rem 1.5rem;
}

.process-header {
  max-width: 35rem;
  margin-bottom: 4rem;
}

.section-subtitle-white {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.5;
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.timeline-item {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 1.75rem;
  top: 3.5rem;
  width: 0.125rem;
  height: calc(100% + 3rem);
  background: rgba(247, 249, 242, 0.15);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(247, 249, 242, 0.15);
  border: 2px solid var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-light);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-number.active {
  background-color: var(--yellow);
  color: var(--yellow);
  border-color: var(--yellow);
}

.timeline-content {
  flex: 1;
}

.timeline-title {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.timeline-title.active {
  color: var(--yellow);
}

.timeline-description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Portfolio Section */
.portfolio-section {
  background-color: var(--cream);
  padding: 4.5rem 1.5rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.75rem;
  margin: 3rem 0;
}

.portfolio-item {
  border-radius: 0.625rem;
  overflow: hidden;
  background-color: var(--cream);
  position: relative;
}

.portfolio-image {
  width: 100%;
  height: 26.625rem;
  background-size: cover;
  background-position: center;
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.portfolio-info h3 {
  font-size: 1.8125rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.portfolio-info p {
  font-size: 1.25rem;
  color: var(--white);
}

.portfolio-section .btn-secondary {
  display: block;
  margin: 2rem auto 0;
}

/* Team Support Section */
.team-support-section {
  background-color: var(--dark-bg);
  padding: 4.5rem 1.5rem;
}

.team-support-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 7.5rem;
  align-items: center;
}

.support-content h2 {
  margin-bottom: 2rem;
}

.section-description-white {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: justify;
}

.support-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Creator Section */
.creator-section {
  background-color: var(--primary-purple);
  padding: 4.5rem 1.5rem;
}

.creator-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 7.5rem;
  align-items: center;
}

.creator-image {
  width: 100%;
  height: 31.875rem;
  background-color: #d1ccff;
  border-radius: 0.5rem;
}

.creator-content h2 {
  margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--white);
  padding: 4.5rem 1.5rem;
}

.testimonial-card {
  max-width: 76.25rem;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 7.5rem;
  align-items: center;
  padding: 2rem;
}

.testimonial-avatar {
  width: 16.75rem;
  height: 16.75rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-logo {
  width: 6.425rem;
  height: auto;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.testimonial-author {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  color: var(--dark-bg);
}

.testimonial-stats {
  display: flex;
  gap: 1.875rem;
  flex-wrap: wrap;
}

.testimonial-stat h4 {
  font-size: 3.75rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.testimonial-stat p {
  font-size: 1.125rem;
  line-height: 1.3;
}

.testimonial-card-blue {
  background-color: var(--primary-blue);
  border-radius: 0.25rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.testimonial-avatar-small {
  width: 4.75rem;
  height: auto;
  border-radius: 0.25rem;
}

.testimonial-header h4 {
  font-size: 1.25rem;
  color: #ffd87c;
  font-weight: 400;
}

.testimonial-header p {
  font-size: 1.25rem;
  color: var(--white);
}

.testimonial-text-white {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1.5;
}

.testimonial-dots {
  display: flex;
  gap: 0.375rem;
  justify-content: center;
}

.dot {
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  background-color: #b0b0b0;
}

.dot.active {
  background-color: var(--primary-blue);
}

.testimonial-card-blue .dot.active {
  background-color: var(--white);
}

/* Comparison Section */
.comparison-section {
  background-color: var(--dark-bg);
  padding: 4.5rem 1.5rem;
}

.comparison-header {
  text-align: center;
  margin-bottom: 3rem;
}

.comparison-label {
  font-size: 1.25rem;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 1rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 60rem;
}

.comparison-table th {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(247, 249, 242, 0.1);
}

.comparison-table td {
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(247, 249, 242, 0.1);
  color: var(--text-light);
}

.comparison-table td:first-child {
  text-align: left;
  max-width: 20rem;
}

.comparison-table td strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.comparison-table td p {
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.65;
}

.comparison-table .highlight-row {
  background-color: var(--primary-blue);
  border-radius: 0.125rem;
}

.comparison-table .highlight-row td:first-child strong {
  color: var(--yellow);
  font-weight: 700;
  font-size: 2rem;
}

.comparison-table img {
  width: 2rem;
  height: auto;
  margin: 0 auto;
}

/* Resources Section */
.resources-section {
  background-color: var(--primary-purple);
  padding: 4.5rem 1.5rem;
}

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

.resource-card {
  border-radius: 0.25rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  min-height: 15rem;
}

.resource-card-purple {
  background: linear-gradient(180deg, rgba(173, 113, 255, 1) 0%, rgba(80, 26, 155, 1) 100%);
}

.resource-card-teal {
  background: linear-gradient(180deg, rgba(23, 172, 196, 0.9) 0%, rgba(16, 112, 128, 0.41) 100%);
}

.resource-card-orange {
  background: linear-gradient(180deg, rgba(230, 123, 90, 1) 0%, rgba(255, 231, 224, 0.2) 100%);
}

.resource-card-green {
  background: linear-gradient(180deg, rgba(28, 158, 88, 1) 0%, rgba(132, 255, 189, 0.2) 100%);
}

.resource-card-pink {
  background: linear-gradient(180deg, rgba(239, 81, 150, 1) 0%, rgba(255, 173, 209, 0.3) 100%);
}

.resource-card-yellow {
  background: linear-gradient(180deg, rgba(205, 167, 59, 1) 0%, rgba(255, 217, 108, 0.3) 100%);
}

.resource-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.resource-content {
  position: relative;
  z-index: 1;
}

.resource-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

.resource-icon {
  width: 3rem;
  height: auto;
  margin-left: auto;
}

.resource-card p {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1.5;
  flex: 1;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1rem;
  margin-top: auto;
}

.resource-link img {
  width: 1rem;
  height: auto;
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
  padding: 4.5rem 1.5rem;
}

.faq-list {
  max-width: 80rem;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 2px solid #f9fafb;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 1.75rem 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  opacity: 0.8;
}

.faq-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: #5a5a5a;
  flex-shrink: 0;
}

.faq-text {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.faq-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 7.5rem;
}

.faq-answer p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 31.25rem;
  padding: 0 0 1.75rem 7.5rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-blue);
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 3.75rem;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.2;
  font-weight: 400;
}

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

.cta-section .btn-primary {
  background-color: var(--yellow);
  color: var(--text-dark);
}

.cta-section .btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}

/* Footer */
.footer {
  background-color: var(--white);
  padding: 3.75rem 1.5rem 1.875rem;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 3.75rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #d1ccff;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #996300;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  font-size: 0.875rem;
  color: #070425;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-blue);
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  width: 7.1875rem;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  font-size: 0.5rem;
  color: var(--text-dark);
}

.footer-links-group {
  margin-top: 2rem;
}

.footer-bottom {
  padding: 2.5rem 0;
  border-bottom: 1px solid #d1ccff;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
}

.footer-info-column h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #996300;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-info-column p {
  font-size: 0.875rem;
  color: #070425;
  line-height: 1.6;
}

.footer-info-column a {
  color: var(--primary-blue);
}

.btn-join {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.875rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  font-size: 0.75rem;
  color: #8a7ecc;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.75rem;
  color: #8a7ecd;
  transition: color 0.3s ease;
}

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

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #998fd3;
}

.footer-badge img {
  width: 1.375rem;
  height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .nav-container {
    padding: 1rem 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  }
  
  .comparison-table {
    min-width: 50rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 5.5rem;
    left: 0;
    right: 0;
    background-color: var(--dark-purple);
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 5.5rem);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-item {
    width: 100%;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-buttons button {
    width: 100%;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title,
  .section-title-white {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-item {
    flex: 0 0 18rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .timeline-item {
    gap: 1.5rem;
  }
  
  .timeline-item::before {
    left: 1.75rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .team-support-section .container,
  .creator-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .comparison-table {
    min-width: 40rem;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-question {
    gap: 1rem;
  }
  
  .faq-text {
    font-size: 1.125rem;
  }
  
  .faq-answer {
    padding: 0 0 0 3.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 0 1.75rem 3.5rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .footer-main {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 2rem;
  }
  
  .footer-copyright {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .top-banner {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .banner-text {
    font-size: 0.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title,
  .section-title-white {
    font-size: 1.75rem;
  }
  
  .service-title {
    font-size: 1.5rem;
  }
  
  .carousel-item {
    flex: 0 0 16rem;
  }
  
  .stat-number {
    font-size: 3.5rem;
  }
  
  .timeline-title {
    font-size: 1.25rem;
  }
  
  .timeline-description {
    font-size: 1rem;
  }
  
  .faq-number {
    font-size: 1.125rem;
  }
  
  .faq-text {
    font-size: 1rem;
  }
  
  .faq-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .top-banner,
  .navbar,
  .mobile-menu-toggle,
  .cta-section,
  .footer {
    display: none;
  }
}
