/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gradient: linear-gradient(97.47deg, #FF4601 6.72%, #E91005 50.32%, #CD4024 93.91%);
  --bg: #000;
  --bg-card: #0e0e0e;
  --bg-card-hover: #1b1b1b;
  --text-primary: #eee;
  --text-muted: #808080;
  --text-white: #fff;
  --border-color: rgba(255, 255, 255, 0.2);
  --border-subtle: #2e2e2e;
  --font-1: 'Inter', sans-serif;
  --font-2: 'Playfair Display', serif;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 56px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-1);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

/* ===== Utilities ===== */
.container {
  max-width: 1392px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-sm {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
}

.playfair-italic {
  font-family: var(--font-2);
  font-style: italic;
  font-weight: 400;
}

.inter-medium {
  font-family: var(--font-1);
  font-weight: 500;
}

.text-light {
  color: var(--text-primary);
}

.text-muted {
  color: var(--text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  border-radius: 100px;
  background: #1b1b1b;
  font-size: 14px;
  color: var(--text-primary);
  box-shadow: inset 1.5px 1.5px 2px 0 rgba(255, 255, 255, 0.15);
}

.badge__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 23px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 14px;
  color: var(--text-primary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px;
  border-radius: 100px;
  background: var(--gradient);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: opacity 0.3s;
}

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

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s;
}

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

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 94px;
  display: flex;
  align-items: center;
  padding: 0 72px;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  height: 68px;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

.navbar__logo,
.navbar__cta {
  transition: opacity 0.3s ease, width 0.3s ease;
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar__logo-icon {
  width: 49px;
  height: 48px;
  object-fit: contain;
}

.navbar__logo-text-wrap {
  display: flex;
  align-items: center;
}

.navbar__logo-text-img {
  height: 40px;
  width: auto;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 16px 32px;
  border-radius: 100px;
  background: linear-gradient(0.55deg, #000 33.71%, #292929 153.26%);
  box-shadow: inset 0.5px 0.5px 0px 0px rgba(134, 134, 134, 0.5);
  position: relative;
}

.navbar__nav a {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.navbar__nav a:hover {
  opacity: 0.7;
}

.navbar__cta {
  flex-shrink: 0;
}

/* ===== Hero Section ===== */
/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 900px;
  overflow: visible;
  margin-top: 0;
  background: #000;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

/* 3D Chrome Ball */
.hero__3d-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: 948px;
  height: 667px;
  pointer-events: none;
  z-index: 1;
  isolation: isolate;
}

.hero__3d-ball {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: color-dodge;
  filter: brightness(0.50) contrast(1.1);
}

/* Chrome specular highlight */
.hero__ball-shine {
  position: absolute;
  top: 60%;
  left: 35%;
  width: 38%;
  height: 32%;
  background: radial-gradient(ellipse at 40% 30%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.12) 35%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(6px);
}

/* Glow effect */
.hero__glow {
  position: absolute;
  left: 51%;
  top: 62%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 60px;
  background: white;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  z-index: 2;
}

/* Content Layout */
.hero__content {
  position: relative;
  z-index: 3;
  padding: 170px 60px 50px 72px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.hero__top {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow: visible;
}

.hero__left {
  flex: 1;
  overflow: visible;
}

.hero__title {
  display: flex;
  flex-direction: column;
  padding-left: 80px;
  overflow: visible;
}

.hero__title-create {
  display: block;
  font-family: var(--font-1);
  font-weight: 400;
  font-size: 150px;
  line-height: 1;
  letter-spacing: -8px;
  color: white;
  padding-left: 12px;
}

.hero__title-impactful {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 150px;
  line-height: 1;
  letter-spacing: -6px;
  padding-bottom: 20px;
  background: linear-gradient(114.52deg, #FF4601 6.72%, #E91005 50.32%, #CD4024 93.91%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-left: 24px;
  margin-top: 4px;
}

/* Right side */
.hero__right {
  width: 462px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding-top: 36px;
  padding-right: 15px;
}

.hero__description {
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__description p {
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
}

.hero__desc-white {
  color: #eee;
}

.hero__desc-white strong {
  color: white;
  font-weight: 600;
}

.hero__desc-muted {
  color: #808080;
}

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

.hero__contact-label {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #eee;
}

.hero__social-icons {
  display: flex;
  gap: 7px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 60px;
  background: linear-gradient(to top, #292929, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0.3px 0.3px 0 0 #9c9c9c;
  transition: opacity 0.3s;
}

.social-icon img {
  width: 30px;
  height: 30px;
}

/* Bottom row */
.hero__bottom {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.hero__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 92px;
  width: 306px;
  flex-shrink: 0;
}

.hero__wedo {
  display: flex;
  flex-direction: column;
  max-width: 220px;
}

.hero__wedo-label {
  font-size: 16px;
  line-height: 24px;
  color: #eee;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__wedo-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__wedo-list p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.48px;
  color: white;
}

.hero__sep {
  margin: 0 6px;
  opacity: 0.5;
}

.hero__clients {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__client-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: brightness(0) invert(1);
}

/* Scroll button */
.hero__scroll-down {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 98px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Bottom right: Featured */
.hero__bottom-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 271px;
  flex-shrink: 0;
}

.hero__featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  color: #eee;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__featured-label {
  color: #eee;
}

.hero__featured-num {
  background: linear-gradient(96.2deg, #FF4601 6.72%, #E91005 50.32%, #CD4024 93.91%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__featured-image {
  border-radius: 12px;
  overflow: hidden;
}

.hero__featured-image img {
  width: 100%;
  height: 174px;
  object-fit: cover;
  display: block;
}

/* Bottom border with glow */
.hero__border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #000, #6e6e6e 50%, #000);
}

.hero__border::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 261px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(31px);
  border-radius: 160px;
}

/* ===== Services Section ===== */
.services {
  padding: 120px 0 0;
  margin-top: 16px;
}

.services__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 80px;
}

.services__left {
  flex-shrink: 0;
}

.services__left .badge {
  margin-bottom: 24px;
}

.services__title {
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.92px;
}

.services__right {
  max-width: 500px;
  padding-top: 40px;
}

.services__desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-primary);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card {
  padding: 48px 32px;
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:last-child {
  border-right: none;
}

.service-card__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
  filter: brightness(1.3) drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.service-card__num {
  font-size: 14px;
  color: var(--text-muted);
}

.service-card__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: var(--text-white);
}

.service-card__desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-muted);
}

/* ===== About Section ===== */
.about {
  padding: 120px 24px 16px;
}

.about__container {
  max-width: 1392px;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.07));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 0 48px 120px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.about__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 19px;
  position: relative;
  max-width: 636px;
}

.about__image-wrapper {
  position: absolute;
  top: 6px;
  left: 12px;
  right: 12px;
  opacity: 0.92;
  overflow: hidden;
}

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

.about__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

.about__stats {
  display: flex;
  justify-content: center;
  gap: 134px;
  width: 100%;
}

.stat {
  text-align: center;
  overflow: hidden;
}

.stat__label {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-white);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 64px;
}

.stat__number {
  font-size: 128px;
  font-weight: 500;
  line-height: 128px;
  letter-spacing: -5.12px;
}

/* ===== Projects Section ===== */
.projects {
  padding: 12px 0 60px;
}

.projects__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 700px;
}

.project-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__top {
  display: flex;
  justify-content: space-between;
  padding: 55px;
  position: relative;
  z-index: 1;
}

.project-card__tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-card__awards {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.award-logo {
  width: 51px;
  height: 51px;
  object-fit: contain;
}

.award-item p {
  margin: 0;
}

.award-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 20px;
}

.award-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 20px;
}

.project-card__bottom {
  margin-top: auto;
  padding: 55px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(153, 153, 153, 0), rgba(153, 153, 153, 0.1));
  -webkit-backdrop-filter: blur(2.5px);
  backdrop-filter: blur(2.5px);
  border-radius: var(--radius-md);
}

.project-card__subtitle {
  font-size: 16px;
  line-height: 23px;
  color: var(--text-primary);
  margin-bottom: 23px;
}

.project-card__title {
  font-size: 63px;
  font-weight: 500;
  line-height: 70px;
  letter-spacing: -1.88px;
}

.projects__cta {
  display: flex;
  justify-content: center;
  padding: 12px 0 48px;
}

/* ===== Process Section ===== */
.process {
  padding: 120px 0;
}

.process__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 80px;
}

.process__left .badge {
  margin-bottom: 24px;
}

.process__title {
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.92px;
}

.process__right {
  max-width: 500px;
  padding-top: 40px;
}

.process__desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-primary);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.process-card {
  padding: 48px 32px;
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.process-card:last-child {
  border-right: none;
}

.process-card__num {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.process-card__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: var(--text-white);
  margin-bottom: 16px;
}

.process-card__desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-muted);
}

.process-card__icon {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.process-card__icon svg {
  width: 40px;
  height: 40px;
}

.process-card__icon-bg {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background: linear-gradient(94.66deg, #FF4601 6.72%, #E91005 50.32%, #CD4024 93.91%);
  box-shadow: inset 1.5px 1.5px 2px 0px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card__icon-bg img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.process-card__circle {
  position: absolute;
  bottom: -210px;
  left: 50%;
  transform: translateX(-50%);
  width: 324px;
  height: 324px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a 0%, #0a0a0a 100%);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

/* ===== Awards Section ===== */
.awards {
  padding: 120px 0;
}

.awards .badge {
  display: flex;
  margin: 0 auto 61px;
  width: fit-content;
}

.awards__list {
  display: flex;
  flex-direction: column;
}

.award-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-color);
  opacity: 0.745;
}

.award-row__source {
  width: 185px;
  font-size: 12px;
  color: var(--text-white);
  line-height: 16px;
}

.award-row__title {
  flex: 1;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: var(--text-white);
}

.award-row__project {
  width: 185px;
  text-align: right;
  font-size: 12px;
  color: var(--text-white);
  line-height: 16px;
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 120px 0;
}

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

.pricing__header .badge {
  margin-bottom: 24px;
}

.pricing__title {
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.92px;
  margin-bottom: 24px;
}

.pricing__subtitle {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  border: 1px solid #2e2e2e;
  border-radius: 24px;
  padding: 48px 36px;
  position: relative;
  background: transparent;
}

.pricing-card--popular {
  border-radius: 32px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.05));
  border: none;
  outline: none;
  position: relative;
  margin-top: -30px;
  margin-bottom: -30px;
  padding-top: 78px;
  padding-bottom: 78px;
  z-index: 1;
  overflow: hidden;
}

.pricing-card__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: none;
  object-position: center top;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.pricing-card--popular::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(135deg, #1b1b1b 0%, #6e6e6e 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-card__number {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 32px;
  box-shadow: 0 0 0 7px rgba(35, 35, 35, 0.95), 0 0 0 14px rgba(28, 28, 28, 0.8), 0 0 0 21px rgba(22, 22, 22, 0.6);
}

.pricing-card__badge {
  position: absolute;
  z-index: 1;
  top: 48px;
  right: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  background: #1a1a1a;
  border: 1px solid #333;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.pricing-card__name {
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
  color: var(--text-white);
  margin-bottom: 12px;
}

.pricing-card__desc {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 36px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 36px;
}

.pricing-card__price .gradient-text {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.5px;
}

.pricing-card__custom {
  font-size: 48px !important;
}

.pricing-card__period {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-card__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0;
}

.pricing-card__divider::before,
.pricing-card__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-primary);
}

.pricing-card__features svg {
  flex-shrink: 0;
}

/* ===== Testimonials Section ===== */
.testimonials {
  position: relative;
  padding: 30px 72px 100px;
  overflow: hidden;
}

.testimonials__bg {
  position: absolute;
  inset: 0;
  width: 107%;
  height: 100%;
  object-fit: cover;
  left: -3.5%;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials__cards-top {
  display: flex;
  justify-content: center;
  gap: 163px;
  margin-bottom: 60px;
}

.testimonial-card {
  width: 276px;
  flex-shrink: 0;
}

.testimonial-card--faded {
  opacity: 0.33;
}

.testimonial-card__text {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  border-radius: var(--radius-sm);
  padding: 27px 21px;
  margin-bottom: 13px;
}

.testimonial-card__text p {
  font-size: 11px;
  line-height: 16px;
  color: var(--text-white);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text-white);
  object-fit: cover;
}

.testimonial-card__name {
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  color: var(--text-white);
}

.testimonial-card__role {
  font-size: 9px;
  line-height: 13px;
}

.testimonials__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-align: center;
}

.testimonials__title {
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.92px;
}

/* ===== Team Section ===== */
.team {
  position: relative;
  padding: 0 24px 120px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.team__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 113.5%;
  object-fit: cover;
  top: -6.75%;
}

.team .container {
  position: relative;
  z-index: 1;
}

.team__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  margin-bottom: 80px;
  padding-top: 19px;
}

.team__title {
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.92px;
  color: var(--text-white);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 91px;
}

.team-card {
  height: 580px;
}

.team-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(to bottom, #262626, #0e0e0e);
  padding: 36px;
}

.team-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 92%;
  object-fit: cover;
  top: 4%;
}

.team-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card__content .tag {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
}

.team-card__info {
  margin-top: auto;
}

.team-card__name {
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.32px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.team-card__role {
  font-size: 16px;
  line-height: 24px;
  color: #e7e7e7;
}

/* ===== Blog Section ===== */
.blog {
  padding: 120px 0;
}

.blog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}

.blog__header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog__title {
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.92px;
  color: var(--text-white);
}

.blog__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  max-width: 420px;
}

.blog__desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-muted);
  text-align: right;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s, background 0.3s;
}

.blog-card:hover {
  border-color: rgba(255, 70, 1, 0.3);
  background: var(--bg-card-hover);
}

.blog-card__image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.blog-card__image--sm {
  height: 180px;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}

.blog-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.blog-card__date {
  font-size: 13px;
  color: var(--text-muted);
}

.blog-card__read {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  border-left: 1px solid var(--border-subtle);
}

.blog-card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  color: var(--text-white);
  letter-spacing: -0.3px;
}

.blog-card--featured .blog-card__title {
  font-size: 28px;
  line-height: 34px;
}

.blog-card__excerpt {
  font-size: 14px;
  line-height: 22px;
  color: var(--text-muted);
}

.blog__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog__side .blog-card {
  flex-direction: row;
}

.blog__side .blog-card__image {
  width: 200px;
  flex-shrink: 0;
  height: auto;
  min-height: 160px;
}

.blog__side .blog-card__content {
  padding: 24px;
}

/* ===== Contact Section ===== */
.contact {
  padding: 120px 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 80px;
  border: 1px solid var(--border-subtle);
}

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

.contact__title {
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -1.68px;
  color: var(--text-white);
}

.contact__desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-muted);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 70, 1, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 70, 1, 0.2);
}

.contact__info-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact__info-value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.contact__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: var(--font-1);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L8 9L15 1' stroke='%23808080' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 70, 1, 0.5);
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__brand .navbar__logo-icon {
  width: 49px;
  height: 48px;
}

.footer__brand .navbar__logo-text-img {
  height: 40px;
}

.footer__tagline {
  font-size: 15px;
  line-height: 22px;
  color: var(--text-muted);
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__links-heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--text-primary);
}

.footer__cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__cta-text {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-white);
  line-height: 28px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer__copy,
.footer__credit {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .navbar {
    padding: 20px 24px 0;
  }

  .navbar__nav {
    gap: 24px;
    padding: 12px 24px;
  }

  .hero {
    height: auto;
    min-height: 700px;
  }

  .hero__3d-wrap {
    width: 700px;
    height: 492px;
  }

  .hero__content {
    padding: 130px 24px 40px;
  }

  .hero__left {
    width: auto;
    flex: 1;
  }

  .hero__title-create,
  .hero__title-impactful {
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -4px;
  }

  .hero__right {
    max-width: 350px;
  }

  .hero__description p {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width: 1200px) {

  .services__grid,
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-card--popular {
    transform: none;
  }

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

  .about__stats {
    gap: 48px;
  }

  .stat__number {
    font-size: 80px;
    line-height: 80px;
  }

  .testimonials__cards-top {
    gap: 40px;
  }

  .contact__inner {
    padding: 60px 48px;
    gap: 60px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ===== Hamburger Button ===== */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  margin-left: auto;
}

.navbar__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
}

.mobile-menu.open .mobile-menu__overlay {
  background: rgba(0, 0, 0, 0.6);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: #0a0a0a;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  padding: 72px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mobile-menu__nav a {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #eee;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a.active {
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 16px 0;
    height: 60px;
  }

  .navbar.scrolled {
    height: 52px;
  }

  .navbar__logo-icon {
    width: 32px;
    height: 32px;
  }

  .navbar__logo-text-img {
    height: 26px;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    overflow: hidden;
  }

  .hero__3d-wrap {
    width: 300px;
    height: 210px;
    opacity: 0.4;
  }

  .hero__glow {
    display: none;
  }

  .hero__content {
    padding: 80px 20px 32px;
    overflow: visible;
  }

  .hero__top {
    flex-direction: column;
    gap: 28px;
  }

  .hero__title {
    padding-left: 0;
  }

  .hero__title-create,
  .hero__title-impactful {
    font-size: 44px;
    line-height: 48px;
    letter-spacing: -2px;
  }

  .hero__title-create {
    padding-left: 0;
  }

  .hero__title-impactful {
    padding-left: 4px;
  }

  .hero__right {
    max-width: 100%;
    width: 100%;
    padding-right: 0;
    padding-top: 0;
    gap: 16px;
  }

  .hero__description {
    padding-bottom: 16px;
  }

  .hero__description p {
    font-size: 14px;
    line-height: 20px;
  }

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

  .social-icon {
    width: 28px;
    height: 28px;
  }

  .social-icon img {
    width: 26px;
    height: 26px;
  }

  .hero__bottom {
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
  }

  .hero__bottom-left {
    width: 100%;
    gap: 24px;
  }

  .hero__wedo {
    max-width: 100%;
  }

  .hero__wedo-label {
    font-size: 14px;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .hero__wedo-list p {
    font-size: 14px;
    line-height: 20px;
  }

  .hero__clients {
    gap: 16px;
  }

  .hero__client-logo {
    height: 16px;
  }

  .hero__scroll-down {
    position: static;
    transform: none;
    align-self: center;
    order: 3;
  }

  .hero__bottom-right {
    width: 100%;
    margin-left: 0;
    order: 2;
  }

  .hero__featured-image img {
    height: 140px;
  }

  .services__top,
  .process__top {
    flex-direction: column;
    gap: 24px;
  }

  .services__title,
  .process__title,
  .pricing__title,
  .testimonials__title,
  .team__title {
    font-size: 40px;
    line-height: 48px;
  }

  .services__grid,
  .process__grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-card {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .service-card:last-child,
  .process-card:last-child {
    border-bottom: none;
  }

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

  .stat__number {
    font-size: 64px;
    line-height: 64px;
  }

  .project-card {
    height: auto;
    min-height: 480px;
  }

  .project-card__title {
    font-size: 32px;
    line-height: 38px;
  }

  .project-card__subtitle {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .project-card__top {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .project-card__tags {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .project-card__tags .tag {
    padding: 6px 14px;
    font-size: 12px;
  }

  .project-card__awards {
    display: none;
  }

  .project-card__bottom {
    padding: 20px;
  }

  .award-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .award-row__source,
  .award-row__project {
    width: auto;
    text-align: center;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    height: 450px;
  }

  .testimonials__cards-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .testimonials {
    padding: 30px 24px 80px;
  }

  .hero {
    height: 500px;
  }

  .about__text {
    font-size: 18px;
    line-height: 26px;
  }

  .blog__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .blog__header-right {
    align-items: flex-start;
    max-width: 100%;
  }

  .blog__desc {
    text-align: left;
  }

  .blog__title {
    font-size: 40px;
    line-height: 48px;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .blog__side .blog-card {
    flex-direction: column;
  }

  .blog__side .blog-card__image {
    width: 100%;
    height: 200px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 48px;
  }

  .contact__title {
    font-size: 36px;
    line-height: 44px;
  }

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

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible,
.reveal--left.visible,
.reveal--right.visible,
.reveal--scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.reveal-stagger>.reveal {
  transition-delay: calc(var(--i, 0) * 0.1s);
}