/* Portfolio Case (Aethir) */

* { box-sizing: border-box; padding: 0;margin: 0; }
body { background: #000; color: #fff; font-family: 'Sora', sans-serif; }

.portfolio-case { margin-top: 0; }

/* Hero Banner */
.hero-banner {
  width: 100%;
  height: 534px;
  background: #010101;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner__container {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  position: relative;
  padding: 40px 265px 0;
  display: flex;
  flex-direction: column;
}

/* Header */
.hero-banner__header {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 64px;
  background: rgba(27, 27, 27, 0.8);
  border: 0.5px solid #393939;
  backdrop-filter: blur(4px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 106px;
}

.hero-banner__logo {
  width: 173px;
  height: 32px;
}

.hero-banner__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-banner__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-banner__nav-link {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #A5A5A5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-banner__nav-link.active {
  font-weight: 400;
  color: #FFFFFF;
}

.hero-banner__nav-link:hover {
  color: #FFFFFF;
}

/* Main Content */
.hero-banner__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 64px;
  padding-top: 128px;
}

.hero-banner__title {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: #FFFFFF;
  max-width: 910px;
  margin: 0;
}

.hero-banner__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Project Info */
.hero-banner__project-info {
  display: flex;
  align-items: center;
}

.hero-banner__project-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-banner__project-icon {
  width: 56px;
  height: 56px;
  background: #212121;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
}

.hero-banner__project-icon img {
  width: 26px;
  height: 34px;
  object-fit: contain;
}

.hero-banner__project-name {
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #E7E7E7;
}

/* Action Buttons */
.hero-banner__action-buttons {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-banner__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  width: 116px;
  height: 44px;
  background: #FFFFFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #212121;
}

.hero-banner__action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

/* Article layout - Updated to match Figma design */
.article { 
  max-width: 1440px; 
  margin: 0 auto; 
  background: #FCFCFC;
  color: #232325;
}

/* Project metadata header */
.article-metadata {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height:160px;
  border-bottom: 1px solid #F2F2F2;
  background-color: #F2F2F2;
  padding: 0 24px;
}

.article-metadata__content {
  display: flex;
  align-items: center;
  gap: 48px;
}

.article-qr-code {
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-metadata__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-metadata__label {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #212121;
}

.article-metadata__value {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #212121;
  border:none;
}

.article-metadata__value--uppercase {
  text-transform: uppercase;
}

/* Try product button */
.article-try-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #212121;
  border: none;
  cursor: pointer;
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  align-self: center;
}

.article-try-button svg {
  width: 24px;
  height: 24px;
}

/* Main content container */
.article-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 910px;
  margin: 0 auto;
  margin-top: 5rem;
}

/* Content sections */
.article-section { 
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-section__title { 
  font-family: 'SF Pro Display', sans-serif;
  font-size: 36px; 
  font-weight: 700; 
  line-height: 1.19;
  color: #232325;
  margin: 0;
}

.article-section__content {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #232325;
  max-width: 905px;
}

.article-section__content--full-width {
  max-width: 100%;
}

/* Images */
.article-figure { 
  margin: 0;
  width: 100%;
  max-width: 910px;
}

.article-figure img { 
  width: 100%; 
  height: auto; 
  display: block; 
  border-radius: 8px;
}

/* Remove old styles that are no longer needed */
.article-header,
.article-title,
.article-dek,
.article-subtitle,
.article p,
.article-list,
.article-list--checks {
  display: none;
}

/* Bottom nav spacing */
.bottom-nav { margin-top: 32px; }

/* Existing sections kept for other case pages (safe to keep) */
.project-intro, .project-chanllenge, .project-services, .project-results, .project-conclusion { display: none; }


/* Intro */
.project-intro { padding: 80px 24px; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; max-width: 1200px; margin: 0 auto; }
.project-intro__inner { display: flex; flex-direction: column; gap: 16px; width: 876px; }
.project-intro__title { font-size: 40px; font-weight: 700; letter-spacing: -0.02em; }
.project-intro__subtitle { color: var(--text-muted); font-size: 28px; font-weight: 600; }
.project-intro__description {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.4;
  width: 756px;
}
.project-intro__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 40px;
  height: 56px;
  align-self: center;
  background: 
      linear-gradient(0deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)),
      radial-gradient(109.37% 838.92% at 13.29% -8.59%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid transparent;
  border-radius: 1623.375px;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.67em;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: inset 0px 6.5px 6.5px 0px rgba(255, 255, 255, 0.2);
}

.project-intro__cta:hover {
  transform: translateY(-2px);
}

/* Challenge section - centered between sections */
.project-chanllenge {
  padding: 56px 24px;
  display: flex;
  justify-content: center;
}
.section-two-col { width: 100%; max-width: 1200px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.section-two-col--reverse { direction: rtl; }
.section-two-col--reverse > * { direction: ltr; }
.section-image { width: 100%; }
.section-image img { width: 100%; height: auto; display: block; }
.project-chanllenge__inner {
  width: 100%;
  
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.project-chanllenge__title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.project-chanllenge__description {
  font-size: 18px;
  line-height: 1.6;
}

.project-services {
  padding: 56px 24px;
  display: flex;
  justify-content: center;

}

.project-services__inner {
  width: 100%;
  max-width: 712px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.project-services__title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.project-services__description {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

.project-results {
  padding: 56px 24px;
  display: flex;
  justify-content: center;
 
}

.project-results__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;

  text-align: left;
}

.project-results__title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.project-results__description {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

/* Conclusion - centered layout */
.project-conclusion {
  padding: 56px 24px;
  display: flex;
  justify-content: center;
}

.project-conclusion .section-two-col {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr; /* single column to center content */
  justify-items: center;
}

.project-conclusion__inner {
  width: 100%;
  max-width: 712px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: flex-start;
}

.project-conclusion__title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.project-conclusion__description {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  margin: 48px 0;
  border: none;
}
/* Responsiveness */
@media (max-width: 1024px) {
  .hero-banner__container {
    padding: 40px 24px 0;
  }
  
  .hero-banner__header {
    width: 90%;
    max-width: 760px;
  }
  
  .hero-banner__nav {
    gap: 24px;
  }
  
  .hero-banner__title {
    font-size: 36px;
    max-width: 100%;
  }
  
  .hero-banner__actions {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  
  .hero-banner__action-buttons {
    gap: 16px;
  }
  
  .project-intro { flex-direction: column; align-items: flex-start; }
  .project-intro__title { font-size: 36px; }
  .section-two-col { grid-template-columns: 1fr; gap: 24px; }
  
  /* Article responsive styles */
  .article { 
    padding: 0 24px 72px; 
  }
  
  .article-metadata {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    height: auto;
    padding: 24px;
  }
  
  .article-metadata__content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .article-qr-code {
    align-self: flex-end;
  }
  
  .article-try-button {
    margin: 0;
    align-self: flex-start;
  }
  
  .article-content {
    max-width: 100%;
  }
  
  .article-section__content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-banner {
    height: 480px;
  }
  
  .hero-banner__container {
    padding: 20px 16px 0;
  }
  
  .hero-banner__header {
    width: 100%;
    padding: 0 16px;
    gap: 24px;
  }
  
  .hero-banner__logo {
    width: 120px;
    height: 24px;
  }
  
  .hero-banner__nav {
    gap: 16px;
  }
  
  .hero-banner__nav-link {
    font-size: 12px;
  }
  
  .hero-banner__content {
    padding-top: 80px;
    gap: 40px;
  }
  
  .hero-banner__title {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .hero-banner__project-logo {
    gap: 12px;
  }
  
  .hero-banner__project-icon {
    width: 48px;
    height: 48px;
    padding: 12px 16px;
  }
  
  .hero-banner__project-icon img {
    width: 20px;
    height: 26px;
  }
  
  .hero-banner__project-name {
    font-size: 20px;
  }
  
  .hero-banner__action-btn {
    width: 100px;
    height: 40px;
    font-size: 16px;
  }
  
  .hero-banner__action-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .project-intro { padding: 40px 16px; }
  .project-chanllenge { padding: 32px 16px; }
  
  /* Article mobile styles */
  .article { 
    padding: 0 16px 56px; 
  }
  
  .article-metadata {
    gap: 16px;
    padding: 16px;
  }
  
  .article-metadata__content {
    gap: 12px;
  }
  
  .article-metadata__label {
    font-size: 10px;
  }
  
  .article-metadata__value {
    font-size: 14px;
  }
  
  .article-try-button {
    padding: 6px 12px;
    font-size: 10px;
    align-self: flex-start;
  }
  
  .article-try-button svg {
    width: 20px;
    height: 20px;
  }
  
  .article-content {
    gap: 24px;
  }
  
  .article-section__title {
    font-size: 28px;
  }
  
  .article-section__content {
    font-size: 16px;
    line-height: 1.4;
  }
}


