:root {
  color-scheme: dark;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  background: #08050b;
  color: #f8fafc;
  --text: #f8fafc;
  --muted: #a8b4c7;
  --muted-soft: rgba(255, 255, 255, 0.6);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.14);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  background-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: url('./assets/images/background.svg') no-repeat center top / cover;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

.page-shell {
  position: relative;
  isolation: isolate;
  max-width: 1354px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.page-shell::before {
  content: '';
  position: fixed;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: clamp(1200px, 150vh, 1700px);
  background: none;
  filter: blur(18px);
  pointer-events: none;
  z-index: -3;
}

.page-shell::after {
  content: '';
  position: fixed;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: clamp(760px, 95vh, 1100px);
  background: none;
  filter: blur(22px);
  pointer-events: none;
  z-index: -2;
}

.hero-shell {
  position: relative;
  isolation: isolate;
}

.hero-shell::before {
  content: '';
  position: absolute;
  top: -40px;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: none;
  pointer-events: none;
  z-index: -2;
}

.hero-shell::after {
  content: '';
  position: absolute;
  top: -40px;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: none;
  pointer-events: none;
  z-index: -1;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 90px;
}

.nav-links {
  justify-self: center;
}

.nav-actions {
  justify-self: end;
  display: flex;
  gap: 16px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.brand-logo {
  width: 147px;
  height: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.lang-label {
  color: var(--white);
  font-weight: 500;
  font-family: 'Almarai', sans-serif;
  font-size: 0.875rem;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 16px 32px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  box-shadow: 0 12px 38px rgba(249, 115, 22, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 24px;
  align-items: center;
  min-height: calc(100vh - 138px);
  padding: 118px 0 72px;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.eyebrow,
.section-pretitle {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f97316;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 1.1;
  letter-spacing: -2.4px;
  margin: 0 0 24px;
  max-width: 980px;
}

.hero-highlight {
  display: inline-block;
  background: linear-gradient(90deg, #f97316, #fb923c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 672px;
  line-height: 1.625;
  font-size: 1.25rem;
  color: var(--muted-soft);
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto 40px;
  justify-content: center;
}

.btn-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
  width: min(100%, 860px);
  padding-top: 56px;
}

.hero-trusted {
  margin-top: 56px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 49px 336px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
}

.hero-trusted span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  text-align: center;
}

.trusted-logos {
  display: flex;
  width: 100%;
  min-height: 98px;
  justify-content: space-between;
  align-items: center;
}

.trusted-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  position: relative;
}

.trusted-logo img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trusted-logo:nth-child(1) img {
  width: 40px;
  height: 40px;
}

.trusted-logo:nth-child(2) img {
  width: 40px;
  height: 28px;
}

.trusted-logo:nth-child(3) img,
.trusted-logo:nth-child(7) img {
  width: 55px;
  height: 30px;
  left: -3px;
  right: auto;
}

.trusted-logo:nth-child(4) img {
  width: 47px;
  height: 29px;
  left: 1px;
  right: auto;
}

.trusted-logo:nth-child(5) img {
  width: 41px;
  height: 27px;
}

.trusted-logo:nth-child(6) img {
  width: 52px;
  height: 20px;
  left: -2px;
  right: auto;
}

@media (max-width: 1280px) {
  .hero-trusted {
    padding-left: 120px;
    padding-right: 120px;
  }
}

@media (max-width: 860px) {
  .hero-trusted {
    padding-left: 24px;
    padding-right: 24px;
  }

  .trusted-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    min-height: 0;
  }

  .trusted-logos img {
    left: 0 !important;
    right: 0 !important;
  }
}

.stat-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px 18px;
  min-height: 114px;
  backdrop-filter: blur(12px);
}

.stat-card strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  margin-bottom: 4px;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 40px;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
  padding: 32px;
  display: grid;
  align-content: space-between;
}

.hero-card__badge {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: fit-content;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.hero-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.hero-card__grid img {
  width: 100%;
  aspect-ratio: 4 / 1;
  object-fit: contain;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.section {
  margin-top: 132px;
}

.featured-article {
  margin-top: 18px;
}

.featured-article__card {
  width: min(100%, 1260px);
  margin: 0 auto;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
}

.featured-article__media {
  min-height: 500px;
}

.featured-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article__content {
  padding: 54px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.featured-article__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-article__time {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
}

.featured-article__content h2 {
  margin: 0;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.featured-article__content p {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.06rem;
  line-height: 1.75;
  max-width: 510px;
}

.featured-article__author {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.featured-article__author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.featured-article__author strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.2;
}

.featured-article__author span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.insights-section {
  margin-top: 42px;
}

.insights-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 38px;
  justify-content: center;
}

.insights-filter {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
}

.insights-filter.is-active {
  color: #fff;
  background: linear-gradient(135deg, #f97316, #fb923c);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.25);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
}

.insight-card {
  display: flex;
  flex-direction: column;
}

.insight-card__media {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.insight-card__media img {
  width: 100%;
  height: 228px;
  object-fit: cover;
}

.insight-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-size: 0.52rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card__body {
  padding-top: 14px;
}

.insight-card__meta {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.7rem;
}

.insight-card__meta span {
  position: relative;
}

.insight-card__meta span::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.insight-card__body h3 {
  margin: 10px 0 8px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.insight-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.92rem;
  line-height: 1.65;
}

.insight-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #f97316;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insights-actions {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.insights-load-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.9);
  padding: 16px 26px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-trusted,
.section.services,
.section.blog,
.section.advantages {
  position: relative;
  z-index: 1;
}

.section.advantages {
  background: transparent;
}

.section-header,
.portfolio-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

/* Left column sizing and large heading to match provided design */
.section-header>div:first-child {
  max-width: 720px;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  line-height: 1.02;
  margin: 0;
  font-weight: 800;
  color: #fff;
}

.section-header .section-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.section-label,
.section-pretitle {
  margin-bottom: 16px;
}

.section-header h2,
.section-heading h2,
.section h2,
.portfolio h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1.12;
  margin: 0;
}

.section-label {
  margin: 0 0 16px;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-link {
  color: #f97316;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  white-space: nowrap;
}

.section-link img {
  width: 14px;
  height: 14px;
}

.cards-grid,
.blog-grid,
.advantages,
.work-grid {
  display: grid;
  gap: 24px;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.blog-card,
.advantages-card,
.work-card,
.cta-panel {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
}

.service-card {
  padding: 28px 24px;
  min-height: 306px;
  backdrop-filter: blur(18px);
}

.service-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
  display: grid;
  place-items: center;
}

.service-card__icon img,
.advantage-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  line-height: 1.45;
}

.service-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin: 0 0 22px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.service-card li {
  color: var(--muted);
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
}

.services-quad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  position: relative;

  /* min-height: 620px; */

  padding: 48px;

  border-radius: 32px;



  border: 1px solid rgba(255, 255, 255, .08);

  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 64px;
  height: 64px;

  border-radius: 18px;

  background: rgba(249, 115, 22, .12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f97316;

  margin-bottom: 42px;
}

.service-card h3 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
}

.service-description {
  color: rgba(255, 255, 255, .55);

  font-size: 1.25rem;

  line-height: 1.8;

  max-width: 90%;

  margin-bottom: 48px;
}

.service-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  margin-bottom: auto;
}

.service-label {
  display: block;

  color: #f97316;

  font-size: .82rem;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 18px;
}

.service-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-columns li {
  color: rgba(255, 255, 255, .75);

  display: flex;
  align-items: flex-start;

  gap: 12px;

  margin-bottom: 18px;

  line-height: 1.7;
}

.service-columns li::before {
  content: "✓";

  color: #f97316;

  font-weight: bold;

  flex-shrink: 0;
}

.service-btn {
  margin-top: 48px;

  width: fit-content;

  padding: 18px 30px;

  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, .08);

  background: rgba(255, 255, 255, .03);

  color: white;

  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 12px;

  font-weight: 600;

  transition: .3s;
}

.service-btn:hover {
  transform: translateY(-3px);

  background: rgba(255, 255, 255, .08);
}

.service-btn span {
  font-size: 1.2rem;
}


@media (max-width: 1100px) {

  .services-quad-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 32px;
  }

  .service-card h3 {
    font-size: 2.5rem;
  }

  .service-description {
    font-size: 1.05rem;
    max-width: 100%;
  }

  .service-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .service-columns {
    grid-template-columns: 1fr;
  }

  .service-card h3 {
    font-size: 2.2rem;
  }
}

.process-section {
  padding: 120px 0;
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.process-tag {
  display: block;

  color: #f97316;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;

  margin-bottom: 18px;
}

.process-header h2 {
  color: #fff;

  font-size: 56px;
  font-weight: 700;

  margin-bottom: 20px;
}

.process-header p {
  color: rgba(255, 255, 255, .6);

  font-size: 18px;
  line-height: 1.7;
}

.process-timeline {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 40px;
}

.timeline-line {
  position: absolute;

  top: 24px;
  left: 12%;
  right: 12%;

  height: 1px;

  background: rgba(255, 255, 255, .12);
}

.process-step {
  position: relative;
  z-index: 2;
}

.step-number {
  width: 48px;
  height: 48px;

  border-radius: 50%;

  background: #18181b;
  border: 1px solid rgba(255, 255, 255, .12);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;

  margin-bottom: 32px;
}

.process-step.active .step-number {
  background: #f97316;
  border-color: #f97316;
}

.process-step h3 {
  color: #fff;

  font-size: 32px;
  font-weight: 600;

  margin-bottom: 14px;
}

.process-step p {
  color: rgba(255, 255, 255, .55);

  line-height: 1.8;
}


@media (max-width: 992px) {

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .timeline-line {
    display: none;
  }

  .process-header h2 {
    font-size: 42px;
  }
}

.section-heading {
  max-width: 540px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p,
.portfolio-top p,
.blog-card p,
.advantages-item p,
.cta-panel__content p,
.footer p {
  color: var(--muted);
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.blog-card figure {
  position: relative;
  margin: 0;
  width: min(100%, 394.67px);
}

.blog-image-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  background: #f97316;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}

.blog-meta {
  padding: 14px 0 0;
}

.blog-meta span {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.blog-meta h3 {
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.55;
}

.blog-card p {
  padding: 8px 0 0;
  margin: 0;
  line-height: 1.7;
  font-size: 0.87rem;
}

.advantages {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 580px);
  gap: 78px;
  align-items: center;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.advantages-content {
  display: grid;
  gap: 28px;
  max-width: 610px;
}

.advantages-list {
  display: grid;
  gap: 34px;
}

.advantages .section-pretitle {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
}

.advantages h2 {
  max-width: 520px;
  font-size: clamp(3rem, 4.4vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.advantage-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.advantage-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.3;
}

.advantage-item p {
  max-width: 495px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.95rem;
  line-height: 1.68;
}

.advantages-card {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.advantages-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 548px;
}

.advantages-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advantages-card__overlay {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(31, 33, 37, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px 26px 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.portrait-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.portrait-ring img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.advantages-card__content strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.25;
  margin-bottom: 2px;
}

.advantages-card__content span {
  display: block;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.advantages-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
  font-style: italic;
  font-weight: 600;
}

.portfolio-top {
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 80px;
}

.section.portfolio {
  position: relative;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 128px 16px;
}

.portfolio-top>div:first-child {
  max-width: 672px;
}

.portfolio .section-pretitle {
  margin-bottom: 16px;
  padding: 5px 13px;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.2em;
}

.portfolio h2 {
  font-size: clamp(2.3rem, 4.6vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.portfolio-top>div:first-child>p:last-child {
  margin: 8px 0 0;
  max-width: 615px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 1.625;
}

.work-filter {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  display: flex;
  gap: 12px;
  padding: 7px;
  margin-left: auto;
}

.filter-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 0;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: none;
}

.filter-btn.active {
  background: #f97316;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(245, 73, 0, 0.2), 0 4px 6px -4px rgba(245, 73, 0, 0.2);
}

.work-grid {
  gap: 48px;
  grid-template-columns: repeat(2, minmax(0, 598px));
  justify-content: center;
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: min(100%, 598px);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.work-card[hidden] {
  display: none !important;
}

.work-card__media {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: min(100%, 598px);
  height: 373px;
  min-height: 373px;
  overflow: hidden;
  border-radius: 40px;
  padding: 1px;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 39px;
}

.work-card__details {
  padding: 0 8px;
}

.work-card__details span {
  color: #f97316;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.work-card__details h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.work-card__select-row {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.work-card__select-row h3 {
  margin: 0;
}

.work-card:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.65);
  outline-offset: 6px;
}

.cta-section {
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  bottom: -100px;
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
}

.cta-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: min(100%, 1244px);
  margin-left: auto;
  margin-right: auto;
  padding: 97px;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 48px;
  backdrop-filter: blur(20px);
  margin-top: 94px;
}

.cta-panel__content h2 {
  margin: 0 0 22px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 760px;
}

.cta-panel__content p {
  max-width: 672px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  line-height: 1.555;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding-top: 16px;
}

.cta-panel .btn-primary,
.cta-panel .btn-secondary {
  padding: 20px 40px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1.4;
}

.cta-panel .btn-primary {
  background: #fff;
  color: #000;
  box-shadow: none;
}

.cta-panel .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding: 58px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 4px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr 1.1fr;
  gap: 34px;
  padding-bottom: 0;
}

.footer h3,
.footer h4 {
  margin: 0 0 20px;
}

.footer h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.footer p,
.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.6;
  font-size: 0.97rem;
}

.footer-brand {
  max-width: 100%;
  padding-bottom: 14px;
}

.footer-brand h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.footer-brand p {
  max-width: 246px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.48);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  background: rgba(249, 115, 22, 0.22);
}

.social-links img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 12px;
  max-width: 280px;
}

.contact-item img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 4px;
}

.footer-grid>div:last-child p:last-child {
  margin-top: 10px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  color: var(--muted);
  font-size: 0.8rem;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  align-items: center;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.74rem;
  line-height: 1.43;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-policy-links a {
  margin: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
  line-height: 1.33;
}

@media (max-width: 1100px) {

  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-card__body h3 {
    font-size: 1.3rem;
  }

  .featured-article__card {
    grid-template-columns: 1fr;
  }

  .featured-article__media {
    min-height: 300px;
  }

  .featured-article__content {
    padding: 34px 28px;
  }

  .hero,
  .advantages,
  .cards-grid,
  .blog-grid,
  .work-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-header,
  .portfolio-top {
    flex-direction: column;
    align-items: stretch;
  }

  .section.portfolio {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .portfolio-top {
    margin-bottom: 56px;
  }

  .work-filter {
    margin-left: 0;
    width: fit-content;
  }

  .work-card {
    width: 100%;
  }

  .work-card__details h3 {
    font-size: 30px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-trusted {
    padding-left: 72px;
    padding-right: 72px;
  }

  .cta-panel {
    min-height: 0;
    width: min(100%, 920px);
    padding: 58px 34px 52px;
    border-radius: 32px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-brand p,
  .contact-item {
    max-width: none;
  }

  .advantages {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .advantages-content {
    max-width: none;
  }

  .advantages h2,
  .advantage-item p {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .insights-section {
    margin-top: 26px;
  }

  .insights-filters {
    margin-bottom: 24px;
  }

  .insights-filter {
    font-size: 0.68rem;
    padding: 8px 12px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .insight-card__media img {
    height: 220px;
  }

  .insight-card__body h3 {
    font-size: 1.35rem;
  }

  .insight-card__body p {
    font-size: 0.9rem;
  }

  .insights-actions {
    margin-top: 30px;
  }

  .insights-load-btn {
    width: 100%;
    min-height: 48px;
  }

  .featured-article {
    margin-top: 8px;
  }

  .featured-article__card {
    border-radius: 26px;
  }

  .featured-article__media {
    min-height: 220px;
  }

  .featured-article__content {
    padding: 24px 20px;
  }

  .featured-article__meta {
    margin-bottom: 18px;
    gap: 10px;
  }

  .featured-article__time {
    font-size: 0.8rem;
  }

  .featured-article__content h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .featured-article__content p {
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .featured-article__author {
    margin-top: 24px;
  }

  .page-shell {
    padding: 24px 18px 40px;
  }

  .hero-shell::before,
  .hero-shell::after {
    top: -24px;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .section.portfolio {
    margin-top: 96px;
    padding: 72px 0;
  }

  .portfolio-top {
    margin-bottom: 40px;
  }

  .portfolio .section-pretitle {
    margin-bottom: 12px;
  }

  .portfolio h2 {
    font-size: 2.45rem;
  }

  .portfolio-top>div:first-child>p:last-child {
    font-size: 1rem;
    line-height: 1.65;
  }

  .work-filter {
    width: 100%;
    gap: 8px;
  }

  .filter-btn {
    flex: 1;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 0.82rem;
  }

  .work-grid {
    gap: 36px;
  }

  .work-card {
    gap: 18px;
  }

  .work-card__media {
    height: 250px;
    min-height: 250px;
    border-radius: 26px;
  }

  .work-card__media img {
    border-radius: 25px;
  }

  .work-card__details {
    padding: 0 2px;
  }

  .work-card__details h3 {
    font-size: 30px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-trusted {
    margin-top: 40px;
  }

  .blog-card img {
    width: 100%;
    height: 200px;
  }

  .blog-card figure {
    width: 100%;
  }

  .advantages-card__overlay {
    position: static;
    margin: 16px;
  }

  .advantages h2 {
    font-size: 2.75rem;
  }

  .advantages-image {
    min-height: auto;
  }

  .cta-panel {
    padding: 38px 20px;
    border-radius: 32px;
    gap: 20px;
  }

  .cta-panel__content h2 {
    font-size: 2.35rem;
  }

  .cta-panel__content p {
    font-size: 0.92rem;
  }

  .cta-panel__actions {
    gap: 10px;
  }

  .cta-panel .btn-primary,
  .cta-panel .btn-secondary {
    min-height: 50px;
    min-width: 0;
    width: 100%;
    padding: 12px 18px;
    font-size: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    margin-top: 34px;
    padding-top: 44px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 44px;
    padding-top: 28px;
  }

  .footer-policy-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* Portfolio Section */

.portfolio {
  padding: 90px 0;
}

.portfolio-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* Tabs */

.portfolio-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 54px;
  flex-wrap: wrap;
}

.portfolio-tab {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}

.portfolio-tab.active,
.portfolio-tab:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Grid */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
  row-gap: 72px;
  align-items: start;
}

/* Card */

.project-card {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.project-card[hidden] {
  display: none !important;
}

.project-card__media {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

/* Label on image */

.blog-image-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Bottom content */

.project-card__bottom {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 8px 0;
}

.project-card__details {
  flex: 1;
  max-width: 380px;
  padding: 0;
}

.project-card__details h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.project-card__details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Stat box */

.project-stat {
  flex: 0 0 96px;
  min-width: 96px;
  min-height: 82px;
  position: relative;
  right: auto;
  top: auto;
  transform: none;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent);
  border-radius: 18px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.project-stat strong {
  display: block;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.project-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Temporary media backgrounds - replace with images later */

.media-1 {
  background: url('assets/images/portfolio-dark-ui.png') no-repeat center center / cover;
}

.media-2 {
  background: url('assets/images/Container.png') no-repeat center center / cover;
}

.media-3 {
  background: url('assets/images/portfolio-luxury-ui.png') no-repeat center center / cover;
}

.media-4 {
  background: url('assets/images/portfolio-crypto-app.png') no-repeat center center / cover;
}

/* Responsive */

@media (max-width: 1100px) {
  .portfolio-inner {
    max-width: 760px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    row-gap: 56px;
  }

  .project-card__media {
    height: 320px;
  }

  .project-card__details {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .portfolio {
    padding: 64px 0;
  }

  .portfolio-tabs {
    justify-content: flex-start;
    margin-bottom: 36px;
    gap: 8px;
  }

  .portfolio-tab {
    font-size: 11px;
    padding: 10px 16px;
  }

  .projects-grid {
    gap: 42px;
  }

  .project-card__media {
    height: 220px;
    border-radius: 18px;
  }

  .project-card__bottom {
    flex-direction: column;
    gap: 18px;
    padding: 22px 4px 0;
  }

  .project-stat {
    width: 96px;
    min-height: 76px;
  }

  .project-card__details h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .project-card__details p {
    font-size: 0.88rem;
    line-height: 1.65;
  }
}

/* Testimonials section */

.section.testimonials {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 16px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(2, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.testimonials-intro {
  padding: 18px 4px;
}

.testimonials-tag {
  display: inline-block;
  color: var(--accent);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.testimonials-intro h2 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.testimonials-intro p {
  margin: 28px 0 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  font-size: 1.02rem;
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  margin-top: 44px;
}

.testimonial-control {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.testimonial-control:hover {
  border-color: rgba(249, 115, 22, 0.75);
  transform: translateY(-1px);
}

.testimonial-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  padding: 34px 32px;
  background: transparent;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote-mark {
  position: absolute;
  top: 30px;
  right: 26px;
  width: 34px;
  height: 34px;
  opacity: 0.72;
}

.testimonial-quote {
  margin: 0;
  max-width: calc(100% - 56px);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  overflow: hidden;
  flex: 0 0 auto;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.testimonial-author strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.testimonial-author span {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-intro p {
    max-width: none;
  }

  .testimonial-controls {
    margin-top: 26px;
  }
}

@media (max-width: 760px) {
  .section.testimonials {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonials-intro h2 {
    font-size: 2.35rem;
  }

  .testimonials-intro p {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .testimonial-card {
    border-radius: 24px;
    padding: 24px 20px;
    min-height: 0;
  }

  .testimonial-quote-mark {
    top: 20px;
    right: 18px;
    width: 28px;
    height: 28px;
  }

  .testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: calc(100% - 44px);
  }

  .testimonial-author strong {
    font-size: 1rem;
  }
}

/* About page */

.about-page .page-shell {
  max-width: 1280px;
}

.about-page .about-hero {
  min-height: calc(100vh - 138px);
  align-items: start;
  padding-top: 86px;
  padding-bottom: 40px;
}

.about-page .about-core {
  margin-top: 130px;
}

.about-page .about-core .section-pretitle,
.about-page .about-people-copy .section-pretitle {
  display: block;
  padding: 0;
  margin-bottom: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f97316;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.about-page .about-core .section-header h2 {
  margin-bottom: 18px;
}

.about-page .about-core .section-label {
  font-size: 18px;
  line-height: 32.5px;
  font-weight: 400;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0;
  text-transform: none;
}

.about-page .about-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-page .about-core-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  padding: 26px 22px;
  min-height: 270px;
}

.about-page .about-core-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(249, 115, 22, 0.1);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.about-page .about-core-card__icon img {
  width: 24px;
  height: 24px;
}

.about-page .about-core-card h3 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
}

.about-page .about-core-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  font-size: 0.94rem;
}

.about-page .about-people {
  margin-top: 124px;
}

.about-page .about-people-top {
  display: grid;
  grid-template-columns: auto auto;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.about-page .about-people-copy {
  max-width: 620px;
}

.about-page .about-people-copy .section-pretitle {
  margin-bottom: 16px;
}

.about-page .about-people-copy h2 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -1.5px;
  max-width: 560px;
}

.about-page .about-people-copy p {
  margin: 26px 0 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.04rem;
  line-height: 1.65;
}

.about-page .about-people-hero {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 590px;
  height: 331px;
}

.about-page .about-people-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .about-people-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 286px);
  gap: 18px;
  justify-content: space-between;
}

.about-page .about-person-card {
  width: 286px;
}

.about-page .about-person-card figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  width: 286px;
  height: 286px;
}

.about-page .about-person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.about-page .about-person-card em {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.75rem;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.about-page .about-person-card h3 {
  margin: 16px 0 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
}

.about-page .about-person-card span {
  color: #f97316;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.about-page .hero-copy {
  max-width: 1060px;
}

.about-page .hero h1 {
  max-width: 960px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 100.8px;
  letter-spacing: -2.4px;
  margin-left: auto;
  margin-right: auto;
}

.about-page .hero p {
  max-width: 760px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32.5px;
  letter-spacing: 0;
  text-align: center;
}

.about-page .about-kpis {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-page .about-kpis .stat-card {
  padding: 22px 16px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.about-page .about-kpis .stat-card strong {
  font-size: 2rem;
}

.about-page .about-kpis .stat-card span {
  font-size: 0.8rem;
  line-height: 1.45;
}

.about-page .about-story {
  margin-top: 78px;
}

.about-page .about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
}

.about-page .about-story-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(16px);
  padding: 34px;
}

.about-page .about-story-card--media {
  padding: 12px;
}

.about-page .about-story-card figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  min-height: 500px;
}

.about-page .about-story-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .about-story-card h3 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.about-page .about-story-card>p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}

.about-page .about-pillars {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.about-page .about-pillar {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 18px;
}

.about-page .about-pillar h4 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.about-page .about-pillar p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-page .about-values {
  margin-top: 110px;
}

.about-page .about-values .section-heading {
  max-width: 760px;
}

.about-page .about-values-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-page .about-values-grid .service-card {
  min-height: 0;
  padding: 28px;
  border-radius: 24px;
}

.about-page .about-values-grid .service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.about-page .about-values-grid .service-card p {
  margin: 0;
  font-size: 0.95rem;
}

.about-page .about-journey {
  margin-top: 118px;
  position: relative;
}

.about-page .about-journey-line {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 244px;
  height: 1px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.05), rgba(249, 115, 22, 0.58), rgba(249, 115, 22, 0.05));
}

.about-page .about-journey-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-page .about-journey-card {
  border-radius: 18px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  position: relative;
}

.about-page .about-journey-card::before {
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #f97316;
  position: absolute;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.12);
}

.about-page .about-journey-card span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f97316;
  letter-spacing: 0.2em;
}

.about-page .about-journey-card h3 {
  margin: 10px 0 8px;
  font-size: 1.25rem;
}

.about-page .about-journey-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.65;
}

.about-page .about-team {
  margin-top: 118px;
}

.about-page .about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-page .about-member-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.about-page .about-member-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.about-page .about-member-card>div {
  padding: 20px;
}

.about-page .about-member-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.about-page .about-member-card span {
  margin-top: 6px;
  display: block;
  color: #f97316;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-page .about-member-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.65;
}

.about-page .cta-panel {
  margin-top: 120px;
}

/* Subtle page-entry motion */
.about-page .about-story-card,
.about-page .about-journey-card,
.about-page .about-member-card,
.about-page .about-person-card,
.about-page .about-values-grid .service-card {
  opacity: 0;
  transform: translateY(24px);
  animation: aboutFadeIn 0.7s ease forwards;
}

.about-page .about-values-grid .service-card:nth-child(2),
.about-page .about-journey-card:nth-child(2),
.about-page .about-member-card:nth-child(2),
.about-page .about-person-card:nth-child(2) {
  animation-delay: 0.08s;
}

.about-page .about-values-grid .service-card:nth-child(3),
.about-page .about-journey-card:nth-child(3),
.about-page .about-member-card:nth-child(3),
.about-page .about-person-card:nth-child(3) {
  animation-delay: 0.16s;
}

.about-page .about-values-grid .service-card:nth-child(4),
.about-page .about-journey-card:nth-child(4),
.about-page .about-person-card:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes aboutFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .about-page .about-core-grid,
  .about-page .about-kpis,
  .about-page .about-journey-grid,
  .about-page .about-people-grid,
  .about-page .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .about-people-top,
  .about-page .about-story-grid,
  .about-page .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-people-hero {
    width: 100%;
    max-width: 590px;
    min-height: 320px;
    height: auto;
  }

  .about-page .about-person-card {
    width: 100%;
  }

  .about-page .about-person-card figure {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .about-page .about-story-card figure {
    min-height: 360px;
  }

  .about-page .about-journey-line {
    display: none;
  }

  .about-page .about-journey-card::before {
    top: 14px;
    left: auto;
    right: 14px;
    transform: none;
    width: 8px;
    height: 8px;
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  .about-page .about-hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .about-page .about-core {
    margin-top: 72px;
  }

  .about-page .about-core-grid,
  .about-page .about-kpis,
  .about-page .about-journey-grid,
  .about-page .about-people-grid,
  .about-page .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-people {
    margin-top: 84px;
  }

  .about-page .about-people-copy h2 {
    font-size: 44px;
    line-height: 44px;
    letter-spacing: -1.1px;
  }

  .about-page .hero h1 {
    font-size: 64px;
    line-height: 68px;
    letter-spacing: -1.6px;
  }

  .about-page .hero p {
    font-size: 18px;
    line-height: 30px;
  }

  .about-page .about-people-copy p {
    margin-top: 18px;
    font-size: 0.96rem;
  }

  .about-page .about-people-hero {
    min-height: 220px;
    border-radius: 24px;
  }

  .about-page .about-people-grid {
    margin-top: 28px;
    gap: 24px;
  }

  .about-page .about-person-card h3 {
    font-size: 20px;
    line-height: 28px;
    margin-top: 12px;
  }

  .about-page .about-story {
    margin-top: 56px;
  }

  .about-page .about-story-card {
    padding: 22px;
    border-radius: 24px;
  }

  .about-page .about-story-card figure {
    min-height: 240px;
  }

  .about-page .about-values,
  .about-page .about-journey,
  .about-page .about-team,
  .about-page .cta-panel {
    margin-top: 84px;
  }

  .about-page .about-member-card img {
    height: 230px;
  }
}