.site-shell {
  position: relative;
  min-height: 100vh;
}
.page-glow {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(10px);
}
.page-glow-one {
  width: 420px;
  height: 420px;
  left: -160px;
  top: 260px;
  background: radial-gradient(circle, rgba(255, 72, 160, .22), transparent 70%);
}
.page-glow-two {
  width: 500px;
  height: 500px;
  right: -160px;
  top: 90px;
  background: radial-gradient(circle, rgba(83, 175, 255, .20), transparent 70%);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  margin: 14px auto 0;
  width: min(1220px, calc(100% - 26px));
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 60px rgba(62, 76, 137, .09);
}
.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.28rem;
  font-weight: 900;
  color: #ff3b91;
  letter-spacing: -0.045em;
}
.brand img { width: 34px; height: 34px; object-fit: contain; filter: drop-shadow(0 8px 13px rgba(255, 59, 145, .25)); }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 24px; font-size: .82rem; font-weight: 800; color: #151a35; }
.nav-links a { opacity: .86; transition: color .2s ease, transform .2s ease, opacity .2s ease; }
.nav-links a:hover { color: var(--pink); opacity: 1; transform: translateY(-1px); }
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 20px;
  color: #fff;
  font-weight: 900;
  font-size: .88rem;
  background: linear-gradient(135deg, #ff4e9a, #ff2e86 52%, #9565ff);
  box-shadow: var(--shadow-pink);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.cta-button:hover { transform: translateY(-2px); filter: saturate(1.05); box-shadow: 0 22px 54px rgba(255, 59, 145, .34); }
.cta-button::after { content: "↗"; font-size: 1rem; }
.cta-button.secondary {
  color: #141936;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(36, 45, 92, .08);
  box-shadow: 0 13px 30px rgba(50, 61, 116, .12);
}
.cta-button.secondary::after { content: "✣"; color: #755bff; }
.hero {
  position: relative;
  padding: 36px 0 18px;
}
.hero-wrap {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 540px;
  align-items: center;
  gap: 16px;
  position: relative;
}
.hero-copy { position: relative; z-index: 2; padding: 30px 0 42px; }
.hero h1 {
  margin: 18px 0 18px;
  max-width: 590px;
  font-size: clamp(3rem, 7vw, 5.35rem);
  line-height: .95;
  letter-spacing: -0.078em;
  font-weight: 950;
}
.hero p { max-width: 540px; margin: 0; color: #323955; line-height: 1.55; font-size: 1.04rem; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 20px -20px 15px 6%;
  background: linear-gradient(130deg, rgba(255, 231, 245, .8), rgba(226, 237, 255, .8));
  border-radius: 48px;
  filter: blur(.4px);
  opacity: .95;
}
.hero-art {
  position: relative;
  z-index: 2;
  width: min(720px, 118%);
  max-width: none;
  transform: translateX(10px);
  filter: drop-shadow(0 28px 50px rgba(83, 90, 178, .20));
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}
.stat-pill { display: flex; align-items: center; gap: 9px; font-size: .78rem; color: #49506b; font-weight: 700; }
.stat-pill .dot { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #fff; box-shadow: 0 8px 20px rgba(81, 90, 149, .14); }
.stat-pill strong { display: block; color: #11162f; font-size: .9rem; }
.services-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 15px; }
.service-card {
  min-height: 168px;
  border-radius: 24px;
  padding: 16px 12px 14px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 5%, rgba(255,255,255,.95), transparent 48%);
  opacity: .8;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(90, 102, 170, .18); }
.service-icon { position: relative; z-index: 1; height: 78px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.service-icon img { width: 76px; height: 76px; object-fit: contain; filter: drop-shadow(0 14px 22px rgba(95, 90, 180, .18)); }
.service-card h3 { position: relative; z-index: 1; margin: 0 0 7px; font-size: .88rem; letter-spacing: -.035em; }
.service-card p { position: relative; z-index: 1; margin: 0 auto; max-width: 120px; color: #535b75; line-height: 1.35; font-size: .69rem; font-weight: 650; }
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 36px; overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.72); box-shadow: var(--shadow-soft); }
.panel-block { min-height: 260px; padding: 32px; position: relative; overflow: hidden; }
.panel-block h2 { margin: 0 0 8px; font-size: clamp(1.35rem, 2vw, 1.75rem); letter-spacing: -.045em; }
.panel-block p { margin: 0; color: var(--muted); line-height: 1.5; font-weight: 600; }
.chip-grid { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 10px 13px; border-radius: 999px; background: rgba(255,255,255,.84); border: 1px solid rgba(87, 104, 162, .1); box-shadow: 0 12px 26px rgba(81, 91, 148, .08); color: #586079; font-size: .78rem; font-weight: 800; }
.difference-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 20px; align-items: center; }
.point-list { margin-top: 20px; display: grid; gap: 13px; }
.point { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.point-dot { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: .72rem; font-weight: 900; background: linear-gradient(135deg, var(--pink), var(--purple)); box-shadow: 0 8px 18px rgba(140, 82, 255, .24); }
.point h3 { margin: 0 0 3px; font-size: .93rem; }
.point p { margin: 0; font-size: .78rem; }
.why-art { width: 100%; min-width: 270px; filter: drop-shadow(0 18px 40px rgba(102, 111, 187, .17)); }
.projects-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.projects-head h2 { margin: 0; font-size: clamp(1.3rem, 2.2vw, 1.85rem); letter-spacing: -.045em; }
.projects-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.project-card { border-radius: 19px; overflow: hidden; background: #fff; border: 1px solid rgba(69, 82, 144, .09); box-shadow: 0 14px 34px rgba(82, 94, 154, .12); transition: transform .25s ease, box-shadow .25s ease; }
.project-card:hover { transform: translateY(-7px); box-shadow: 0 24px 54px rgba(82, 94, 154, .18); }
.project-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.project-card h3 { margin: 0; padding: 11px 12px 13px; text-align: center; font-size: .78rem; letter-spacing: -.02em; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.process-card { min-height: 130px; border-radius: 24px; padding: 20px; position: relative; overflow: hidden; transition: transform .22s ease; }
.process-card:hover { transform: translateY(-6px); }
.process-card .number { color: var(--pink); font-size: .92rem; font-weight: 950; }
.process-card h3 { margin: 8px 0 6px; font-size: 1.02rem; letter-spacing: -.04em; }
.process-card p { margin: 0; color: var(--muted); line-height: 1.45; font-size: .78rem; font-weight: 650; }
.faq-cta-grid { display: grid; grid-template-columns: .75fr 1.85fr; gap: 22px; align-items: stretch; }
.faq-card { border-radius: 30px; padding: 28px; background: rgba(255,255,255,.74); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.faq-card h2 { margin: 0 0 16px; font-size: 1.55rem; letter-spacing: -.045em; }
.faq-item { border: 1px solid rgba(85, 102, 166, .1); border-radius: 14px; background: rgba(255,255,255,.84); margin-bottom: 9px; overflow: hidden; }
.faq-question { width: 100%; border: 0; background: transparent; display: flex; justify-content: space-between; align-items: center; text-align: left; padding: 14px 15px; color: #151a35; font-size: .82rem; font-weight: 850; cursor: pointer; }
.faq-answer { display: none; padding: 0 15px 15px; color: var(--muted); line-height: 1.45; font-size: .82rem; font-weight: 600; }
.faq-item.open .faq-answer { display: block; }
.final-cta { position: relative; min-height: 278px; border-radius: 32px; padding: 44px 48px; overflow: hidden; background: linear-gradient(135deg, #ff6aa7 0%, #b85cff 46%, #73bfff 100%); color: #fff; box-shadow: 0 28px 70px rgba(141, 90, 233, .26); }
.final-cta h2 { max-width: 520px; margin: 0 0 9px; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; letter-spacing: -.06em; }
.final-cta p { margin: 0 0 24px; font-weight: 700; opacity: .92; }
.final-cta .cta-button.secondary { color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); box-shadow: none; }
.final-art { position: absolute; right: -22px; bottom: -66px; width: min(470px, 48%); filter: drop-shadow(0 20px 40px rgba(37, 49, 126, .22)); }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1060px) {
  .nav-links { display: none; }
  .hero-wrap { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: auto; margin-top: -20px; }
  .hero-visual::before { inset: 10px 0; }
  .hero-art { transform: none; width: 100%; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-cta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-header { margin-top: 8px; border-radius: 18px; }
  .header-inner { min-height: 62px; padding: 0 14px; }
  .header-inner > .cta-button { display: none; }
  .brand { font-size: 1.1rem; }
  .hero { padding-top: 18px; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4.2rem); }
  .hero-actions .cta-button { width: 100%; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; border-radius: 28px; }
  .panel-block { padding: 24px; }
  .difference-grid { grid-template-columns: 1fr; }
  .projects-head { align-items: flex-start; flex-direction: column; }
  .projects-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 30px 24px 230px; }
  .final-art { width: 106%; right: -25%; bottom: -70px; }
}
