/* CSS Variables - Figma Design Tokens */
:root {
  /* Colors */
  --gray-0: #0b0b0b;
  --gray-1: #f6f6f6;
  --gray-2: #ededed;
  --gray-6: #757575;
  --gray-7: #4d4d4d;
  --black: #000000;
  --white: #ffffff;
  --primary-orange: #f9a03f;

  /* Typography - Pretendard Font */
  --font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui,
    Roboto, sans-serif;

  /* H1_Bold */
  --h1-size: 54px;
  --h1-weight: 700;
  --h1-line-height: 1.3;

  /* H2_Bold */
  --h2-size: 60px;
  --h2-weight: 700;
  --h2-line-height: 1.3;

  /* H3_Bold */
  --h3-size: 36px;
  --h3-weight: 700;
  --h3-line-height: 1.3;

  /* H4_Bold */
  --h4-size: 32px;
  --h4-weight: 700;
  --h4-line-height: 1.3;

  /* H5_SemiBold */
  --h5-size: 28px;
  --h5-weight: 600;
  --h5-line-height: 1.3;

  /* Title1_Bold */
  --title1-size: 24px;
  --title1-weight: 700;
  --title1-line-height: 1.3;

  /* Title1_SemiBold */
  --title1-semibold-weight: 600;

  /* Title2_Regular */
  --title2-size: 20px;
  --title2-weight: 400;
  --title2-line-height: 1.4;

  /* Title2_SemiBold */
  --title2-semibold-weight: 600;

  /* Body2_Regular */
  --body2-size: 14px;
  --body2-weight: 400;
  --body2-line-height: 1.4;

  /* Button1 */
  --button1-size: 16px;
  --button1-weight: 600;
  --button1-line-height: 1.3;

  /* Button2 */
  --button2-size: 14px;
  --button2-weight: 600;
  --button2-line-height: 1.3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: keep-all;
}

.homepage {
  width: 100%;
  max-width: 100vw;
  background-color: var(--white);
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 200px;
  z-index: 1000;
}

.header .logo {
  width: 160px;
  height: 48px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background-color: var(--gray-0);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-family);
  font-size: var(--button1-size);
  font-weight: var(--button1-weight);
  line-height: var(--button1-line-height);
  cursor: pointer;
  height: 44px;
  transition: opacity 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-lang {
  background-color: var(--gray-2);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-family);
  padding: 0;
  transition: background-color 0.3s;
  position: relative;
}

.btn-lang:hover {
  background-color: var(--gray-1);
}

.btn-lang img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Language Dropdown */
.language-dropdown {
  position: absolute;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 8px;
  min-width: 200px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1001;
  margin-top: 8px;
}

.language-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.language-item:hover {
  background-color: var(--gray-1);
}

.language-item img {
  width: 28px;
  height: 21px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.language-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-0);
}

/* Hide Google Translate Elements */
.goog-te-banner-frame,
.goog-te-balloon-frame,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 1022px;
  width: 100%;
  overflow: hidden;
  background-color: #f5f9fa;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-background img {
  position: absolute;
  width: 103.81%;
  height: 108.85%;
  left: -1.91%;
  top: 8.35%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 68.77%,
    white 100%
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
  margin: 0;
}

.hero-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  word-break: keep-all;
}

.hero-description p {
  margin: 0;
}

/* Creators Section */
.creators-section {
  background-color: var(--white);
  padding: 145px 0 75px 0;
  text-align: center;
}

.creators-section h3 {
  font-size: var(--title1-size);
  font-weight: var(--title1-weight);
  line-height: var(--title1-line-height);
  color: var(--gray-6);
  margin-bottom: 67px;
}

.creators-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.creators-grid img {
  width: 295.857px;
  height: 338.779px;
  object-fit: cover;
  border-radius: 0;
}

/* What We Do Section */
.what-we-do-section {
  background-color: var(--white);
  padding: 132px 200px;
}

.what-we-do-section h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
  color: var(--gray-0);
  margin-bottom: 131px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 101px;
  margin-bottom: 80px;
}

.service-item h4 {
  font-size: var(--title1-size);
  font-weight: var(--title1-weight);
  line-height: var(--title1-line-height);
  color: var(--gray-0);
  margin-bottom: 40px;
  height: 40px;
}

.service-item p {
  font-size: var(--title2-size);
  font-weight: var(--title2-weight);
  line-height: var(--title2-line-height);
  color: var(--gray-7);
  word-break: keep-all;
}

.service-cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 300px;
  min-width: 240px;
  background-color: var(--primary-orange);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-card h5 {
  width: 100%;
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
  line-height: var(--h5-line-height);
  color: var(--white);
  white-space: normal;
  word-break: keep-all;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  font-size: var(--title2-size);
  font-weight: var(--title2-weight);
  line-height: var(--title2-line-height);
  color: var(--white);
  padding-left: 30px;
  position: relative;
  margin-bottom: 0;
}

.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* Brands Section */
.brands-section {
  background-color: var(--gray-1);
  padding: 148px 200px 98px;
  text-align: center;
}

.brands-section h3 {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line-height);
  color: var(--gray-0);
  margin-bottom: 150px;
}

.brands-logos {
  background-color: var(--gray-1);
  margin: 0 -29px 55px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-row {
  display: flex;
  gap: 16px 19px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.brand-row img {
  width: auto;
  object-fit: contain;
}

.categories {
  margin-bottom: 80px;
}

.categories h5 {
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
  line-height: var(--h5-line-height);
  color: var(--black);
  text-align: left;
  margin-bottom: 20px;
}

.category-grid {
  display: flex;
  gap: 49px;
  justify-content: space-between;
}

.category-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.category-item img {
  width: 100%;
  height: 429px;
  object-fit: cover;
  border-radius: 20px;
}

.category-item h6 {
  font-size: var(--title1-size);
  font-weight: var(--title1-semibold-weight);
  line-height: var(--title1-line-height);
  color: var(--black);
  text-align: left;
}

.btn-cta {
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-family);
  font-size: var(--button1-size);
  font-weight: var(--button1-weight);
  line-height: var(--button1-line-height);
  height: 56px;
  width: 140px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.btn-cta:hover {
  opacity: 0.9;
}

/* Global Vision Section */
.global-vision-section {
  position: relative;
  height: 515px;
  overflow: hidden;
}

.vision-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vision-background img {
  position: absolute;
  width: 108.56%;
  height: 136.85%;
  left: -4.28%;
  top: -13.16%;
  object-fit: cover;
}

.global-vision-section h2 {
  position: absolute;
  left: 200px;
  top: 171px;
  transform: translateY(-50%);
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
  color: var(--black);
}

.vision-subtitle {
  position: absolute;
  left: 200px;
  top: 273.5px;
  transform: translateY(-50%);
  font-size: var(--title1-size);
  font-weight: var(--title2-weight);
  line-height: var(--title1-line-height);
  color: var(--black);
}

.vision-description {
  position: absolute;
  left: 200px;
  top: 332px;
  transform: translateY(-50%);
  font-size: var(--title1-size);
  font-weight: var(--title2-weight);
  line-height: var(--title1-line-height);
  color: var(--black);
}

/* About Section */
.about-section {
  background-color: var(--gray-1);
  padding: 132px 200px 140px;
  text-align: center;
}

.about-section h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
  color: var(--black);
  margin-bottom: 45px;
}

.about-description {
  font-size: var(--title2-size);
  font-weight: var(--title2-weight);
  line-height: var(--title2-line-height);
  color: var(--gray-0);
  margin-bottom: 95px;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  text-align: center;
}

.about-circles {
  display: flex;
  gap: 280px 40px;
  justify-content: center;
  align-items: center;
}

.circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--title2-size);
  font-weight: var(--title2-semibold-weight);
  line-height: var(--title2-line-height);
  padding: 10px;
}

.circle.active {
  background-color: var(--primary-orange);
  color: var(--white);
}

/* Why Section */
.why-section {
  background-color: var(--white);
  padding: 132px 200px 140px;
}

.why-section h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
  color: var(--gray-0);
  margin-bottom: 112px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.why-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}

.why-item h6 {
  font-size: var(--title1-size);
  font-weight: var(--title1-semibold-weight);
  line-height: var(--title1-line-height);
  color: var(--gray-0);
  text-align: center;
  min-height: 62px;
}

.why-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}

/* Network Section */
.network-section {
  background-color: var(--white);
  padding: 136px 200px 162px;
}

.network-section h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
  color: var(--gray-0);
  margin-bottom: 178px;
}

.network-content {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.network-stats {
  min-width: 160px;
}

.stat-label {
  font-size: var(--button1-size);
  font-weight: var(--title1-weight);
  line-height: var(--title2-line-height);
  color: var(--gray-6);
  margin-bottom: 4px;
}

.stat-value {
  font-size: var(--h4-size);
  font-weight: var(--title1-weight);
  line-height: var(--title1-line-height);
  color: var(--primary-orange);
}

.network-info ul {
  list-style: disc;
  padding-left: 36px;
  font-size: var(--title1-size);
  font-weight: var(--title2-weight);
  line-height: var(--title1-line-height);
  color: var(--gray-0);
}

.network-info ul li {
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  background-color: #f5f5f5;
  padding: 120px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.contact-section h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
  color: var(--black);
  text-align: center;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 785px;
}

.button-row {
  display: flex;
  gap: 20px;
}

.btn-contact {
  flex: 1;
  background-color: var(--gray-0);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-family);
  font-size: var(--button1-size);
  font-weight: var(--button1-weight);
  line-height: var(--button1-line-height);
  height: 56px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.btn-contact:hover {
  opacity: 0.9;
}

.btn-contact-light {
  flex: 1;
  background-color: var(--white);
  color: var(--gray-0);
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-family);
  font-size: var(--button1-size);
  font-weight: var(--button1-weight);
  line-height: var(--button1-line-height);
  height: 56px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.btn-contact-light:hover {
  opacity: 0.8;
}

/* Footer */
.footer {
  background-color: var(--white);
  padding: 40px 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 140px;
  height: 42px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

.footer-info p {
  font-size: var(--body2-size);
  font-weight: var(--body2-weight);
  line-height: var(--body2-line-height);
  color: var(--gray-6);
  margin: 0;
}

.footer-links {
  display: flex;
  margin-top: 20px;
  gap: 7px;
  align-items: center;
  font-size: var(--button2-size);
  font-weight: var(--button2-weight);
  line-height: var(--button2-line-height);
  color: var(--gray-6);
}

.footer-links .divider {
  color: var(--gray-6);
}

.footer-copyright p {
  font-size: var(--body2-size);
  font-weight: var(--body2-weight);
  line-height: var(--body2-line-height);
  color: var(--gray-6);
  margin: 0;
}

/* Responsive Design */

@media (min-width: 1025px) and (max-width: 1728px) {
  .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    min-width: 300px;
    margin-bottom: 10px;
  }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

}
/* Tablet (1024px - 1440px) */
@media (max-width: 1440px) {
  .homepage {
    min-width: auto;
  }

  .header {
    padding: 0 80px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

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

  .creators-grid {
    gap: 20px;
  }

  .creators-grid img {
    width: 220px;
    height: 250px;
  }

  .what-we-do-section,
  .brands-section,
  .about-section,
  .why-section,
  .network-section {
    padding-left: 80px;
    padding-right: 80px;
  }

  .services-grid {
    gap: 60px 80px;
  }

  .service-cards {
    gap: 30px;
  }

  .category-grid {
    gap: 30px;
  }

.why-grid {
  gap: 30px;
}

  .about-circles {
    gap: 40px;
  }

  .circle {
    width: 200px;
    height: 200px;
    font-size: 18px;
  }

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

/* Small Tablet / Large Mobile (768px - 1024px) */
@media (max-width: 1024px) {
  .header {
    padding: 0 40px;
    height: 70px;
  }

  .header .logo {
    width: 120px;
    height: 36px;
  }

  .btn-primary,
  .btn-lang {
    height: 40px;
  }

  .hero-section {
    height: 700px;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

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

  .creators-section {
    padding: 100px 40px 60px;
  }

  .creators-section h3 {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .creators-grid {
    flex-wrap: wrap;
    gap: 15px;
  }

  .creators-grid img {
    width: calc(33.333% - 10px);
    height: auto;
    aspect-ratio: 0.87;
  }

  .what-we-do-section {
    padding: 80px 40px;
  }

  .what-we-do-section h2 {
    font-size: 42px;
    margin-bottom: 80px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }

  .service-item h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .service-item p {
    font-size: 16px;
  }

  .service-card {
    padding: 30px;
    width: 100%;
    max-width: 100%;
    min-width: auto;
    margin-bottom: 0;
  }

  .service-card h5 {
    font-size: 24px;
    white-space: normal;
  }

  .brands-section {
    padding: 100px 40px 80px;
  }

  .brands-section h3 {
    font-size: 28px;
    margin-bottom: 100px;
  }

  .brands-logos {
    margin-bottom: 60px;
  }

  .categories h5 {
    font-size: 24px;
  }

  .category-grid {
    gap: 20px;
  }

  .category-item img {
    height: 300px;
  }

  .global-vision-section {
    height: 400px;
  }

  .global-vision-section h2 {
    font-size: 42px;
    left: 40px;
    top: 120px;
  }

  .vision-subtitle {
    font-size: 20px;
    left: 40px;
    top: 220px;
  }

  .vision-description {
    font-size: 20px;
    left: 40px;
    top: 280px;
  }

  .about-section {
    padding: 100px 40px 100px;
  }

  .about-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .about-description {
    font-size: 16px;
    margin-bottom: 80px;
    white-space: normal;
  }

  .about-circles {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .circle {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
  }

  .why-section {
    padding: 100px 40px;
  }

  .why-section h2 {
    font-size: 42px;
    margin-bottom: 80px;
  }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  }

  .why-item {
    gap: 20px;
  }

  .why-item h6 {
    font-size: 18px;
  }

  .why-item img {
    height: 200px;
  }

  .network-section {
    padding: 100px 40px;
  }

  .network-section h2 {
    font-size: 42px;
    margin-bottom: 100px;
  }

  .network-content {
    flex-direction: column;
    gap: 40px;
  }

  .contact-section {
    padding: 100px 40px;
  }

  .contact-section h1 {
    font-size: 42px;
  }

  .contact-buttons {
    width: 100%;
    max-width: 700px;
  }

  .footer {
    padding: 40px 40px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* Mobile (320px - 768px) */
@media (max-width: 768px) {
  .header {
    padding: 0 20px;
    height: 60px;
  }

  .header .logo {
    width: 100px;
    height: 30px;
  }

  .header-actions {
    gap: 10px;
  }

  .btn-primary {
    padding: 8px 16px;
    font-size: 14px;
    height: 36px;
  }

  .btn-lang {
    width: 36px;
    height: 36px;
    padding: 0;
  }

  .btn-lang img {
    width: 20px;
    height: 15px;
  }

  .language-dropdown {
    min-width: 180px;
    max-height: 300px;
  }

  .language-item {
    padding: 8px 10px;
    gap: 10px;
  }

  .language-item img {
    width: 24px;
    height: 18px;
  }

  .language-item span {
    font-size: 13px;
  }

  .hero-section {
    height: 500px;
  }

  .hero-background img {
    width: 120%;
    height: 120%;
    left: -10%;
    top: 0;
  }

  .hero-content {
    width: calc(100% - 40px);
    gap: 15px;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.4;
  }

  .hero-description {
    font-size: 13px;
    line-height: 1.6;
  }

  .creators-section {
    padding: 60px 20px 40px;
  }

  .creators-section h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .creators-grid {
    gap: 10px;
  }

  .creators-grid img {
    width: calc(50% - 5px);
  }

  .what-we-do-section {
    padding: 60px 20px;
  }

  .what-we-do-section h2 {
    font-size: 28px;
    margin-bottom: 50px;
  }

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

  .service-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .service-item p {
    font-size: 14px;
    line-height: 1.6;
  }


  .service-card {
    padding: 24px;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    min-width: auto;
    margin-bottom: 0;
  }

  .service-card h5 {
    font-size: 20px;
  }

  .service-card ul li {
    font-size: 14px;
    line-height: 1.6;
  }

  .brands-section {
    padding: 60px 20px 50px;
  }

  .brands-section h3 {
    font-size: 20px;
    margin-bottom: 60px;
    line-height: 1.5;
  }

  .brands-logos {
    margin: 0 0 40px;
  }

  .brand-row {
    gap: 10px;
  }

  .brand-row img {
    max-height: 60px;
  }

  .categories {
    margin-bottom: 50px;
  }

  .categories h5 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .category-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .category-item {
    max-width: 400px;
    width: 100%;
  }

  .category-item img {
    height: 250px;
  }

  .category-item h6 {
    font-size: 18px;
  }

  .btn-cta {
    width: 120px;
    height: 48px;
    font-size: 14px;
  }

  .global-vision-section {
    height: 350px;
  }

  .global-vision-section h2 {
    font-size: 28px;
    left: 20px;
    top: 100px;
  }

  .vision-subtitle {
    font-size: 16px;
    left: 20px;
    top: 180px;
    white-space: normal;
    max-width: calc(100% - 40px);
  }

  .vision-description {
    font-size: 16px;
    left: 20px;
    top: 250px;
    white-space: normal;
    max-width: calc(100% - 40px);
  }

  .about-section {
    padding: 60px 20px 80px;
  }

  .about-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .about-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 60px;
  }

  .about-circles {
    gap: 15px;
    justify-content: center;
  }

  .circle {
    width: 140px;
    height: 140px;
    font-size: 14px;
    line-height: 1.5;
    flex-shrink: 0;
  }

  .why-section {
    padding: 60px 20px 80px;
  }

  .why-section h2 {
    font-size: 28px;
    margin-bottom: 50px;
  }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  }

  .why-item {
    width: 100%;
  }

  .why-item h6 {
    font-size: 16px;
    min-height: auto;
  }

  .network-section {
    padding: 60px 20px;
  }

  .network-section h2 {
    font-size: 28px;
    margin-bottom: 60px;
  }

  .network-info ul {
    font-size: 14px;
    padding-left: 24px;
  }

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

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

  .contact-section {
    padding: 60px 20px;
    gap: 40px;
  }

  .contact-section h1 {
    font-size: 28px;
  }

  .contact-buttons {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
    gap: 15px;
  }

  .btn-contact,
  .btn-contact-light {
    width: 100%;
    font-size: 14px;
    height: 50px;
  }

  .footer {
    padding: 30px 20px;
  }

  .footer-logo {
    width: 100px;
    height: 30px;
  }

  .footer-info {
    gap: 8px;
  }

  .footer-info p {
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-links {
    font-size: 12px;
    gap: 5px;
    margin-top: 12px;
  }

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

/* Extra Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 20px;
  }

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

  .creators-grid img {
    width: calc(50% - 5px);
  }

  .what-we-do-section h2,
  .brands-section h3,
  .global-vision-section h2,
  .about-section h2,
  .why-section h2,
  .network-section h2,
  .contact-section h1 {
    font-size: 24px;
  }

  .service-card h5 {
    font-size: 18px;
  }

  .circle {
    width: 120px;
    height: 120px;
    font-size: 12px;
  }

  .about-description {
    font-size: 13px;
  }

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

  .category-item {
    max-width: 100%;
  }

  .why-item {
    max-width: 100%;
  }
}
